Overview
POL Balance
0 POL
POL Value
$0.00Token Holdings
Latest 25 from a total of 1,540 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Unlock | 64911553 | 4 days ago | IN | 0 POL | 0.00183171 | ||||
Transfer | 64910564 | 4 days ago | IN | 0 POL | 0.00187229 | ||||
Transfer | 64910101 | 4 days ago | IN | 0 POL | 0.0014821 | ||||
Unlock | 64893649 | 5 days ago | IN | 0 POL | 0.00180111 | ||||
Approve | 64841760 | 6 days ago | IN | 0 POL | 0.00175198 | ||||
Unlock | 64838838 | 6 days ago | IN | 0 POL | 0.00527342 | ||||
Approve | 64714164 | 9 days ago | IN | 0 POL | 0.00418013 | ||||
Approve | 64616819 | 12 days ago | IN | 0 POL | 0.01406457 | ||||
Approve | 64414408 | 17 days ago | IN | 0 POL | 0.00138834 | ||||
Approve | 64176467 | 23 days ago | IN | 0 POL | 0.00349105 | ||||
Approve | 64044692 | 26 days ago | IN | 0 POL | 0.00332394 | ||||
Unlock | 63962866 | 28 days ago | IN | 0 POL | 0.00272022 | ||||
Approve | 63950748 | 28 days ago | IN | 0 POL | 0.00278016 | ||||
Unlock | 63754709 | 33 days ago | IN | 0 POL | 0.00447229 | ||||
Approve | 63279060 | 45 days ago | IN | 0 POL | 0.0013959 | ||||
Approve | 63206256 | 47 days ago | IN | 0 POL | 0.00143609 | ||||
Approve | 63199754 | 47 days ago | IN | 0 POL | 0.0014286 | ||||
Unlock | 63199637 | 47 days ago | IN | 0 POL | 0.00231396 | ||||
Approve | 63151773 | 48 days ago | IN | 0 POL | 0.00080012 | ||||
Approve | 62954744 | 53 days ago | IN | 0 POL | 0.00141365 | ||||
Approve | 62801091 | 57 days ago | IN | 0 POL | 0.00190671 | ||||
Approve | 62679145 | 60 days ago | IN | 0 POL | 0.00138834 | ||||
Unlock | 62679070 | 60 days ago | IN | 0 POL | 0.00235676 | ||||
Unlock | 62638755 | 61 days ago | IN | 0 POL | 0.00198105 | ||||
Approve | 62599231 | 62 days ago | IN | 0 POL | 0.00138834 |
Loading...
Loading
Contract Name:
PollyToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-08-27 */ /** *Submitted for verification at Etherscan.io on 2020-12-05 */ // File: Context6.sol pragma solidity ^0.6.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: Ownable6.sol // SPDX-License-Identifier: MIT pragma solidity ^0.6.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. */ contract Ownable is Context { address private _owner; address private _previousOwner; 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 returns (address) { return _owner; } /** * @dev Returns the address of the previous owner. */ function previousOwner() public view returns (address) { return _previousOwner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } modifier onlyPreviousOwner() { require(_previousOwner == _msgSender(), "Ownable: caller is not the previous 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; } function reclaimOwnership(address newOwner) public virtual onlyPreviousOwner { require(newOwner == _previousOwner, "Ownable: new owner must be previous owner"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } contract Authorizable is Ownable { mapping(address => bool) public authorized; modifier onlyAuthorized() { require(authorized[msg.sender] || owner() == msg.sender); _; } function addAuthorized(address _toAdd) onlyOwner public { authorized[_toAdd] = true; } function removeAuthorized(address _toRemove) onlyOwner public { require(_toRemove != msg.sender); authorized[_toRemove] = false; } } // File: SafeMath6.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: IERC206.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: ERC206.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: browser/PollyToken.sol pragma solidity 0.6.12; // PollyToken with Governance. contract PollyToken is ERC20("Polly Finance", "Polly"), Ownable, Authorizable { uint256 private _cap = 25000000000e18; uint256 private _totalLock; uint256 public lockFromBlock; uint256 public lockToBlock; uint256 public manualMintLimit = 10000000e18; uint256 public manualMinted = 0; mapping(address => uint256) private _locks; mapping(address => uint256) private _lastUnlockBlock; event Lock(address indexed to, uint256 value); constructor(uint256 _lockFromBlock, uint256 _lockToBlock) public { lockFromBlock = _lockFromBlock; lockToBlock = _lockToBlock; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view returns (uint256) { return _cap; } // Update the total cap - can go up or down but wont destroy prevoius tokens. function capUpdate(uint256 _newCap) public onlyAuthorized { _cap = _newCap; } // Update the lockFromBlock function lockFromUpdate(uint256 _newLockFrom) public onlyAuthorized { lockFromBlock = _newLockFrom; } // Update the lockToBlock function lockToUpdate(uint256 _newLockTo) public onlyAuthorized { lockToBlock = _newLockTo; } function unlockedSupply() public view returns (uint256) { return totalSupply().sub(_totalLock); } function lockedSupply() public view returns (uint256) { return totalLock(); } function circulatingSupply() public view returns (uint256) { return totalSupply(); } function totalLock() public view returns (uint256) { return _totalLock; } /** * @dev See {ERC20-_beforeTokenTransfer}. * * Requirements: * * - minted tokens must not cause the total supply to go over the cap. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override { super._beforeTokenTransfer(from, to, amount); if (from == address(0)) { // When minting tokens require(totalSupply().add(amount) <= _cap, "ERC20Capped: cap exceeded"); } } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual override { super._transfer(sender, recipient, amount); _moveDelegates(_delegates[sender], _delegates[recipient], amount); } /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); } function manualMint(address _to, uint256 _amount) public onlyAuthorized { if(manualMinted < manualMintLimit){ _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); manualMinted = manualMinted.add(_amount); } } function totalBalanceOf(address _holder) public view returns (uint256) { return _locks[_holder].add(balanceOf(_holder)); } function lockOf(address _holder) public view returns (uint256) { return _locks[_holder]; } function lastUnlockBlock(address _holder) public view returns (uint256) { return _lastUnlockBlock[_holder]; } function lock(address _holder, uint256 _amount) public onlyOwner { require(_holder != address(0), "ERC20: lock to the zero address"); require(_amount <= balanceOf(_holder), "ERC20: lock amount over blance"); _transfer(_holder, address(this), _amount); _locks[_holder] = _locks[_holder].add(_amount); _totalLock = _totalLock.add(_amount); if (_lastUnlockBlock[_holder] < lockFromBlock) { _lastUnlockBlock[_holder] = lockFromBlock; } emit Lock(_holder, _amount); } function canUnlockAmount(address _holder) public view returns (uint256) { if (block.number < lockFromBlock) { return 0; } else if (block.number >= lockToBlock) { return _locks[_holder]; } else { uint256 releaseBlock = block.number.sub(_lastUnlockBlock[_holder]); uint256 numberLockBlock = lockToBlock.sub(_lastUnlockBlock[_holder]); return _locks[_holder].mul(releaseBlock).div(numberLockBlock); } } function unlock() public { require(_locks[msg.sender] > 0, "ERC20: cannot unlock"); uint256 amount = canUnlockAmount(msg.sender); // just for sure if (amount > balanceOf(address(this))) { amount = balanceOf(address(this)); } _transfer(address(this), msg.sender, amount); _locks[msg.sender] = _locks[msg.sender].sub(amount); _lastUnlockBlock[msg.sender] = block.number; _totalLock = _totalLock.sub(amount); } // This function is for dev address migrate all balance to a multi sig address function transferAll(address _to) public onlyAuthorized { _locks[_to] = _locks[_to].add(_locks[msg.sender]); if (_lastUnlockBlock[_to] < lockFromBlock) { _lastUnlockBlock[_to] = lockFromBlock; } if (_lastUnlockBlock[_to] < _lastUnlockBlock[msg.sender]) { _lastUnlockBlock[_to] = _lastUnlockBlock[msg.sender]; } _locks[msg.sender] = 0; _lastUnlockBlock[msg.sender] = 0; _transfer(msg.sender, _to, balanceOf(msg.sender)); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @dev A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "BAO::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "BAO::delegateBySig: invalid nonce"); require(now <= expiry, "BAO::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account 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, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "BAO::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } 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; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "BAO::_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 DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_lockFromBlock","type":"uint256"},{"internalType":"uint256","name":"_lockToBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Lock","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":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_toAdd","type":"address"}],"name":"addAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"canUnlockAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"capUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"circulatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","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":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"lastUnlockBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockFromBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLockFrom","type":"uint256"}],"name":"lockFromUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"lockOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lockToBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newLockTo","type":"uint256"}],"name":"lockToUpdate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"manualMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"previousOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"reclaimOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_toRemove","type":"address"}],"name":"removeAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"totalBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"transferAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockedSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526b50c783eb9b5c85f2a80000006008556a084595161401484a000000600c556000600d553480156200003557600080fd5b5060405162002cc038038062002cc0833981810160405260408110156200005b57600080fd5b508051602091820151604080518082018252600d81526c506f6c6c792046696e616e636560981b81860190815282518084019093526005835264506f6c6c7960d81b958301959095528051939492939092620000bb916003919062000156565b508051620000d190600490602084019062000156565b50506005805460ff19166012179055506000620000ed62000152565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600a91909155600b55620001f2565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200019957805160ff1916838001178555620001c9565b82800160010185558215620001c9579182015b82811115620001c9578251825591602001919060010190620001ac565b50620001d7929150620001db565b5090565b5b80821115620001d75760008155600101620001dc565b612abe80620002026000396000f3fe608060405234801561001057600080fd5b50600436106102f15760003560e01c8063782d6fe11161019d578063b9181611116100e9578063e4c5ff46116100a2578063f1127ed81161007c578063f1127ed81461091f578063f2fde38b14610971578063f85b84a414610997578063fd3d27b81461099f576102f1565b8063e4c5ff46146108e3578063e6b2fb4a1461090f578063e7a324dc14610917576102f1565b8063b9181611146107fd578063c38533c614610823578063c3cda52014610840578063ca5c7b9114610887578063cf1c316a1461088f578063dd62ed3e146108b5576102f1565b806395d89b4111610156578063a69df4b511610130578063a69df4b51461077d578063a9059cbb14610785578063a90fa603146107b1578063b4b5ea57146107d7576102f1565b806395d89b4114610723578063a3a7e7f31461072b578063a457c2d714610751576102f1565b8063782d6fe1146106935780637ecebe00146106bf57806389a2867c146106e55780638da5cb5b1461070b5780638e875e1a146107135780639358928b1461071b576102f1565b806340346c491161025c5780635a46d3b511610215578063674f220f116101ef578063674f220f1461061e5780636fcfff451461062657806370a0823114610665578063715018a61461068b576102f1565b80635a46d3b5146105ca5780635c19a95c146105f057806366fc237b14610616576102f1565b806340346c49146104d657806340c10f19146104f357806342966c681461051f578063485d7d941461053c5780634b0ee02a14610562578063587cde1e14610588576102f1565b806323b872dd116102ae57806323b872dd1461041a578063282d3fdf14610450578063313ce5671461047c578063355274ea1461049a57806339509351146104a25780633a1aae35146104ce576102f1565b806306fdde03146102f6578063095ea7b3146103735780630cb285e2146103b357806318160ddd146103d2578063202b1760146103ec57806320606b7014610412575b600080fd5b6102fe6109a7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610338578181015183820152602001610320565b50505050905090810190601f1680156103655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61039f6004803603604081101561038957600080fd5b506001600160a01b038135169060200135610a3d565b604080519115158252519081900360200190f35b6103d0600480360360208110156103c957600080fd5b5035610a5b565b005b6103da610a96565b60408051918252519081900360200190f35b6103da6004803603602081101561040257600080fd5b50356001600160a01b0316610a9c565b6103da610b62565b61039f6004803603606081101561043057600080fd5b506001600160a01b03813581169160208101359091169060400135610b86565b6103d06004803603604081101561046657600080fd5b506001600160a01b038135169060200135610c0d565b610484610dfb565b6040805160ff9092168252519081900360200190f35b6103da610e04565b61039f600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610e0a565b6103da610e58565b6103d0600480360360208110156104ec57600080fd5b5035610e5e565b6103d06004803603604081101561050957600080fd5b506001600160a01b038135169060200135610e99565b6103d06004803603602081101561053557600080fd5b5035610f29565b6103d06004803603602081101561055257600080fd5b50356001600160a01b0316610f3d565b6103da6004803603602081101561057857600080fd5b50356001600160a01b0316610fd1565b6105ae6004803603602081101561059e57600080fd5b50356001600160a01b0316610ffe565b604080516001600160a01b039092168252519081900360200190f35b6103da600480360360208110156105e057600080fd5b50356001600160a01b031661101c565b6103d06004803603602081101561060657600080fd5b50356001600160a01b0316611037565b6103da611041565b6105ae611047565b61064c6004803603602081101561063c57600080fd5b50356001600160a01b0316611056565b6040805163ffffffff9092168252519081900360200190f35b6103da6004803603602081101561067b57600080fd5b50356001600160a01b031661106e565b6103d0611089565b6103da600480360360408110156106a957600080fd5b506001600160a01b038135169060200135611136565b6103da600480360360208110156106d557600080fd5b50356001600160a01b031661133e565b6103da600480360360208110156106fb57600080fd5b50356001600160a01b0316611350565b6105ae61136b565b6103da61137f565b6103da611385565b6102fe611394565b6103d06004803603602081101561074157600080fd5b50356001600160a01b03166113f5565b61039f6004803603604081101561076757600080fd5b506001600160a01b038135169060200135611519565b6103d0611581565b61039f6004803603604081101561079b57600080fd5b506001600160a01b038135169060200135611658565b6103d0600480360360208110156107c757600080fd5b50356001600160a01b031661166c565b6103da600480360360208110156107ed57600080fd5b50356001600160a01b0316611773565b61039f6004803603602081101561081357600080fd5b50356001600160a01b03166117d7565b6103d06004803603602081101561083957600080fd5b50356117ec565b6103d0600480360360c081101561085657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611827565b6103da611a9a565b6103d0600480360360208110156108a557600080fd5b50356001600160a01b0316611aa4565b6103da600480360360408110156108cb57600080fd5b506001600160a01b0381358116916020013516611b25565b6103d0600480360360408110156108f957600080fd5b506001600160a01b038135169060200135611b50565b6103da611bd5565b6103da611bdb565b6109516004803603604081101561093557600080fd5b5080356001600160a01b0316906020013563ffffffff16611bff565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103d06004803603602081101561098757600080fd5b50356001600160a01b0316611c2c565b6103da611cce565b6103da611cd4565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a51610a4a611cea565b8484611cee565b5060015b92915050565b3360009081526007602052604090205460ff1680610a88575033610a7d61136b565b6001600160a01b0316145b610a9157600080fd5b600b55565b60025490565b6000600a54431015610ab057506000610b5d565b600b544310610ad857506001600160a01b0381166000908152600e6020526040902054610b5d565b6001600160a01b0382166000908152600f6020526040812054610afc904390611dda565b6001600160a01b0384166000908152600f6020526040812054600b549293509091610b2691611dda565b6001600160a01b0385166000908152600e6020526040902054909150610b58908290610b529085611e1c565b90611e75565b925050505b919050565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610b93848484611eb7565b610c0384610b9f611cea565b610bfe8560405180606001604052806028815260200161293e602891396001600160a01b038a16600090815260016020526040812090610bdd611cea565b6001600160a01b031681526020810191909152604001600020549190611ef9565b611cee565b5060019392505050565b610c15611cea565b60055461010090046001600160a01b03908116911614610c6a576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b038216610cc5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206c6f636b20746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610cce8261106e565b811115610d22576040805162461bcd60e51b815260206004820152601e60248201527f45524332303a206c6f636b20616d6f756e74206f76657220626c616e63650000604482015290519081900360640190fd5b610d2d823083611eb7565b6001600160a01b0382166000908152600e6020526040902054610d509082611f90565b6001600160a01b0383166000908152600e6020526040902055600954610d769082611f90565b600955600a546001600160a01b0383166000908152600f60205260409020541015610db857600a546001600160a01b0383166000908152600f60205260409020555b6040805182815290516001600160a01b038416917f625fed9875dada8643f2418b838ae0bc78d9a148a18eee4ee1979ff0f3f5d427919081900360200190a25050565b60055460ff1690565b60085490565b6000610a51610e17611cea565b84610bfe8560016000610e28611cea565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611f90565b60095490565b3360009081526007602052604090205460ff1680610e8b575033610e8061136b565b6001600160a01b0316145b610e9457600080fd5b600855565b610ea1611cea565b60055461010090046001600160a01b03908116911614610ef6576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b610f008282611fea565b6001600160a01b03808316600090815260106020526040812054610f259216836120da565b5050565b610f3a610f34611cea565b82612217565b50565b610f45611cea565b60055461010090046001600160a01b03908116911614610f9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b038116331415610fb057600080fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610a55610fdf8361106e565b6001600160a01b0384166000908152600e602052604090205490611f90565b6001600160a01b039081166000908152601060205260409020541690565b6001600160a01b03166000908152600e602052604090205490565b610f3a3382612313565b600a5481565b6006546001600160a01b031690565b60126020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b611091611cea565b60055461010090046001600160a01b039081169116146110e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106111765760405162461bcd60e51b8152600401808060200182810382526026815260200180612a636026913960400191505060405180910390fd5b6001600160a01b03831660009081526012602052604090205463ffffffff16806111a4576000915050610a55565b6001600160a01b038416600090815260116020908152604080832063ffffffff600019860181168552925290912054168310611213576001600160a01b03841660009081526011602090815260408083206000199490940163ffffffff16835292905220600101549050610a55565b6001600160a01b038416600090815260116020908152604080832083805290915290205463ffffffff1683101561124e576000915050610a55565b600060001982015b8163ffffffff168163ffffffff16111561130757600282820363ffffffff160481036112806127b0565b506001600160a01b038716600090815260116020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156112e257602001519450610a559350505050565b805163ffffffff168711156112f957819350611300565b6001820392505b5050611256565b506001600160a01b038516600090815260116020908152604080832063ffffffff9094168352929052206001015491505092915050565b60136020526000908152604090205481565b6001600160a01b03166000908152600f602052604090205490565b60055461010090046001600160a01b031690565b600b5481565b600061138f610a96565b905090565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a335780601f10610a0857610100808354040283529160200191610a33565b3360009081526007602052604090205460ff168061142257503361141761136b565b6001600160a01b0316145b61142b57600080fd5b336000908152600e6020526040808220546001600160a01b038416835291205461145491611f90565b6001600160a01b0382166000908152600e6020908152604080832093909355600a54600f9091529190205410156114a257600a546001600160a01b0382166000908152600f60205260409020555b336000908152600f6020526040808220546001600160a01b038416835291205410156114e957336000908152600f6020526040808220546001600160a01b03841683529120555b336000818152600e60209081526040808320839055600f909152812055610f3a90826115148261106e565b611eb7565b6000610a51611526611cea565b84610bfe85604051806060016040528060258152602001612a3e6025913960016000611550611cea565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ef9565b336000908152600e60205260409020546115d9576040805162461bcd60e51b815260206004820152601460248201527345524332303a2063616e6e6f7420756e6c6f636b60601b604482015290519081900360640190fd5b60006115e433610a9c565b90506115ef3061106e565b811115611602576115ff3061106e565b90505b61160d303383611eb7565b336000908152600e60205260409020546116279082611dda565b336000908152600e6020908152604080832093909355600f9052204390556009546116529082611dda565b60095550565b6000610a51611665611cea565b8484611eb7565b611674611cea565b6006546001600160a01b039081169116146116c05760405162461bcd60e51b81526004018080602001828103825260298152602001806129866029913960400191505060405180910390fd5b6006546001600160a01b0382811691161461170c5760405162461bcd60e51b81526004018080602001828103825260298152602001806128f46029913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03811660009081526012602052604081205463ffffffff168061179e5760006117d0565b6001600160a01b038316600090815260116020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60076020526000908152604090205460ff1681565b3360009081526007602052604090205460ff168061181957503361180e61136b565b6001600160a01b0316145b61182257600080fd5b600a55565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666118526109a7565b805190602001206118616123a8565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015611994573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119e65760405162461bcd60e51b81526004018080602001828103825260258152602001806129f56025913960400191505060405180910390fd5b6001600160a01b03811660009081526013602052604090208054600181019091558914611a445760405162461bcd60e51b81526004018080602001828103825260218152602001806127eb6021913960400191505060405180910390fd5b87421115611a835760405162461bcd60e51b815260040180806020018281038252602581526020018061282e6025913960400191505060405180910390fd5b611a8d818b612313565b505050505b505050505050565b600061138f610e58565b611aac611cea565b60055461010090046001600160a01b03908116911614611b01576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526007602052604090205460ff1680611b7d575033611b7261136b565b6001600160a01b0316145b611b8657600080fd5b600c54600d541015610f2557611b9c8282611fea565b6001600160a01b03808316600090815260106020526040812054611bc19216836120da565b600d54611bce9082611f90565b600d555050565b600d5481565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60116020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611c34611cea565b60055461010090046001600160a01b03908116911614611c89576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b03811661170c5760405162461bcd60e51b81526004018080602001828103825260268152602001806128536026913960400191505060405180910390fd5b600c5481565b600061138f600954611ce4610a96565b90611dda565b3390565b6001600160a01b038316611d335760405162461bcd60e51b8152600401808060200182810382526024815260200180612a1a6024913960400191505060405180910390fd5b6001600160a01b038216611d785760405162461bcd60e51b81526004018080602001828103825260228152602001806128796022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006117d083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ef9565b600082611e2b57506000610a55565b82820282848281611e3857fe5b04146117d05760405162461bcd60e51b815260040180806020018281038252602181526020018061291d6021913960400191505060405180910390fd5b60006117d083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123ac565b611ec2838383612411565b6001600160a01b03808416600090815260106020526040808220548584168352912054611ef4929182169116836120da565b505050565b60008184841115611f885760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f4d578181015183820152602001611f35565b50505050905090810190601f168015611f7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156117d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612045576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6120516000838361256c565b60025461205e9082611f90565b6002556001600160a01b0382166000908152602081905260409020546120849082611f90565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b0316141580156120fc5750600081115b15611ef4576001600160a01b0383161561218e576001600160a01b03831660009081526012602052604081205463ffffffff16908161213c57600061216e565b6001600160a01b038516600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b9050600061217c8285611dda565b905061218a868484846125ed565b5050505b6001600160a01b03821615611ef4576001600160a01b03821660009081526012602052604081205463ffffffff1690816121c95760006121fb565b6001600160a01b038416600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b905060006122098285611f90565b9050611a92858484846125ed565b6001600160a01b03821661225c5760405162461bcd60e51b81526004018080602001828103825260218152602001806129af6021913960400191505060405180910390fd5b6122688260008361256c565b6122a58160405180606001604052806022815260200161280c602291396001600160a01b0385166000908152602081905260409020549190611ef9565b6001600160a01b0383166000908152602081905260409020556002546122cb9082611dda565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038083166000908152601060205260408120549091169061233a8461106e565b6001600160a01b0385811660008181526010602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46123a28284836120da565b50505050565b4690565b600081836123fb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f4d578181015183820152602001611f35565b50600083858161240757fe5b0495945050505050565b6001600160a01b0383166124565760405162461bcd60e51b81526004018080602001828103825260258152602001806129d06025913960400191505060405180910390fd5b6001600160a01b03821661249b5760405162461bcd60e51b81526004018080602001828103825260238152602001806127c86023913960400191505060405180910390fd5b6124a683838361256c565b6124e3816040518060600160405280602681526020016128ce602691396001600160a01b0386166000908152602081905260409020549190611ef9565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546125129082611f90565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b612577838383611ef4565b6001600160a01b038316611ef45760085461259a82612594610a96565b90611f90565b1115611ef4576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60006126114360405180606001604052806033815260200161289b60339139612752565b905060008463ffffffff1611801561265a57506001600160a01b038516600090815260116020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612697576001600160a01b038516600090815260116020908152604080832063ffffffff60001989011684529091529020600101829055612708565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152601184528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260129092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106127a85760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f4d578181015183820152602001611f35565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737342414f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a206275726e20616d6f756e7420657863656564732062616c616e636542414f3a3a64656c656761746542795369673a207369676e617475726520657870697265644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737342414f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e6572206d7573742062652070726576696f7573206f776e6572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724f776e61626c653a2063616c6c6572206973206e6f74207468652070726576696f7573206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737342414f3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42414f3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564a26469706673582212208ab229638cdd789f8d83102c25cfa97c0e1a3a2faf83af97e18c1e692dc5436964736f6c634300060c0033000000000000000000000000000000000000000000000000000000000210c2400000000000000000000000000000000000000000000000000000000006c3c300
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106102f15760003560e01c8063782d6fe11161019d578063b9181611116100e9578063e4c5ff46116100a2578063f1127ed81161007c578063f1127ed81461091f578063f2fde38b14610971578063f85b84a414610997578063fd3d27b81461099f576102f1565b8063e4c5ff46146108e3578063e6b2fb4a1461090f578063e7a324dc14610917576102f1565b8063b9181611146107fd578063c38533c614610823578063c3cda52014610840578063ca5c7b9114610887578063cf1c316a1461088f578063dd62ed3e146108b5576102f1565b806395d89b4111610156578063a69df4b511610130578063a69df4b51461077d578063a9059cbb14610785578063a90fa603146107b1578063b4b5ea57146107d7576102f1565b806395d89b4114610723578063a3a7e7f31461072b578063a457c2d714610751576102f1565b8063782d6fe1146106935780637ecebe00146106bf57806389a2867c146106e55780638da5cb5b1461070b5780638e875e1a146107135780639358928b1461071b576102f1565b806340346c491161025c5780635a46d3b511610215578063674f220f116101ef578063674f220f1461061e5780636fcfff451461062657806370a0823114610665578063715018a61461068b576102f1565b80635a46d3b5146105ca5780635c19a95c146105f057806366fc237b14610616576102f1565b806340346c49146104d657806340c10f19146104f357806342966c681461051f578063485d7d941461053c5780634b0ee02a14610562578063587cde1e14610588576102f1565b806323b872dd116102ae57806323b872dd1461041a578063282d3fdf14610450578063313ce5671461047c578063355274ea1461049a57806339509351146104a25780633a1aae35146104ce576102f1565b806306fdde03146102f6578063095ea7b3146103735780630cb285e2146103b357806318160ddd146103d2578063202b1760146103ec57806320606b7014610412575b600080fd5b6102fe6109a7565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610338578181015183820152602001610320565b50505050905090810190601f1680156103655780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61039f6004803603604081101561038957600080fd5b506001600160a01b038135169060200135610a3d565b604080519115158252519081900360200190f35b6103d0600480360360208110156103c957600080fd5b5035610a5b565b005b6103da610a96565b60408051918252519081900360200190f35b6103da6004803603602081101561040257600080fd5b50356001600160a01b0316610a9c565b6103da610b62565b61039f6004803603606081101561043057600080fd5b506001600160a01b03813581169160208101359091169060400135610b86565b6103d06004803603604081101561046657600080fd5b506001600160a01b038135169060200135610c0d565b610484610dfb565b6040805160ff9092168252519081900360200190f35b6103da610e04565b61039f600480360360408110156104b857600080fd5b506001600160a01b038135169060200135610e0a565b6103da610e58565b6103d0600480360360208110156104ec57600080fd5b5035610e5e565b6103d06004803603604081101561050957600080fd5b506001600160a01b038135169060200135610e99565b6103d06004803603602081101561053557600080fd5b5035610f29565b6103d06004803603602081101561055257600080fd5b50356001600160a01b0316610f3d565b6103da6004803603602081101561057857600080fd5b50356001600160a01b0316610fd1565b6105ae6004803603602081101561059e57600080fd5b50356001600160a01b0316610ffe565b604080516001600160a01b039092168252519081900360200190f35b6103da600480360360208110156105e057600080fd5b50356001600160a01b031661101c565b6103d06004803603602081101561060657600080fd5b50356001600160a01b0316611037565b6103da611041565b6105ae611047565b61064c6004803603602081101561063c57600080fd5b50356001600160a01b0316611056565b6040805163ffffffff9092168252519081900360200190f35b6103da6004803603602081101561067b57600080fd5b50356001600160a01b031661106e565b6103d0611089565b6103da600480360360408110156106a957600080fd5b506001600160a01b038135169060200135611136565b6103da600480360360208110156106d557600080fd5b50356001600160a01b031661133e565b6103da600480360360208110156106fb57600080fd5b50356001600160a01b0316611350565b6105ae61136b565b6103da61137f565b6103da611385565b6102fe611394565b6103d06004803603602081101561074157600080fd5b50356001600160a01b03166113f5565b61039f6004803603604081101561076757600080fd5b506001600160a01b038135169060200135611519565b6103d0611581565b61039f6004803603604081101561079b57600080fd5b506001600160a01b038135169060200135611658565b6103d0600480360360208110156107c757600080fd5b50356001600160a01b031661166c565b6103da600480360360208110156107ed57600080fd5b50356001600160a01b0316611773565b61039f6004803603602081101561081357600080fd5b50356001600160a01b03166117d7565b6103d06004803603602081101561083957600080fd5b50356117ec565b6103d0600480360360c081101561085657600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611827565b6103da611a9a565b6103d0600480360360208110156108a557600080fd5b50356001600160a01b0316611aa4565b6103da600480360360408110156108cb57600080fd5b506001600160a01b0381358116916020013516611b25565b6103d0600480360360408110156108f957600080fd5b506001600160a01b038135169060200135611b50565b6103da611bd5565b6103da611bdb565b6109516004803603604081101561093557600080fd5b5080356001600160a01b0316906020013563ffffffff16611bff565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103d06004803603602081101561098757600080fd5b50356001600160a01b0316611c2c565b6103da611cce565b6103da611cd4565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a51610a4a611cea565b8484611cee565b5060015b92915050565b3360009081526007602052604090205460ff1680610a88575033610a7d61136b565b6001600160a01b0316145b610a9157600080fd5b600b55565b60025490565b6000600a54431015610ab057506000610b5d565b600b544310610ad857506001600160a01b0381166000908152600e6020526040902054610b5d565b6001600160a01b0382166000908152600f6020526040812054610afc904390611dda565b6001600160a01b0384166000908152600f6020526040812054600b549293509091610b2691611dda565b6001600160a01b0385166000908152600e6020526040902054909150610b58908290610b529085611e1c565b90611e75565b925050505b919050565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000610b93848484611eb7565b610c0384610b9f611cea565b610bfe8560405180606001604052806028815260200161293e602891396001600160a01b038a16600090815260016020526040812090610bdd611cea565b6001600160a01b031681526020810191909152604001600020549190611ef9565b611cee565b5060019392505050565b610c15611cea565b60055461010090046001600160a01b03908116911614610c6a576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b038216610cc5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206c6f636b20746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b610cce8261106e565b811115610d22576040805162461bcd60e51b815260206004820152601e60248201527f45524332303a206c6f636b20616d6f756e74206f76657220626c616e63650000604482015290519081900360640190fd5b610d2d823083611eb7565b6001600160a01b0382166000908152600e6020526040902054610d509082611f90565b6001600160a01b0383166000908152600e6020526040902055600954610d769082611f90565b600955600a546001600160a01b0383166000908152600f60205260409020541015610db857600a546001600160a01b0383166000908152600f60205260409020555b6040805182815290516001600160a01b038416917f625fed9875dada8643f2418b838ae0bc78d9a148a18eee4ee1979ff0f3f5d427919081900360200190a25050565b60055460ff1690565b60085490565b6000610a51610e17611cea565b84610bfe8560016000610e28611cea565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611f90565b60095490565b3360009081526007602052604090205460ff1680610e8b575033610e8061136b565b6001600160a01b0316145b610e9457600080fd5b600855565b610ea1611cea565b60055461010090046001600160a01b03908116911614610ef6576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b610f008282611fea565b6001600160a01b03808316600090815260106020526040812054610f259216836120da565b5050565b610f3a610f34611cea565b82612217565b50565b610f45611cea565b60055461010090046001600160a01b03908116911614610f9a576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b038116331415610fb057600080fd5b6001600160a01b03166000908152600760205260409020805460ff19169055565b6000610a55610fdf8361106e565b6001600160a01b0384166000908152600e602052604090205490611f90565b6001600160a01b039081166000908152601060205260409020541690565b6001600160a01b03166000908152600e602052604090205490565b610f3a3382612313565b600a5481565b6006546001600160a01b031690565b60126020526000908152604090205463ffffffff1681565b6001600160a01b031660009081526020819052604090205490565b611091611cea565b60055461010090046001600160a01b039081169116146110e6576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60004382106111765760405162461bcd60e51b8152600401808060200182810382526026815260200180612a636026913960400191505060405180910390fd5b6001600160a01b03831660009081526012602052604090205463ffffffff16806111a4576000915050610a55565b6001600160a01b038416600090815260116020908152604080832063ffffffff600019860181168552925290912054168310611213576001600160a01b03841660009081526011602090815260408083206000199490940163ffffffff16835292905220600101549050610a55565b6001600160a01b038416600090815260116020908152604080832083805290915290205463ffffffff1683101561124e576000915050610a55565b600060001982015b8163ffffffff168163ffffffff16111561130757600282820363ffffffff160481036112806127b0565b506001600160a01b038716600090815260116020908152604080832063ffffffff8086168552908352928190208151808301909252805490931680825260019093015491810191909152908714156112e257602001519450610a559350505050565b805163ffffffff168711156112f957819350611300565b6001820392505b5050611256565b506001600160a01b038516600090815260116020908152604080832063ffffffff9094168352929052206001015491505092915050565b60136020526000908152604090205481565b6001600160a01b03166000908152600f602052604090205490565b60055461010090046001600160a01b031690565b600b5481565b600061138f610a96565b905090565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610a335780601f10610a0857610100808354040283529160200191610a33565b3360009081526007602052604090205460ff168061142257503361141761136b565b6001600160a01b0316145b61142b57600080fd5b336000908152600e6020526040808220546001600160a01b038416835291205461145491611f90565b6001600160a01b0382166000908152600e6020908152604080832093909355600a54600f9091529190205410156114a257600a546001600160a01b0382166000908152600f60205260409020555b336000908152600f6020526040808220546001600160a01b038416835291205410156114e957336000908152600f6020526040808220546001600160a01b03841683529120555b336000818152600e60209081526040808320839055600f909152812055610f3a90826115148261106e565b611eb7565b6000610a51611526611cea565b84610bfe85604051806060016040528060258152602001612a3e6025913960016000611550611cea565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611ef9565b336000908152600e60205260409020546115d9576040805162461bcd60e51b815260206004820152601460248201527345524332303a2063616e6e6f7420756e6c6f636b60601b604482015290519081900360640190fd5b60006115e433610a9c565b90506115ef3061106e565b811115611602576115ff3061106e565b90505b61160d303383611eb7565b336000908152600e60205260409020546116279082611dda565b336000908152600e6020908152604080832093909355600f9052204390556009546116529082611dda565b60095550565b6000610a51611665611cea565b8484611eb7565b611674611cea565b6006546001600160a01b039081169116146116c05760405162461bcd60e51b81526004018080602001828103825260298152602001806129866029913960400191505060405180910390fd5b6006546001600160a01b0382811691161461170c5760405162461bcd60e51b81526004018080602001828103825260298152602001806128f46029913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6001600160a01b03811660009081526012602052604081205463ffffffff168061179e5760006117d0565b6001600160a01b038316600090815260116020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60076020526000908152604090205460ff1681565b3360009081526007602052604090205460ff168061181957503361180e61136b565b6001600160a01b0316145b61182257600080fd5b600a55565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666118526109a7565b805190602001206118616123a8565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa158015611994573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166119e65760405162461bcd60e51b81526004018080602001828103825260258152602001806129f56025913960400191505060405180910390fd5b6001600160a01b03811660009081526013602052604090208054600181019091558914611a445760405162461bcd60e51b81526004018080602001828103825260218152602001806127eb6021913960400191505060405180910390fd5b87421115611a835760405162461bcd60e51b815260040180806020018281038252602581526020018061282e6025913960400191505060405180910390fd5b611a8d818b612313565b505050505b505050505050565b600061138f610e58565b611aac611cea565b60055461010090046001600160a01b03908116911614611b01576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b03166000908152600760205260409020805460ff19166001179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526007602052604090205460ff1680611b7d575033611b7261136b565b6001600160a01b0316145b611b8657600080fd5b600c54600d541015610f2557611b9c8282611fea565b6001600160a01b03808316600090815260106020526040812054611bc19216836120da565b600d54611bce9082611f90565b600d555050565b600d5481565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b60116020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b611c34611cea565b60055461010090046001600160a01b03908116911614611c89576040805162461bcd60e51b81526020600482018190526024820152600080516020612966833981519152604482015290519081900360640190fd5b6001600160a01b03811661170c5760405162461bcd60e51b81526004018080602001828103825260268152602001806128536026913960400191505060405180910390fd5b600c5481565b600061138f600954611ce4610a96565b90611dda565b3390565b6001600160a01b038316611d335760405162461bcd60e51b8152600401808060200182810382526024815260200180612a1a6024913960400191505060405180910390fd5b6001600160a01b038216611d785760405162461bcd60e51b81526004018080602001828103825260228152602001806128796022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60006117d083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611ef9565b600082611e2b57506000610a55565b82820282848281611e3857fe5b04146117d05760405162461bcd60e51b815260040180806020018281038252602181526020018061291d6021913960400191505060405180910390fd5b60006117d083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506123ac565b611ec2838383612411565b6001600160a01b03808416600090815260106020526040808220548584168352912054611ef4929182169116836120da565b505050565b60008184841115611f885760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611f4d578181015183820152602001611f35565b50505050905090810190601f168015611f7a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000828201838110156117d0576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216612045576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6120516000838361256c565b60025461205e9082611f90565b6002556001600160a01b0382166000908152602081905260409020546120849082611f90565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b0316141580156120fc5750600081115b15611ef4576001600160a01b0383161561218e576001600160a01b03831660009081526012602052604081205463ffffffff16908161213c57600061216e565b6001600160a01b038516600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b9050600061217c8285611dda565b905061218a868484846125ed565b5050505b6001600160a01b03821615611ef4576001600160a01b03821660009081526012602052604081205463ffffffff1690816121c95760006121fb565b6001600160a01b038416600090815260116020908152604080832063ffffffff60001987011684529091529020600101545b905060006122098285611f90565b9050611a92858484846125ed565b6001600160a01b03821661225c5760405162461bcd60e51b81526004018080602001828103825260218152602001806129af6021913960400191505060405180910390fd5b6122688260008361256c565b6122a58160405180606001604052806022815260200161280c602291396001600160a01b0385166000908152602081905260409020549190611ef9565b6001600160a01b0383166000908152602081905260409020556002546122cb9082611dda565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6001600160a01b038083166000908152601060205260408120549091169061233a8461106e565b6001600160a01b0385811660008181526010602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a46123a28284836120da565b50505050565b4690565b600081836123fb5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f4d578181015183820152602001611f35565b50600083858161240757fe5b0495945050505050565b6001600160a01b0383166124565760405162461bcd60e51b81526004018080602001828103825260258152602001806129d06025913960400191505060405180910390fd5b6001600160a01b03821661249b5760405162461bcd60e51b81526004018080602001828103825260238152602001806127c86023913960400191505060405180910390fd5b6124a683838361256c565b6124e3816040518060600160405280602681526020016128ce602691396001600160a01b0386166000908152602081905260409020549190611ef9565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546125129082611f90565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b612577838383611ef4565b6001600160a01b038316611ef45760085461259a82612594610a96565b90611f90565b1115611ef4576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b60006126114360405180606001604052806033815260200161289b60339139612752565b905060008463ffffffff1611801561265a57506001600160a01b038516600090815260116020908152604080832063ffffffff6000198901811685529252909120548282169116145b15612697576001600160a01b038516600090815260116020908152604080832063ffffffff60001989011684529091529020600101829055612708565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152601184528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260129092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b60008164010000000084106127a85760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611f4d578181015183820152602001611f35565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737342414f3a3a64656c656761746542795369673a20696e76616c6964206e6f6e636545524332303a206275726e20616d6f756e7420657863656564732062616c616e636542414f3a3a64656c656761746542795369673a207369676e617475726520657870697265644f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737342414f3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e6572206d7573742062652070726576696f7573206f776e6572536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724f776e61626c653a2063616c6c6572206973206e6f74207468652070726576696f7573206f776e657245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737342414f3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f42414f3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e6564a26469706673582212208ab229638cdd789f8d83102c25cfa97c0e1a3a2faf83af97e18c1e692dc5436964736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000210c2400000000000000000000000000000000000000000000000000000000006c3c300
-----Decoded View---------------
Arg [0] : _lockFromBlock (uint256): 34652736
Arg [1] : _lockToBlock (uint256): 113492736
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000210c240
Arg [1] : 0000000000000000000000000000000000000000000000000000000006c3c300
Deployed Bytecode Sourcemap
23608:14804:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14685:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16791:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16791:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24802:107;;;;;;;;;;;;;;;;-1:-1:-1;24802:107:0;;:::i;:::-;;15760:100;;;:::i;:::-;;;;;;;;;;;;;;;;28095:523;;;;;;;;;;;;;;;;-1:-1:-1;28095:523:0;-1:-1:-1;;;;;28095:523:0;;:::i;30781:122::-;;;:::i;17442:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17442:321:0;;;;;;;;;;;;;;;;;:::i;27531:556::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27531:556:0;;;;;;;;:::i;15612:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24336:75;;;:::i;18172:218::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18172:218:0;;;;;;;;:::i;25249:87::-;;;:::i;24506:91::-;;;;;;;;;;;;;;;;-1:-1:-1;24506:91:0;;:::i;26670:162::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26670:162:0;;;;;;;;:::i;38318:91::-;;;;;;;;;;;;;;;;-1:-1:-1;38318:91:0;;:::i;4281:153::-;;;;;;;;;;;;;;;;-1:-1:-1;4281:153:0;-1:-1:-1;;;;;4281:153:0;;:::i;27144:136::-;;;;;;;;;;;;;;;;-1:-1:-1;27144:136:0;-1:-1:-1;;;;;27144:136:0;;:::i;31764:149::-;;;;;;;;;;;;;;;;-1:-1:-1;31764:149:0;-1:-1:-1;;;;;31764:149:0;;:::i;:::-;;;;-1:-1:-1;;;;;31764:149:0;;;;;;;;;;;;;;27288:104;;;;;;;;;;;;;;;;-1:-1:-1;27288:104:0;-1:-1:-1;;;;;27288:104:0;;:::i;32057:::-;;;;;;;;;;;;;;;;-1:-1:-1;32057:104:0;-1:-1:-1;;;;;32057:104:0;;:::i;23772:28::-;;;:::i;2317:95::-;;;:::i;30659:49::-;;;;;;;;;;;;;;;;-1:-1:-1;30659:49:0;-1:-1:-1;;;;;30659:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;15923:119;;;;;;;;;;;;;;;;-1:-1:-1;15923:119:0;-1:-1:-1;;;;;15923:119:0;;:::i;3131:148::-;;;:::i;34657:1252::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34657:1252:0;;;;;;;;:::i;31195:39::-;;;;;;;;;;;;;;;;-1:-1:-1;31195:39:0;-1:-1:-1;;;;;31195:39:0;;:::i;27400:123::-;;;;;;;;;;;;;;;;-1:-1:-1;27400:123:0;-1:-1:-1;;;;;27400:123:0;;:::i;2152:79::-;;;:::i;23807:26::-;;;:::i;25143:98::-;;;:::i;14887:87::-;;;:::i;29234:532::-;;;;;;;;;;;;;;;;-1:-1:-1;29234:532:0;-1:-1:-1;;;;;29234:532:0;;:::i;18893:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18893:269:0;;;;;;;;:::i;28626:516::-;;;:::i;16255:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16255:175:0;;;;;;;;:::i;3690:258::-;;;;;;;;;;;;;;;;-1:-1:-1;3690:258:0;-1:-1:-1;;;;;3690:258:0;;:::i;33971:255::-;;;;;;;;;;;;;;;;-1:-1:-1;33971:255:0;-1:-1:-1;;;;;33971:255:0;;:::i;4001:42::-;;;;;;;;;;;;;;;;-1:-1:-1;4001:42:0;-1:-1:-1;;;;;4001:42:0;;:::i;24643:115::-;;;;;;;;;;;;;;;;-1:-1:-1;24643:115:0;;:::i;32595:1175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32595:1175:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;25040:91::-;;;:::i;4173:100::-;;;;;;;;;;;;;;;;-1:-1:-1;4173:100:0;-1:-1:-1;;;;;4173:100:0;;:::i;16493:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;16493:151:0;;;;;;;;;;:::i;26844:292::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;26844:292:0;;;;;;;;:::i;23891:31::-;;;:::i;30997:117::-;;;:::i;30520:70::-;;;;;;;;;;;;;;;;-1:-1:-1;30520:70:0;;-1:-1:-1;;;;;30520:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;3434:244;;;;;;;;;;;;;;;;-1:-1:-1;3434:244:0;-1:-1:-1;;;;;3434:244:0;;:::i;23840:44::-;;;:::i;24917:111::-;;;:::i;14685:83::-;14755:5;14748:12;;;;;;;;-1:-1:-1;;14748:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14722:13;;14748:12;;14755:5;;14748:12;;14755:5;14748:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14685:83;:::o;16791:169::-;16874:4;16891:39;16900:12;:10;:12::i;:::-;16914:7;16923:6;16891:8;:39::i;:::-;-1:-1:-1;16948:4:0;16791:169;;;;;:::o;24802:107::-;4108:10;4097:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;4134:10:0;4123:7;:5;:7::i;:::-;-1:-1:-1;;;;;4123:21:0;;4097:47;4089:56;;;;;;24877:11:::1;:24:::0;24802:107::o;15760:100::-;15840:12;;15760:100;:::o;28095:523::-;28158:7;28197:13;;28182:12;:28;28178:433;;;-1:-1:-1;28234:1:0;28227:8;;28178:433;28282:11;;28266:12;:27;28262:349;;-1:-1:-1;;;;;;28317:15:0;;;;;;:6;:15;;;;;;28310:22;;28262:349;-1:-1:-1;;;;;28414:25:0;;28374:20;28414:25;;;:16;:25;;;;;;28397:43;;:12;;:16;:43::i;:::-;-1:-1:-1;;;;;28497:25:0;;28455:23;28497:25;;;:16;:25;;;;;;28481:11;;28374:66;;-1:-1:-1;28455:23:0;;28481:42;;:15;:42::i;:::-;-1:-1:-1;;;;;28545:15:0;;;;;;:6;:15;;;;;;28455:68;;-1:-1:-1;28545:54:0;;28455:68;;28545:33;;28565:12;28545:19;:33::i;:::-;:37;;:54::i;:::-;28538:61;;;;28262:349;28095:523;;;:::o;30781:122::-;30823:80;30781:122;:::o;17442:321::-;17548:4;17565:36;17575:6;17583:9;17594:6;17565:9;:36::i;:::-;17612:121;17621:6;17629:12;:10;:12::i;:::-;17643:89;17681:6;17643:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17643:19:0;;;;;;:11;:19;;;;;;17663:12;:10;:12::i;:::-;-1:-1:-1;;;;;17643:33:0;;;;;;;;;;;;-1:-1:-1;17643:33:0;;;:89;:37;:89::i;:::-;17612:8;:121::i;:::-;-1:-1:-1;17751:4:0;17442:321;;;;;:::o;27531:556::-;2555:12;:10;:12::i;:::-;2545:6;;;;;-1:-1:-1;;;;;2545:6:0;;;:22;;;2537:67;;;;;-1:-1:-1;;;2537:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2537:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;27615:21:0;::::1;27607:65;;;::::0;;-1:-1:-1;;;27607:65:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27702:18;27712:7;27702:9;:18::i;:::-;27691:7;:29;;27683:72;;;::::0;;-1:-1:-1;;;27683:72:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;27768:42;27778:7;27795:4;27802:7;27768:9;:42::i;:::-;-1:-1:-1::0;;;;;27841:15:0;::::1;;::::0;;;:6:::1;:15;::::0;;;;;:28:::1;::::0;27861:7;27841:19:::1;:28::i;:::-;-1:-1:-1::0;;;;;27823:15:0;::::1;;::::0;;;:6:::1;:15;::::0;;;;:46;27893:10:::1;::::0;:23:::1;::::0;27908:7;27893:14:::1;:23::i;:::-;27880:10;:36:::0;27959:13:::1;::::0;-1:-1:-1;;;;;27931:25:0;::::1;;::::0;;;:16:::1;:25;::::0;;;;;:41:::1;27927:115;;;28017:13;::::0;-1:-1:-1;;;;;27989:25:0;::::1;;::::0;;;:16:::1;:25;::::0;;;;:41;27927:115:::1;28057:22;::::0;;;;;;;-1:-1:-1;;;;;28057:22:0;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;27531:556:::0;;:::o;15612:83::-;15678:9;;;;15612:83;:::o;24336:75::-;24399:4;;24336:75;:::o;18172:218::-;18260:4;18277:83;18286:12;:10;:12::i;:::-;18300:7;18309:50;18348:10;18309:11;:25;18321:12;:10;:12::i;:::-;-1:-1:-1;;;;;18309:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;18309:25:0;;;:34;;;;;;;;;;;:38;:50::i;25249:87::-;25318:10;;25249:87;:::o;24506:91::-;4108:10;4097:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;4134:10:0;4123:7;:5;:7::i;:::-;-1:-1:-1;;;;;4123:21:0;;4097:47;4089:56;;;;;;24575:4:::1;:14:::0;24506:91::o;26670:162::-;2555:12;:10;:12::i;:::-;2545:6;;;;;-1:-1:-1;;;;;2545:6:0;;;:22;;;2537:67;;;;;-1:-1:-1;;;2537:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2537:67:0;;;;;;;;;;;;;;;26742:19:::1;26748:3;26753:7;26742:5;:19::i;:::-;-1:-1:-1::0;;;;;26799:15:0;;::::1;26795:1;26799:15:::0;;;:10:::1;:15;::::0;;;;;26772:52:::1;::::0;26799:15:::1;26816:7:::0;26772:14:::1;:52::i;:::-;26670:162:::0;;:::o;38318:91::-;38374:27;38380:12;:10;:12::i;:::-;38394:6;38374:5;:27::i;:::-;38318:91;:::o;4281:153::-;2555:12;:10;:12::i;:::-;2545:6;;;;;-1:-1:-1;;;;;2545:6:0;;;:22;;;2537:67;;;;;-1:-1:-1;;;2537:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2537:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4362:23:0;::::1;4375:10;4362:23;;4354:32;;;::::0;::::1;;-1:-1:-1::0;;;;;4397:21:0::1;4421:5;4397:21:::0;;;:10:::1;:21;::::0;;;;:29;;-1:-1:-1;;4397:29:0::1;::::0;;4281:153::o;27144:136::-;27206:7;27233:39;27253:18;27263:7;27253:9;:18::i;:::-;-1:-1:-1;;;;;27233:15:0;;;;;;:6;:15;;;;;;;:19;:39::i;31764:149::-;-1:-1:-1;;;;;31884:21:0;;;31852:7;31884:21;;;:10;:21;;;;;;;;31764:149::o;27288:104::-;-1:-1:-1;;;;;27369:15:0;27342:7;27369:15;;;:6;:15;;;;;;;27288:104::o;32057:::-;32121:32;32131:10;32143:9;32121;:32::i;23772:28::-;;;;:::o;2317:95::-;2390:14;;-1:-1:-1;;;;;2390:14:0;2317:95;:::o;30659:49::-;;;;;;;;;;;;;;;:::o;15923:119::-;-1:-1:-1;;;;;16016:18:0;15989:7;16016:18;;;;;;;;;;;;15923:119::o;3131:148::-;2555:12;:10;:12::i;:::-;2545:6;;;;;-1:-1:-1;;;;;2545:6:0;;;:22;;;2537:67;;;;;-1:-1:-1;;;2537:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2537:67:0;;;;;;;;;;;;;;;3222:6:::1;::::0;3201:40:::1;::::0;3238:1:::1;::::0;3222:6:::1;::::0;::::1;-1:-1:-1::0;;;;;3222:6:0::1;::::0;3201:40:::1;::::0;3238:1;;3201:40:::1;3252:6;:19:::0;;-1:-1:-1;;;;;;3252:19:0::1;::::0;;3131:148::o;34657:1252::-;34765:7;34812:12;34798:11;:26;34790:77;;;;-1:-1:-1;;;34790:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34902:23:0;;34880:19;34902:23;;;:14;:23;;;;;;;;34940:17;34936:58;;34981:1;34974:8;;;;;34936:58;-1:-1:-1;;;;;35054:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;35075:16:0;;35054:38;;;;;;;;;:48;;:63;-1:-1:-1;35050:147:0;;-1:-1:-1;;;;;35141:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;35162:16:0;;;;35141:38;;;;;;;;35177:1;35141:44;;;-1:-1:-1;35134:51:0;;35050:147;-1:-1:-1;;;;;35258:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;35254:88:0;;;35329:1;35322:8;;;;;35254:88;35354:12;-1:-1:-1;;35396:16:0;;35423:428;35438:5;35430:13;;:5;:13;;;35423:428;;;35502:1;35485:13;;;35484:19;;;35476:27;;35545:20;;:::i;:::-;-1:-1:-1;;;;;;35568:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;35545:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35615:27;;35611:229;;;35670:8;;;;-1:-1:-1;35663:15:0;;-1:-1:-1;;;;35663:15:0;35611:229;35704:12;;:26;;;-1:-1:-1;35700:140:0;;;35759:6;35751:14;;35700:140;;;35823:1;35814:6;:10;35806:18;;35700:140;35423:428;;;;;-1:-1:-1;;;;;;35868:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;34657:1252:0;;;;:::o;31195:39::-;;;;;;;;;;;;;:::o;27400:123::-;-1:-1:-1;;;;;27490:25:0;27463:7;27490:25;;;:16;:25;;;;;;;27400:123::o;2152:79::-;2217:6;;;;;-1:-1:-1;;;;;2217:6:0;;2152:79::o;23807:26::-;;;;:::o;25143:98::-;25193:7;25220:13;:11;:13::i;:::-;25213:20;;25143:98;:::o;14887:87::-;14959:7;14952:14;;;;;;;;-1:-1:-1;;14952:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14926:13;;14952:14;;14959:7;;14952:14;;14959:7;14952:14;;;;;;;;;;;;;;;;;;;;;;;;29234:532;4108:10;4097:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;4134:10:0;4123:7;:5;:7::i;:::-;-1:-1:-1;;;;;4123:21:0;;4097:47;4089:56;;;;;;29338:10:::1;29331:18;::::0;;;:6:::1;:18;::::0;;;;;;-1:-1:-1;;;;;29315:11:0;::::1;::::0;;;;;:35:::1;::::0;:15:::1;:35::i;:::-;-1:-1:-1::0;;;;;29301:11:0;::::1;;::::0;;;:6:::1;:11;::::0;;;;;;;:49;;;;29391:13:::1;::::0;29367:16:::1;:21:::0;;;;;;;:37:::1;29363:107;;;29445:13;::::0;-1:-1:-1;;;;;29421:21:0;::::1;;::::0;;;:16:::1;:21;::::0;;;;:37;29363:107:::1;29527:10;29510:28;::::0;;;:16:::1;:28;::::0;;;;;;-1:-1:-1;;;;;29486:21:0;::::1;::::0;;;;;:52:::1;29482:137;;;29596:10;29579:28;::::0;;;:16:::1;:28;::::0;;;;;;-1:-1:-1;;;;;29555:21:0;::::1;::::0;;;;:52;29482:137:::1;29638:10;29652:1;29631:18:::0;;;:6:::1;:18;::::0;;;;;;;:22;;;29664:16:::1;:28:::0;;;;;:32;29709:49:::1;::::0;29731:3;29736:21:::1;29638:10:::0;29736:9:::1;:21::i;:::-;29709:9;:49::i;18893:269::-:0;18986:4;19003:129;19012:12;:10;:12::i;:::-;19026:7;19035:96;19074:15;19035:96;;;;;;;;;;;;;;;;;:11;:25;19047:12;:10;:12::i;:::-;-1:-1:-1;;;;;19035:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19035:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;28626:516::-;28677:10;28691:1;28670:18;;;:6;:18;;;;;;28662:55;;;;;-1:-1:-1;;;28662:55:0;;;;;;;;;;;;-1:-1:-1;;;28662:55:0;;;;;;;;;;;;;;;28738:14;28755:27;28771:10;28755:15;:27::i;:::-;28738:44;;28832:24;28850:4;28832:9;:24::i;:::-;28823:6;:33;28819:99;;;28882:24;28900:4;28882:9;:24::i;:::-;28873:33;;28819:99;28928:44;28946:4;28953:10;28965:6;28928:9;:44::i;:::-;29011:10;29004:18;;;;:6;:18;;;;;;:30;;29027:6;29004:22;:30::i;:::-;28990:10;28983:18;;;;:6;:18;;;;;;;;:51;;;;29045:16;:28;;;29076:12;29045:43;;29112:10;;:22;;29127:6;29112:14;:22::i;:::-;29099:10;:35;-1:-1:-1;28626:516:0:o;16255:175::-;16341:4;16358:42;16368:12;:10;:12::i;:::-;16382:9;16393:6;16358:9;:42::i;3690:258::-;2702:12;:10;:12::i;:::-;2684:14;;-1:-1:-1;;;;;2684:14:0;;;:30;;;2676:84;;;;-1:-1:-1;;;2676:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3798:14:::1;::::0;-1:-1:-1;;;;;3786:26:0;;::::1;3798:14:::0;::::1;3786:26;3778:80;;;;-1:-1:-1::0;;;3778:80:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3895:6;::::0;3874:38:::1;::::0;-1:-1:-1;;;;;3874:38:0;;::::1;::::0;3895:6:::1;::::0;::::1;;::::0;3874:38:::1;::::0;;;::::1;3923:6;:17:::0;;-1:-1:-1;;;;;3923:17:0;;::::1;;;-1:-1:-1::0;;;;;;3923:17:0;;::::1;::::0;;;::::1;::::0;;3690:258::o;33971:255::-;-1:-1:-1;;;;;34110:23:0;;34063:7;34110:23;;;:14;:23;;;;;;;;34151:16;:67;;34217:1;34151:67;;;-1:-1:-1;;;;;34170:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;34191:16:0;;34170:38;;;;;;;;34206:1;34170:44;;34151:67;34144:74;33971:255;-1:-1:-1;;;33971:255:0:o;4001:42::-;;;;;;;;;;;;;;;:::o;24643:115::-;4108:10;4097:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;4134:10:0;4123:7;:5;:7::i;:::-;-1:-1:-1;;;;;4123:21:0;;4097:47;4089:56;;;;;;24722:13:::1;:28:::0;24643:115::o;32595:1175::-;32788:23;30823:80;32917:6;:4;:6::i;:::-;32901:24;;;;;;32944:12;:10;:12::i;:::-;32838:165;;;;;;;;;;;;;;;;;;;;;;;;;32983:4;32838:165;;;;;;;;;;;;;;;;;;;;;;;32814:200;;;;;;31043:71;33072:140;;;;-1:-1:-1;;;;;33072:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33048:175;;;;;;-1:-1:-1;;;33277:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33253:158;;;;;;;;;-1:-1:-1;33444:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32814:200;;-1:-1:-1;33048:175:0;;33253:158;;-1:-1:-1;;33444:26:0;;;;;;;-1:-1:-1;;33444:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33444:26:0;;-1:-1:-1;;33444:26:0;;;-1:-1:-1;;;;;;;33489:23:0;;33481:73;;;;-1:-1:-1;;;33481:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;33582:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;33573:28;;33565:74;;;;-1:-1:-1;;;33565:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33665:6;33658:3;:13;;33650:63;;;;-1:-1:-1;;;33650:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33731:31;33741:9;33752;33731;:31::i;:::-;33724:38;;;;32595:1175;;;;;;;:::o;25040:91::-;25085:7;25112:11;:9;:11::i;4173:100::-;2555:12;:10;:12::i;:::-;2545:6;;;;;-1:-1:-1;;;;;2545:6:0;;;:22;;;2537:67;;;;;-1:-1:-1;;;2537:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2537:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;4240:18:0::1;;::::0;;;:10:::1;:18;::::0;;;;:25;;-1:-1:-1;;4240:25:0::1;4261:4;4240:25;::::0;;4173:100::o;16493:151::-;-1:-1:-1;;;;;16609:18:0;;;16582:7;16609:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16493:151::o;26844:292::-;4108:10;4097:22;;;;:10;:22;;;;;;;;;:47;;-1:-1:-1;4134:10:0;4123:7;:5;:7::i;:::-;-1:-1:-1;;;;;4123:21:0;;4097:47;4089:56;;;;;;26945:15:::1;;26930:12;;:30;26927:202;;;26976:19;26982:3;26987:7;26976:5;:19::i;:::-;-1:-1:-1::0;;;;;27037:15:0;;::::1;27033:1;27037:15:::0;;;:10:::1;:15;::::0;;;;;27010:52:::1;::::0;27037:15:::1;27054:7:::0;27010:14:::1;:52::i;:::-;27092:12;::::0;:25:::1;::::0;27109:7;27092:16:::1;:25::i;:::-;27077:12;:40:::0;26844:292;;:::o;23891:31::-;;;;:::o;30997:117::-;31043:71;30997:117;:::o;30520:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3434:244::-;2555:12;:10;:12::i;:::-;2545:6;;;;;-1:-1:-1;;;;;2545:6:0;;;:22;;;2537:67;;;;;-1:-1:-1;;;2537:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2537:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3523:22:0;::::1;3515:73;;;;-1:-1:-1::0;;;3515:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23840:44:::0;;;;:::o;24917:111::-;24964:7;24991:29;25009:10;;24991:13;:11;:13::i;:::-;:17;;:29::i;668:106::-;756:10;668:106;:::o;22040:346::-;-1:-1:-1;;;;;22142:19:0;;22134:68;;;;-1:-1:-1;;;22134:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22221:21:0;;22213:68;;;;-1:-1:-1;;;22213:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22294:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22346:32;;;;;;;;;;;;;;;;;22040:346;;;:::o;5802:136::-;5860:7;5887:43;5891:1;5894;5887:43;;;;;;;;;;;;;;;;;:3;:43::i;6692:471::-;6750:7;6995:6;6991:47;;-1:-1:-1;7025:1:0;7018:8;;6991:47;7062:5;;;7066:1;7062;:5;:1;7086:5;;;;;:10;7078:56;;;;-1:-1:-1;;;7078:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7639:132;7697:7;7724:39;7728:1;7731;7724:39;;;;;;;;;;;;;;;;;:3;:39::i;26331:233::-;26438:42;26454:6;26462:9;26473:6;26438:15;:42::i;:::-;-1:-1:-1;;;;;26506:18:0;;;;;;;:10;:18;;;;;;;26526:21;;;;;;;;26491:65;;26506:18;;;;26526:21;26549:6;26491:14;:65::i;:::-;26331:233;;;:::o;6241:192::-;6327:7;6363:12;6355:6;;;;6347:29;;;;-1:-1:-1;;;6347:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6399:5:0;;;6241:192::o;5338:181::-;5396:7;5428:5;;;5452:6;;;;5444:46;;;;;-1:-1:-1;;;5444:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;20473:378;-1:-1:-1;;;;;20557:21:0;;20549:65;;;;;-1:-1:-1;;;20549:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20627:49;20656:1;20660:7;20669:6;20627:20;:49::i;:::-;20704:12;;:24;;20721:6;20704:16;:24::i;:::-;20689:12;:39;-1:-1:-1;;;;;20760:18:0;;:9;:18;;;;;;;;;;;:30;;20783:6;20760:22;:30::i;:::-;-1:-1:-1;;;;;20739:18:0;;:9;:18;;;;;;;;;;;:51;;;;20806:37;;;;;;;20739:18;;:9;;20806:37;;;;;;;;;;20473:378;;:::o;36318:947::-;36424:6;-1:-1:-1;;;;;36414:16:0;:6;-1:-1:-1;;;;;36414:16:0;;;:30;;;;;36443:1;36434:6;:10;36414:30;36410:848;;;-1:-1:-1;;;;;36465:20:0;;;36461:385;;-1:-1:-1;;;;;36573:22:0;;36554:16;36573:22;;;:14;:22;;;;;;;;;36634:13;:60;;36693:1;36634:60;;;-1:-1:-1;;;;;36650:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;36670:13:0;;36650:34;;;;;;;;36682:1;36650:40;;36634:60;36614:80;-1:-1:-1;36713:17:0;36733:21;36614:80;36747:6;36733:13;:21::i;:::-;36713:41;;36773:57;36790:6;36798:9;36809;36820;36773:16;:57::i;:::-;36461:385;;;;-1:-1:-1;;;;;36866:20:0;;;36862:385;;-1:-1:-1;;;;;36974:22:0;;36955:16;36974:22;;;:14;:22;;;;;;;;;37035:13;:60;;37094:1;37035:60;;;-1:-1:-1;;;;;37051:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;37071:13:0;;37051:34;;;;;;;;37083:1;37051:40;;37035:60;37015:80;-1:-1:-1;37114:17:0;37134:21;37015:80;37148:6;37134:13;:21::i;:::-;37114:41;;37174:57;37191:6;37199:9;37210;37221;37174:16;:57::i;21184:418::-;-1:-1:-1;;;;;21268:21:0;;21260:67;;;;-1:-1:-1;;;21260:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21340:49;21361:7;21378:1;21382:6;21340:20;:49::i;:::-;21423:68;21446:6;21423:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21423:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;21402:18:0;;:9;:18;;;;;;;;;;:89;21517:12;;:24;;21534:6;21517:16;:24::i;:::-;21502:12;:39;21557:37;;;;;;;;21583:1;;-1:-1:-1;;;;;21557:37:0;;;;;;;;;;;;21184:418;;:::o;35917:393::-;-1:-1:-1;;;;;36034:21:0;;;36008:23;36034:21;;;:10;:21;;;;;;;;;;36093:20;36045:9;36093;:20::i;:::-;-1:-1:-1;;;;;36124:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;36124:33:0;;;;;;;;;;36175:54;;36066:47;;-1:-1:-1;36124:33:0;36175:54;;;;;;36124:21;36175:54;36242:60;36257:15;36274:9;36285:16;36242:14;:60::i;:::-;35917:393;;;;:::o;38153:153::-;38263:9;38153:153;:::o;8267:278::-;8353:7;8388:12;8381:5;8373:28;;;;-1:-1:-1;;;8373:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8412:9;8428:1;8424;:5;;;;;;;8267:278;-1:-1:-1;;;;;8267:278:0:o;19652:539::-;-1:-1:-1;;;;;19758:20:0;;19750:70;;;;-1:-1:-1;;;19750:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19839:23:0;;19831:71;;;;-1:-1:-1;;;19831:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19915:47;19936:6;19944:9;19955:6;19915:20;:47::i;:::-;19995:71;20017:6;19995:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;19995:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;19975:17:0;;;:9;:17;;;;;;;;;;;:91;;;;20100:20;;;;;;;:32;;20125:6;20100:24;:32::i;:::-;-1:-1:-1;;;;;20077:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;20148:35;;;;;;;20077:20;;20148:35;;;;;;;;;;;;;19652:539;;;:::o;25523:318::-;25632:44;25659:4;25665:2;25669:6;25632:26;:44::i;:::-;-1:-1:-1;;;;;25693:18:0;;25689:145;;25788:4;;25759:25;25777:6;25759:13;:11;:13::i;:::-;:17;;:25::i;:::-;:33;;25751:71;;;;;-1:-1:-1;;;25751:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;37273:703;37452:18;37473:75;37480:12;37473:75;;;;;;;;;;;;;;;;;:6;:75::i;:::-;37452:96;;37580:1;37565:12;:16;;;:85;;;;-1:-1:-1;;;;;;37585:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;37608:16:0;;37585:40;;;;;;;;;:50;:65;;;:50;;:65;37565:85;37561:339;;;-1:-1:-1;;;;;37667:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;37690:16:0;;37667:40;;;;;;;;37705:1;37667:46;:57;;;37561:339;;;37796:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;37757:22:0;;-1:-1:-1;37757:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;37757:72:0;;;;;;;;;;;;;37844:25;;;:14;:25;;;;;;:44;;37872:16;;;37844:44;;;;;;;;;;37561:339;37917:51;;;;;;;;;;;;;;-1:-1:-1;;;;;37917:51:0;;;;;;;;;;;37273:703;;;;;:::o;37984:161::-;38059:6;38097:12;38090:5;38086:9;;38078:32;;;;-1:-1:-1;;;38078:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38135:1:0;;37984:161;-1:-1:-1;;37984:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://8ab229638cdd789f8d83102c25cfa97c0e1a3a2faf83af97e18c1e692dc54369
Loading...
Loading
OVERVIEW
Polly Finance is a platform for the community and eventually anyone to create their own nests to manage diverse assets, purchase them easily, and automated their farming.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.