ERC-20
Overview
Max Total Supply
2,592,000,000 empt
Holders
32
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
EMPTtoken
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity Multiple files format)
pragma solidity 0.4.24; import "./Context.sol"; import "./ERC20.sol"; import "./ERC20Detailed.sol"; /** * @title SimpleToken * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `ERC20` functions. */ contract EMPTtoken is Context, ERC20, ERC20Detailed { uint256 public totalSupplyofToken; address private owner; mapping(address => bytes32[]) public lockReason; mapping(address => mapping(bytes32 => lockToken)) public locked; struct lockToken { uint256 amount; uint256 validity; } modifier onlyOwner () { require(_msgSender() == owner); _; } /** * @dev Constructor that gives _msgSender() all of existing tokens. */ constructor () public ERC20Detailed("EMPTtoken", "empt", 18) ERC20(_msgSender()) { owner = _msgSender(); totalSupplyofToken = 2880000000 * (10 ** uint256(decimals())); _mint(_msgSender(), totalSupplyofToken); } function mint(uint256 _amount) public onlyOwner { uint256 mint_amount = _amount * (10 ** uint256(decimals())); _mint(_msgSender(), mint_amount); } function burn(uint256 _amount) public onlyOwner { uint256 burn_amount = _amount * (10 ** uint256(decimals())); _burn(_msgSender(), burn_amount); } function transferLock(address _recipient, uint256 _amount, bytes32 _reason, uint256 _time) onlyOwner public returns (bool){ _transferToken(_recipient, _amount); lock(_recipient, _reason, _amount, _time); return true; } function transfer(address _recipient, uint256 _amount) public returns (bool) { uint256 transferableToken = transferableBalanceOf(_msgSender()); require(transferableToken.sub(_amount) >= 0); _transferToken(_recipient, _amount); return true; } /** * @dev Locks a specified amount of tokens against an address, * for a specified reason and time */ function lock(address _user, bytes32 _reason, uint256 _amount, uint256 _time) onlyOwner public returns (bool){ uint256 validUntil = block.timestamp.add(_time); // If tokens are already locked, the functions extendLock or // increaseLockAmount should be used to make any changes //require(tokensLocked(_user, _reason, block.timestamp) == 0); require(_amount <= transferableBalanceOf(_user)); if (locked[_user][_reason].amount == 0) lockReason[_user].push(_reason); if(tokensLocked(_user, _reason, block.timestamp) == 0){ locked[_user][_reason] = lockToken(_amount, validUntil); }else{ locked[_user][_reason].amount += _amount; } return true; } /** * @dev Returns tokens locked for a specified address for a * specified reason at a specified time * * @param _user The address whose tokens are locked * @param _reason The reason to query the lock tokens for * @param _time The timestamp to query the lock tokens for */ function tokensLocked(address _user, bytes32 _reason, uint256 _time) public view returns (uint256 amount){ if (locked[_user][_reason].validity > _time) amount = locked[_user][_reason].amount; } function transferableBalanceOf(address _user) public view returns (uint256){ uint256 totalBalance; uint256 lockedAmount; uint256 amount; for (uint256 i=0; i < lockReason[_user].length; i++) { lockedAmount += tokensLocked(_user,lockReason[_user][i], block.timestamp); } totalBalance = balanceOf(_user); amount = totalBalance.sub(lockedAmount); return amount; } }
pragma solidity 0.4.24; /* * @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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
pragma solidity 0.4.24; import "./Context.sol"; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @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 {ERC20Mintable}. * * 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; address _owner; modifier onlyOwner () { require(_msgSender() == _owner); _; } constructor (address owner) public { _owner = owner; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 returns (bool) { // _transfer(_msgSender(), recipient, amount); // return true; // } function _transferToken(address recipient, uint256 amount) internal returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } // function transferOwner(address recipient, uint256 amount) onlyOwner public returns (bool) { // _transfer(_msgSender(), recipient, amount); // return true; // } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public 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 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 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 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 is 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } }
pragma solidity 0.4.24; import "./IERC20.sol"; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol, uint8 decimals) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @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. * * 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; } }
pragma solidity 0.4.24; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); }
pragma solidity 0.4.24; /** * @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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"},{"name":"_reason","type":"bytes32"},{"name":"_amount","type":"uint256"},{"name":"_time","type":"uint256"}],"name":"lock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyofToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"},{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_reason","type":"bytes32"},{"name":"_time","type":"uint256"}],"name":"transferLock","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"},{"name":"_reason","type":"bytes32"},{"name":"_time","type":"uint256"}],"name":"tokensLocked","outputs":[{"name":"amount","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"lockReason","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"transferableBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"locked","outputs":[{"name":"amount","type":"uint256"},{"name":"validity","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040805190810160405280600981526020017f454d5054746f6b656e00000000000000000000000000000000000000000000008152506040805190810160405280600481526020017f656d707400000000000000000000000000000000000000000000000000000000815250601262000099620001ea640100000000026401000000009004565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550508260049080519060200190620000f392919062000472565b5081600590805190602001906200010c92919062000472565b5080600660006101000a81548160ff021916908360ff16021790555050505062000144620001ea640100000000026401000000009004565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019d620001f2640100000000026401000000009004565b60ff16600a0a63aba9500002600781905550620001e4620001cc620001ea640100000000026401000000009004565b60075462000209640100000000026401000000009004565b62000521565b600033905090565b6000600660009054906101000a900460ff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515620002af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620002d481600254620003e7640100000000026200145c179091906401000000009004565b6002819055506200033b816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054620003e7640100000000026200145c179091906401000000009004565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600080828401905083811015151562000468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620004b557805160ff1916838001178555620004e6565b82800160010185558215620004e6579182015b82811115620004e5578251825591602001919060010190620004c8565b5b509050620004f59190620004f9565b5090565b6200051e91905b808211156200051a57600081600090555060010162000500565b5090565b90565b61203e80620005316000396000f300608060405260043610610112576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610117578063087fad41146101a7578063095ea7b31461022457806318160ddd14610289578063231224ef146102b457806323b872dd146102df57806325c8a8bc14610364578063313ce567146103e157806339509351146104125780633cd8e5a51461047757806342966c68146104e657806370a082311461051357806371d66f001461056a57806395d89b41146105d3578063a0712d6814610663578063a457c2d714610690578063a9059cbb146106f5578063c7d9f4d11461075a578063d71be8db146107b1578063dd62ed3e1461081d575b600080fd5b34801561012357600080fd5b5061012c610894565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016c578082015181840152602081019050610151565b50505050905090810190601f1680156101995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b357600080fd5b5061020a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080356000191690602001909291908035906020019092919080359060200190929190505050610936565b604051808215151515815260200191505060405180910390f35b34801561023057600080fd5b5061026f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610baf565b604051808215151515815260200191505060405180910390f35b34801561029557600080fd5b5061029e610bcd565b6040518082815260200191505060405180910390f35b3480156102c057600080fd5b506102c9610bd7565b6040518082815260200191505060405180910390f35b3480156102eb57600080fd5b5061034a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bdd565b604051808215151515815260200191505060405180910390f35b34801561037057600080fd5b506103c7600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803560001916906020019092919080359060200190929190505050610cfa565b604051808215151515815260200191505060405180910390f35b3480156103ed57600080fd5b506103f6610d83565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041e57600080fd5b5061045d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d9a565b604051808215151515815260200191505060405180910390f35b34801561048357600080fd5b506104d0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919080359060200190929190505050610e4d565b6040518082815260200191505060405180910390f35b3480156104f257600080fd5b5061051160048036038101908080359060200190929190505050610f18565b005b34801561051f57600080fd5b50610554600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fa4565b6040518082815260200191505060405180910390f35b34801561057657600080fd5b506105b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fec565b60405180826000191660001916815260200191505060405180910390f35b3480156105df57600080fd5b506105e861101c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062857808201518184015260208101905061060d565b50505050905090810190601f1680156106555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561066f57600080fd5b5061068e600480360381019080803590602001909291905050506110be565b005b34801561069c57600080fd5b506106db600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114a565b604051808215151515815260200191505060405180910390f35b34801561070157600080fd5b50610740600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b604051808215151515815260200191505060405180910390f35b34801561076657600080fd5b5061079b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a8565b6040518082815260200191505060405180910390f35b3480156107bd57600080fd5b50610800600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919050505061139c565b604051808381526020018281526020019250505060405180910390f35b34801561082957600080fd5b5061087e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113cd565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097a611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561099c57600080fd5b6109af834261145c90919063ffffffff16565b90506109ba866112a8565b84111515156109c857600080fd5b6000600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001541415610a9c57600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208590806001815401808255809150509060018203906000526020600020016000909192909190915090600019169055505b6000610aa9878742610e4d565b1415610b3857604080519081016040528085815260200182815250600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087600019166000191681526020019081526020016000206000820151816000015560208201518160010155905050610ba2565b83600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001600082825401925050819055505b6001915050949350505050565b6000610bc3610bbc611454565b84846114e6565b6001905092915050565b6000600254905090565b60075481565b6000610bea848484611767565b610cef84610bf6611454565b610cea85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ca0611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b600190509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d3d611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610d5f57600080fd5b610d698585611bac565b50610d7685848685610936565b5060019050949350505050565b6000600660009054906101000a900460ff16905090565b6000610e43610da7611454565b84610e3e8560016000610db8611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6114e6565b6001905092915050565b600081600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008560001916600019168152602001908152602001600020600101541115610f1157600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084600019166000191681526020019081526020016000206000015490505b9392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f5b611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610f7d57600080fd5b610f85610d83565b60ff16600a0a82029050610fa0610f9a611454565b82611bca565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60096020528160005260406000208181548110151561100757fe5b90600052602060002001600091509150505481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110b45780601f10611089576101008083540402835291602001916110b4565b820191906000526020600020905b81548152906001019060200180831161109757829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611101611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561112357600080fd5b61112b610d83565b60ff16600a0a82029050611146611140611454565b82611e0b565b5050565b6000611251611157611454565b8461124c85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f000000000000000000000000000000000000000000000000000000815250600160006111c5611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b6001905092915050565b60008061126e611269611454565b6112a8565b905060006112858483611fc890919063ffffffff16565b1015151561129257600080fd5b61129c8484611bac565b50600191505092915050565b60008060008060008090505b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156113705761135f86600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561134e57fe5b906000526020600020015442610e4d565b8301925080806001019150506112b4565b61137986610fa4565b935061138e8385611fc890919063ffffffff16565b915081945050505050919050565b600a602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b60008082840190508381101515156114dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6119ac81606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000808484111583901515611b9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b60578082015181840152602081019050611b45565b50505050905090810190601f168015611b8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385039050809150509392505050565b6000611bc0611bb9611454565b8484611767565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611c95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611d4481606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d9b81600254611fc890919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ec58160025461145c90919063ffffffff16565b600281905550611f1c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061200a83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aeb565b9050929150505600a165627a7a72305820fb2ccb72277aedef5eb69a2230f3775254fe80d29e5a92e27bc367b03587e5280029
Deployed Bytecode
0x608060405260043610610112576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff16806306fdde0314610117578063087fad41146101a7578063095ea7b31461022457806318160ddd14610289578063231224ef146102b457806323b872dd146102df57806325c8a8bc14610364578063313ce567146103e157806339509351146104125780633cd8e5a51461047757806342966c68146104e657806370a082311461051357806371d66f001461056a57806395d89b41146105d3578063a0712d6814610663578063a457c2d714610690578063a9059cbb146106f5578063c7d9f4d11461075a578063d71be8db146107b1578063dd62ed3e1461081d575b600080fd5b34801561012357600080fd5b5061012c610894565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561016c578082015181840152602081019050610151565b50505050905090810190601f1680156101995780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156101b357600080fd5b5061020a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080356000191690602001909291908035906020019092919080359060200190929190505050610936565b604051808215151515815260200191505060405180910390f35b34801561023057600080fd5b5061026f600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610baf565b604051808215151515815260200191505060405180910390f35b34801561029557600080fd5b5061029e610bcd565b6040518082815260200191505060405180910390f35b3480156102c057600080fd5b506102c9610bd7565b6040518082815260200191505060405180910390f35b3480156102eb57600080fd5b5061034a600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610bdd565b604051808215151515815260200191505060405180910390f35b34801561037057600080fd5b506103c7600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803560001916906020019092919080359060200190929190505050610cfa565b604051808215151515815260200191505060405180910390f35b3480156103ed57600080fd5b506103f6610d83565b604051808260ff1660ff16815260200191505060405180910390f35b34801561041e57600080fd5b5061045d600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d9a565b604051808215151515815260200191505060405180910390f35b34801561048357600080fd5b506104d0600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919080359060200190929190505050610e4d565b6040518082815260200191505060405180910390f35b3480156104f257600080fd5b5061051160048036038101908080359060200190929190505050610f18565b005b34801561051f57600080fd5b50610554600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610fa4565b6040518082815260200191505060405180910390f35b34801561057657600080fd5b506105b5600480360381019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fec565b60405180826000191660001916815260200191505060405180910390f35b3480156105df57600080fd5b506105e861101c565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561062857808201518184015260208101905061060d565b50505050905090810190601f1680156106555780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561066f57600080fd5b5061068e600480360381019080803590602001909291905050506110be565b005b34801561069c57600080fd5b506106db600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061114a565b604051808215151515815260200191505060405180910390f35b34801561070157600080fd5b50610740600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061125b565b604051808215151515815260200191505060405180910390f35b34801561076657600080fd5b5061079b600480360381019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506112a8565b6040518082815260200191505060405180910390f35b3480156107bd57600080fd5b50610800600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803560001916906020019092919050505061139c565b604051808381526020018281526020019250505060405180910390f35b34801561082957600080fd5b5061087e600480360381019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113cd565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561092c5780601f106109015761010080835404028352916020019161092c565b820191906000526020600020905b81548152906001019060200180831161090f57829003601f168201915b5050505050905090565b600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661097a611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561099c57600080fd5b6109af834261145c90919063ffffffff16565b90506109ba866112a8565b84111515156109c857600080fd5b6000600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001541415610a9c57600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208590806001815401808255809150509060018203906000526020600020016000909192909190915090600019169055505b6000610aa9878742610e4d565b1415610b3857604080519081016040528085815260200182815250600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600087600019166000191681526020019081526020016000206000820151816000015560208201518160010155905050610ba2565b83600a60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008760001916600019168152602001908152602001600020600001600082825401925050819055505b6001915050949350505050565b6000610bc3610bbc611454565b84846114e6565b6001905092915050565b6000600254905090565b60075481565b6000610bea848484611767565b610cef84610bf6611454565b610cea85606060405190810160405280602881526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206181526020017f6c6c6f77616e6365000000000000000000000000000000000000000000000000815250600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ca0611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b600190509392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610d3d611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610d5f57600080fd5b610d698585611bac565b50610d7685848685610936565b5060019050949350505050565b6000600660009054906101000a900460ff16905090565b6000610e43610da7611454565b84610e3e8560016000610db8611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6114e6565b6001905092915050565b600081600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008560001916600019168152602001908152602001600020600101541115610f1157600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084600019166000191681526020019081526020016000206000015490505b9392505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610f5b611454565b73ffffffffffffffffffffffffffffffffffffffff16141515610f7d57600080fd5b610f85610d83565b60ff16600a0a82029050610fa0610f9a611454565b82611bca565b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60096020528160005260406000208181548110151561100757fe5b90600052602060002001600091509150505481565b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156110b45780601f10611089576101008083540402835291602001916110b4565b820191906000526020600020905b81548152906001019060200180831161109757829003601f168201915b5050505050905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611101611454565b73ffffffffffffffffffffffffffffffffffffffff1614151561112357600080fd5b61112b610d83565b60ff16600a0a82029050611146611140611454565b82611e0b565b5050565b6000611251611157611454565b8461124c85606060405190810160405280602581526020017f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7781526020017f207a65726f000000000000000000000000000000000000000000000000000000815250600160006111c5611454565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6114e6565b6001905092915050565b60008061126e611269611454565b6112a8565b905060006112858483611fc890919063ffffffff16565b1015151561129257600080fd5b61129c8484611bac565b50600191505092915050565b60008060008060008090505b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020805490508110156113705761135f86600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208381548110151561134e57fe5b906000526020600020015442610e4d565b8301925080806001019150506112b4565b61137986610fa4565b935061138e8385611fc890919063ffffffff16565b915081945050505050919050565b600a602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b60008082840190508381101515156114dc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141515156115b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001807f45524332303a20617070726f76652066726f6d20746865207a65726f2061646481526020017f726573730000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415151561167c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001807f45524332303a20617070726f766520746f20746865207a65726f20616464726581526020017f737300000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614151515611832576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001807f45524332303a207472616e736665722066726f6d20746865207a65726f20616481526020017f647265737300000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141515156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001807f45524332303a207472616e7366657220746f20746865207a65726f206164647281526020017f657373000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b6119ac81606060405190810160405280602681526020017f45524332303a207472616e7366657220616d6f756e742065786365656473206281526020017f616c616e636500000000000000000000000000000000000000000000000000008152506000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611a3f816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b6000808484111583901515611b9b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611b60578082015181840152602081019050611b45565b50505050905090810190601f168015611b8d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b508385039050809150509392505050565b6000611bc0611bb9611454565b8484611767565b6001905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611c95576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001807f45524332303a206275726e2066726f6d20746865207a65726f2061646472657381526020017f730000000000000000000000000000000000000000000000000000000000000081525060400191505060405180910390fd5b611d4481606060405190810160405280602281526020017f45524332303a206275726e20616d6f756e7420657863656564732062616c616e81526020017f63650000000000000000000000000000000000000000000000000000000000008152506000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611aeb9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611d9b81600254611fc890919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614151515611eb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b611ec58160025461145c90919063ffffffff16565b600281905550611f1c816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461145c90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b600061200a83836040805190810160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611aeb565b9050929150505600a165627a7a72305820fb2ccb72277aedef5eb69a2230f3775254fe80d29e5a92e27bc367b03587e5280029
Deployed Bytecode Sourcemap
332:3583:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644:81:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;644:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;644:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2175:796:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2175:796:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3073:149:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3073:149:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1732:89;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1732:89:2;;;;;;;;;;;;;;;;;;;;;;;395:33:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;395:33:1;;;;;;;;;;;;;;;;;;;;;;;3680:300:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3680:300:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1459:259:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1459:259:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1472:81:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1472:81:3;;;;;;;;;;;;;;;;;;;;;;;;;;;4385:207:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4385:207:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3298:217:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3298:217:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1283:166;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1283:166:1;;;;;;;;;;;;;;;;;;;;;;;;;;1879:108:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1879:108:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;466:47:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;466:47:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838:85:3;;8:9:-1;5:2;;;30:1;27;20:12;5:2;838:85:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;838:85:3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106:166:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1106:166:1;;;;;;;;;;;;;;;;;;;;;;;;;;5079:258:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5079:258:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1729:304:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1729:304:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3525:386;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3525:386:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;516:63;;8:9:-1;5:2;;;30:1;27;20:12;5:2;516:63:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2803:132:2;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2803:132:2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644:81:3;681:6;713:5;706:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;644:81;:::o;2175:796:1:-;2279:4;2294:18;727:5;;;;;;;;;;;711:21;;:12;:10;:12::i;:::-;:21;;;703:30;;;;;;;;2315:26;2335:5;2315:15;:19;;:26;;;;:::i;:::-;2294:47;;2575:28;2597:5;2575:21;:28::i;:::-;2564:7;:39;;2556:48;;;;;;;;2660:1;2627:6;:13;2634:5;2627:13;;;;;;;;;;;;;;;:22;2641:7;2627:22;;;;;;;;;;;;;;;;;:29;;;:34;2623:83;;;2675:10;:17;2686:5;2675:17;;;;;;;;;;;;;;;2698:7;2675:31;;39:1:-1;33:3;27:10;23:18;57:10;52:3;45:23;79:10;72:17;;0:93;2675:31:1;;;;;;;;;;;;;;;;;;;;;;;;;;;2623:83;2777:1;2728:45;2741:5;2748:7;2757:15;2728:12;:45::i;:::-;:50;2725:210;;;2818:30;;;;;;;;;2828:7;2818:30;;;;2837:10;2818:30;;;2793:6;:13;2800:5;2793:13;;;;;;;;;;;;;;;:22;2807:7;2793:22;;;;;;;;;;;;;;;;;:55;;;;;;;;;;;;;;;;;;;2725:210;;;2914:7;2881:6;:13;2888:5;2881:13;;;;;;;;;;;;;;;:22;2895:7;2881:22;;;;;;;;;;;;;;;;;:29;;;:40;;;;;;;;;;;2725:210;2960:4;2953:11;;2175:796;;;;;;;:::o;3073:149:2:-;3139:4;3155:39;3164:12;:10;:12::i;:::-;3178:7;3187:6;3155:8;:39::i;:::-;3211:4;3204:11;;3073:149;;;;:::o;1732:89::-;1776:7;1802:12;;1795:19;;1732:89;:::o;395:33:1:-;;;;:::o;3680:300:2:-;3769:4;3785:36;3795:6;3803:9;3814:6;3785:9;:36::i;:::-;3831:121;3840:6;3848:12;:10;:12::i;:::-;3862:89;3900:6;3862:89;;;;;;;;;;;;;;;;;;;;;;;:11;:19;3874:6;3862:19;;;;;;;;;;;;;;;:33;3882:12;:10;:12::i;:::-;3862:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;3831:8;:121::i;:::-;3969:4;3962:11;;3680:300;;;;;:::o;1459:259:1:-;1576:4;727:5;;;;;;;;;;;711:21;;:12;:10;:12::i;:::-;:21;;;703:30;;;;;;;;1591:35;1606:10;1618:7;1591:14;:35::i;:::-;;1645:41;1650:10;1662:7;1671;1680:5;1645:4;:41::i;:::-;;1707:4;1700:11;;1459:259;;;;;;:::o;1472:81:3:-;1513:5;1537:9;;;;;;;;;;;1530:16;;1472:81;:::o;4385:207:2:-;4465:4;4481:83;4490:12;:10;:12::i;:::-;4504:7;4513:50;4552:10;4513:11;:25;4525:12;:10;:12::i;:::-;4513:25;;;;;;;;;;;;;;;:34;4539:7;4513:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;4481:8;:83::i;:::-;4581:4;4574:11;;4385:207;;;;:::o;3298:217:1:-;3388:14;3451:5;3417:6;:13;3424:5;3417:13;;;;;;;;;;;;;;;:22;3431:7;3417:22;;;;;;;;;;;;;;;;;:31;;;:39;3413:95;;;3479:6;:13;3486:5;3479:13;;;;;;;;;;;;;;;:22;3493:7;3479:22;;;;;;;;;;;;;;;;;:29;;;3470:38;;3413:95;3298:217;;;;;:::o;1283:166::-;1341:19;727:5;;;;;;;;;;;711:21;;:12;:10;:12::i;:::-;:21;;;703:30;;;;;;;;1388:10;:8;:10::i;:::-;1380:19;;1374:2;:25;1363:7;:37;1341:59;;1410:32;1416:12;:10;:12::i;:::-;1430:11;1410:5;:32::i;:::-;1283:166;;:::o;1879:108:2:-;1936:7;1962:9;:18;1972:7;1962:18;;;;;;;;;;;;;;;;1955:25;;1879:108;;;:::o;466:47:1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;838:85:3:-;877:6;909:7;902:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;838:85;:::o;1106:166:1:-;1164:19;727:5;;;;;;;;;;;711:21;;:12;:10;:12::i;:::-;:21;;;703:30;;;;;;;;1211:10;:8;:10::i;:::-;1203:19;;1197:2;:25;1186:7;:37;1164:59;;1233:32;1239:12;:10;:12::i;:::-;1253:11;1233:5;:32::i;:::-;1106:166;;:::o;5079:258:2:-;5164:4;5180:129;5189:12;:10;:12::i;:::-;5203:7;5212:96;5251:15;5212:96;;;;;;;;;;;;;;;;;;;;;;;:11;:25;5224:12;:10;:12::i;:::-;5212:25;;;;;;;;;;;;;;;:34;5238:7;5212:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;5180:8;:129::i;:::-;5326:4;5319:11;;5079:258;;;;:::o;1729:304:1:-;1800:4;1825:25;1853:35;1875:12;:10;:12::i;:::-;1853:21;:35::i;:::-;1825:63;;1949:1;1915:30;1937:7;1915:17;:21;;:30;;;;:::i;:::-;:35;;1907:44;;;;;;;;1970:35;1985:10;1997:7;1970:14;:35::i;:::-;;2022:4;2015:11;;1729:304;;;;;:::o;3525:386::-;3592:7;3604:20;3628;3652:14;3678:9;3688:1;3678:11;;3673:136;3695:10;:17;3706:5;3695:17;;;;;;;;;;;;;;;:24;;;;3691:1;:28;3673:136;;;3747:57;3760:5;3766:10;:17;3777:5;3766:17;;;;;;;;;;;;;;;3784:1;3766:20;;;;;;;;;;;;;;;;;;3788:15;3747:12;:57::i;:::-;3731:73;;;;3721:3;;;;;;;3673:136;;;3830:16;3840:5;3830:9;:16::i;:::-;3815:31;;3860:30;3877:12;3860;:16;;:30;;;;:::i;:::-;3851:39;;3901:6;3894:13;;3525:386;;;;;;;:::o;516:63::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2803:132:2:-;2875:7;2901:11;:18;2913:5;2901:18;;;;;;;;;;;;;;;:27;2920:7;2901:27;;;;;;;;;;;;;;;;2894:34;;2803:132;;;;:::o;788:88:0:-;833:7;859:10;852:17;;788:88;:::o;836:176:5:-;894:7;913:9;929:1;925;:5;913:17;;953:1;948;:6;;940:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004:1;997:8;;836:176;;;;;:::o;7937:332:2:-;8047:1;8030:19;;:5;:19;;;;8022:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8127:1;8108:21;;:7;:21;;;;8100:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8209:6;8179:11;:18;8191:5;8179:18;;;;;;;;;;;;;;;:27;8198:7;8179:27;;;;;;;;;;;;;;;:36;;;;8246:7;8230:32;;8239:5;8230:32;;;8255:6;8230:32;;;;;;;;;;;;;;;;;;7937:332;;;:::o;5813:464::-;5928:1;5910:20;;:6;:20;;;;5902:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6011:1;5990:23;;:9;:23;;;;5982:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6084;6106:6;6084:71;;;;;;;;;;;;;;;;;;;;;;;:9;:17;6094:6;6084:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;6064:9;:17;6074:6;6064:17;;;;;;;;;;;;;;;:91;;;;6188:32;6213:6;6188:9;:20;6198:9;6188:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;6165:9;:20;6175:9;6165:20;;;;;;;;;;;;;;;:55;;;;6252:9;6235:35;;6244:6;6235:35;;;6263:6;6235:35;;;;;;;;;;;;;;;;;;5813:464;;;:::o;1734:187:5:-;1820:7;1878:9;1852:1;1847;:6;;1855:12;1839:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;1839:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1894:1;1890;:5;1878:17;;1913:1;1906:8;;1734:187;;;;;;:::o;2372:181:2:-;2449:4;2474:42;2484:12;:10;:12::i;:::-;2498:9;2509:6;2474:9;:42::i;:::-;2533:4;2526:11;;2372:181;;;;:::o;7168:342::-;7262:1;7243:21;;:7;:21;;;;7235:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7334:68;7357:6;7334:68;;;;;;;;;;;;;;;;;;;;;;;:9;:18;7344:7;7334:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;7313:9;:18;7323:7;7313:18;;;;;;;;;;;;;;;:89;;;;7427:24;7444:6;7427:12;;:16;;:24;;;;:::i;:::-;7412:12;:39;;;;7492:1;7466:37;;7475:7;7466:37;;;7496:6;7466:37;;;;;;;;;;;;;;;;;;7168:342;;:::o;6547:302::-;6641:1;6622:21;;:7;:21;;;;6614:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6705:24;6722:6;6705:12;;:16;;:24;;;;:::i;:::-;6690:12;:39;;;;6760:30;6783:6;6760:9;:18;6770:7;6760:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;6739:9;:18;6749:7;6739:18;;;;;;;;;;;;;;;:51;;;;6826:7;6805:37;;6822:1;6805:37;;;6835:6;6805:37;;;;;;;;;;;;;;;;;;6547:302;;:::o;1276:134:5:-;1334:7;1360:43;1364:1;1367;1360:43;;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1353:50;;1276:134;;;;:::o
Swarm Source
bzzr://fb2ccb72277aedef5eb69a2230f3775254fe80d29e5a92e27bc367b03587e528
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.