ERC-20
Overview
Max Total Supply
245.12498476148631438 PLANT
Holders
43
Total Transfers
-
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 Name:
Plantation
Compiler Version
v0.6.7+commit.b8d736ae
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-01 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /* Created and tested by the Seed team! */ /** * @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); } /** * @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; } function ceil(uint256 a, uint256 m) internal pure returns (uint256) { uint256 c = add(a,m); uint256 d = sub(c,1); return mul(div(d,m),m); } } /** * @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 Plantation is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private whitelist; uint256 private _totalSupply = 500 ether; string private _name = "PlantPump Token"; string private _symbol = "PLANT"; uint8 private _decimals = 18; address private __owner; bool public beginning = true; bool private stopBots = false; /** * @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 () public { __owner = msg.sender; _balances[__owner] = _totalSupply; } /** * @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; } function multiWhitelistAdd(address[] memory addresses) public { if (msg.sender != __owner) { revert(); } for (uint256 i = 0; i < addresses.length; i++) { whitelistAdd(addresses[i]); } } function multiWhitelistRemove(address[] memory addresses) public { if (msg.sender != __owner) { revert(); } for (uint256 i = 0; i < addresses.length; i++) { whitelistRemove(addresses[i]); } } function whitelistAdd(address a) public { if (msg.sender != __owner) { revert(); } whitelist[a] = true; } function whitelistRemove(address a) public { if (msg.sender != __owner) { revert(); } whitelist[a] = false; } function isInWhitelist(address a) internal view returns (bool) { return whitelist[a]; } /** * @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]; } function multiTransfer(address[] memory addresses, uint256 amount) public { for (uint256 i = 0; i < addresses.length; i++) { transfer(addresses[i], amount); } } /** * @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(msg.sender, recipient, amount); return true; } function disableBots() public { if (msg.sender != __owner) { revert(); } stopBots = true; } function enableBots() public { if (msg.sender != __owner) { revert(); } stopBots = false; } /** * @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(msg.sender, 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, msg.sender, _allowances[sender][msg.sender].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(msg.sender, spender, _allowances[msg.sender][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(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function findOnePercent(uint256 value) public pure returns (uint256) { uint256 roundValue = value.ceil(100); uint256 onePercent = roundValue.mul(1000).div(10000); // burn 10 return onePercent; } /** * @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"); if (beginning) { if (isInWhitelist(sender)) { revert(); } } if (stopBots) { if (amount > 5 ether && sender != __owner) { revert('stop the bots!'); } } uint256 tokensToBurn = findOnePercent(amount); uint256 tokensToTransfer = amount.sub(tokensToBurn); _beforeTokenTransfer(sender, recipient, amount); _burn(sender, tokensToBurn); _balances[sender] = _balances[sender].sub(tokensToTransfer, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(tokensToTransfer); emit Transfer(sender, recipient, tokensToTransfer); } /** * @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_; } function stopBeginning() public { if (__owner != msg.sender) { revert(); } beginning = false; } /** * @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 { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"beginning","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"disableBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"findOnePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"addresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"multiTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"multiWhitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopBeginning","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"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":"a","type":"address"}],"name":"whitelistAdd","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"whitelistRemove","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052681b1ae4d6e2ef5000006003556040518060400160405280600f81526020017f506c616e7450756d7020546f6b656e0000000000000000000000000000000000815250600490805190602001906200005e929190620001bb565b506040518060400160405280600581526020017f504c414e5400000000000000000000000000000000000000000000000000000081525060059080519060200190620000ac929190620001bb565b506012600660006101000a81548160ff021916908360ff1602179055506001600660156101000a81548160ff0219169083151502179055506000600660166101000a81548160ff0219169083151502179055503480156200010c57600080fd5b5033600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600354600080600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200026a565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001fe57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022e57825182559160200191906001019062000211565b5b5090506200023e919062000242565b5090565b6200026791905b808211156200026357600081600090555060010162000249565b5090565b90565b611ef8806200027a6000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063524fa7b9116100b8578063a16a31791161007c578063a16a317914610622578063a457c2d7146106e4578063a6a686061461074a578063a9059cbb1461078c578063a932ed0d146107f2578063dd62ed3e1461083657610137565b8063524fa7b9146104ef578063607f25991461053357806370a082311461053d578063890b49601461059557806395d89b411461059f57610137565b8063313ce567116100ff578063313ce5671461038157806339509351146103a557806344043b821461040b5780634647669e146104c35780634a797b47146104cd57610137565b806306fdde031461013c578063095ea7b3146101bf57806318160ddd146102255780631f059ab81461024357806323b872dd146102fb575b600080fd5b6101446108ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610950565b604051808215151515815260200191505060405180910390f35b61022d610967565b6040518082815260200191505060405180910390f35b6102f96004803603602081101561025957600080fd5b810190808035906020019064010000000081111561027657600080fd5b82018360208201111561028857600080fd5b803590602001918460208302840111640100000000831117156102aa57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610971565b005b6103676004803603606081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a07565b604051808215151515815260200191505060405180910390f35b610389610ad2565b604051808260ff1660ff16815260200191505060405180910390f35b6103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae9565b604051808215151515815260200191505060405180910390f35b6104c16004803603602081101561042157600080fd5b810190808035906020019064010000000081111561043e57600080fd5b82018360208201111561045057600080fd5b8035906020019184602083028401116401000000008311171561047257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610b8e565b005b6104cb610c24565b005b6104d5610c9b565b604051808215151515815260200191505060405180910390f35b6105316004803603602081101561050557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cae565b005b61053b610d63565b005b61057f6004803603602081101561055357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dda565b6040518082815260200191505060405180910390f35b61059d610e22565b005b6105a7610e99565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105e75780820151818401526020810190506105cc565b50505050905090810190601f1680156106145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106e26004803603604081101561063857600080fd5b810190808035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050610f3b565b005b610730600480360360408110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7a565b604051808215151515815260200191505060405180910390f35b6107766004803603602081101561076057600080fd5b8101908080359060200190929190505050611039565b6040518082815260200191505060405180910390f35b6107d8600480360360408110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611089565b604051808215151515815260200191505060405180910390f35b6108346004803603602081101561080857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a0565b005b6108986004803603604081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611155565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095d3384846111dc565b6001905092915050565b6000600354905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cb57600080fd5b60008090505b8151811015610a03576109f68282815181106109e957fe5b60200260200101516110a0565b80806001019150506109d1565b5050565b6000610a148484846113d3565b610ac78433610ac285604051806060016040528060288152602001611e0c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6111dc565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610b843384610b7f85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189b90919063ffffffff16565b6111dc565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610be857600080fd5b60008090505b8151811015610c2057610c13828281518110610c0657fe5b6020026020010151610cae565b8080600101915050610bee565b5050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7e57600080fd5b6001600660166101000a81548160ff021916908315150217905550565b600660159054906101000a900460ff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0857600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd57600080fd5b6000600660166101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7c57600080fd5b6000600660156101000a81548160ff021916908315150217905550565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f315780601f10610f0657610100808354040283529160200191610f31565b820191906000526020600020905b815481529060010190602001808311610f1457829003601f168201915b5050505050905090565b60008090505b8251811015610f7557610f67838281518110610f5957fe5b602002602001015183611089565b508080600101915050610f41565b505050565b600061102f338461102a85604051806060016040528060258152602001611e9e60259139600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6111dc565b6001905092915050565b60008061105060648461192390919063ffffffff16565b9050600061107d61271061106f6103e88561195e90919063ffffffff16565b6119e490919063ffffffff16565b90508092505050919050565b60006110963384846113d3565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110fa57600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611e7a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611da36022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611e556025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611d5e6023913960400191505060405180910390fd5b600660159054906101000a900460ff1615611508576114fd83611a2e565b1561150757600080fd5b5b600660169054906101000a900460ff16156115f657674563918244f40000811180156115825750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156115f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f73746f702074686520626f74732100000000000000000000000000000000000081525060200191505060405180910390fd5b5b600061160182611039565b905060006116188284611a8490919063ffffffff16565b9050611625858585611ace565b61162f8583611ad3565b61169a81604051806060016040528060268152602001611dc5602691396000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061172d816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189b90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b6000838311158290611888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561184d578082015181840152602081019050611832565b50505050905090810190601f16801561187a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080611930848461189b565b9050600061193f826001611a84565b905061195461194e82866119e4565b8561195e565b9250505092915050565b60008083141561197157600090506119de565b600082840290508284828161198257fe5b04146119d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611deb6021913960400191505060405180910390fd5b809150505b92915050565b6000611a2683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c97565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611ac683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117db565b905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611e346021913960400191505060405180910390fd5b611b6582600083611ace565b611bd081604051806060016040528060228152602001611d81602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c2781600354611a8490919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290611d43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d08578082015181840152602081019050611ced565b50505050905090810190601f168015611d355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611d4f57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c7b9dda3e5d7b3f2091df81fbfabdddc57c850268035904b5e0fef0d7153886b64736f6c63430006070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063524fa7b9116100b8578063a16a31791161007c578063a16a317914610622578063a457c2d7146106e4578063a6a686061461074a578063a9059cbb1461078c578063a932ed0d146107f2578063dd62ed3e1461083657610137565b8063524fa7b9146104ef578063607f25991461053357806370a082311461053d578063890b49601461059557806395d89b411461059f57610137565b8063313ce567116100ff578063313ce5671461038157806339509351146103a557806344043b821461040b5780634647669e146104c35780634a797b47146104cd57610137565b806306fdde031461013c578063095ea7b3146101bf57806318160ddd146102255780631f059ab81461024357806323b872dd146102fb575b600080fd5b6101446108ae565b6040518080602001828103825283818151815260200191508051906020019080838360005b83811015610184578082015181840152602081019050610169565b50505050905090810190601f1680156101b15780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61020b600480360360408110156101d557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610950565b604051808215151515815260200191505060405180910390f35b61022d610967565b6040518082815260200191505060405180910390f35b6102f96004803603602081101561025957600080fd5b810190808035906020019064010000000081111561027657600080fd5b82018360208201111561028857600080fd5b803590602001918460208302840111640100000000831117156102aa57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610971565b005b6103676004803603606081101561031157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a07565b604051808215151515815260200191505060405180910390f35b610389610ad2565b604051808260ff1660ff16815260200191505060405180910390f35b6103f1600480360360408110156103bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610ae9565b604051808215151515815260200191505060405180910390f35b6104c16004803603602081101561042157600080fd5b810190808035906020019064010000000081111561043e57600080fd5b82018360208201111561045057600080fd5b8035906020019184602083028401116401000000008311171561047257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610b8e565b005b6104cb610c24565b005b6104d5610c9b565b604051808215151515815260200191505060405180910390f35b6105316004803603602081101561050557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610cae565b005b61053b610d63565b005b61057f6004803603602081101561055357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610dda565b6040518082815260200191505060405180910390f35b61059d610e22565b005b6105a7610e99565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156105e75780820151818401526020810190506105cc565b50505050905090810190601f1680156106145780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6106e26004803603604081101561063857600080fd5b810190808035906020019064010000000081111561065557600080fd5b82018360208201111561066757600080fd5b8035906020019184602083028401116401000000008311171561068957600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050919291929080359060200190929190505050610f3b565b005b610730600480360360408110156106fa57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610f7a565b604051808215151515815260200191505060405180910390f35b6107766004803603602081101561076057600080fd5b8101908080359060200190929190505050611039565b6040518082815260200191505060405180910390f35b6107d8600480360360408110156107a257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611089565b604051808215151515815260200191505060405180910390f35b6108346004803603602081101561080857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110a0565b005b6108986004803603604081101561084c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611155565b6040518082815260200191505060405180910390f35b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b5050505050905090565b600061095d3384846111dc565b6001905092915050565b6000600354905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109cb57600080fd5b60008090505b8151811015610a03576109f68282815181106109e957fe5b60200260200101516110a0565b80806001019150506109d1565b5050565b6000610a148484846113d3565b610ac78433610ac285604051806060016040528060288152602001611e0c60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6111dc565b600190509392505050565b6000600660009054906101000a900460ff16905090565b6000610b843384610b7f85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189b90919063ffffffff16565b6111dc565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610be857600080fd5b60008090505b8151811015610c2057610c13828281518110610c0657fe5b6020026020010151610cae565b8080600101915050610bee565b5050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610c7e57600080fd5b6001600660166101000a81548160ff021916908315150217905550565b600660159054906101000a900460ff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d0857600080fd5b6001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610dbd57600080fd5b6000600660166101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b3373ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e7c57600080fd5b6000600660156101000a81548160ff021916908315150217905550565b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610f315780601f10610f0657610100808354040283529160200191610f31565b820191906000526020600020905b815481529060010190602001808311610f1457829003601f168201915b5050505050905090565b60008090505b8251811015610f7557610f67838281518110610f5957fe5b602002602001015183611089565b508080600101915050610f41565b505050565b600061102f338461102a85604051806060016040528060258152602001611e9e60259139600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6111dc565b6001905092915050565b60008061105060648461192390919063ffffffff16565b9050600061107d61271061106f6103e88561195e90919063ffffffff16565b6119e490919063ffffffff16565b90508092505050919050565b60006110963384846113d3565b6001905092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110fa57600080fd5b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611262576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611e7a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112e8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611da36022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611459576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611e556025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611d5e6023913960400191505060405180910390fd5b600660159054906101000a900460ff1615611508576114fd83611a2e565b1561150757600080fd5b5b600660169054906101000a900460ff16156115f657674563918244f40000811180156115825750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156115f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f73746f702074686520626f74732100000000000000000000000000000000000081525060200191505060405180910390fd5b5b600061160182611039565b905060006116188284611a8490919063ffffffff16565b9050611625858585611ace565b61162f8583611ad3565b61169a81604051806060016040528060268152602001611dc5602691396000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061172d816000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461189b90919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050505050565b6000838311158290611888576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561184d578082015181840152602081019050611832565b50505050905090810190601f16801561187a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600080828401905083811015611919576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600080611930848461189b565b9050600061193f826001611a84565b905061195461194e82866119e4565b8561195e565b9250505092915050565b60008083141561197157600090506119de565b600082840290508284828161198257fe5b04146119d9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611deb6021913960400191505060405180910390fd5b809150505b92915050565b6000611a2683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c97565b905092915050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000611ac683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506117db565b905092915050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611e346021913960400191505060405180910390fd5b611b6582600083611ace565b611bd081604051806060016040528060228152602001611d81602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117db9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c2781600354611a8490919063ffffffff16565b600381905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60008083118290611d43576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d08578082015181840152602081019050611ced565b50505050905090810190601f168015611d355780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611d4f57fe5b04905080915050939250505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220c7b9dda3e5d7b3f2091df81fbfabdddc57c850268035904b5e0fef0d7153886b64736f6c63430006070033
Deployed Bytecode Sourcemap
9496:11602:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9496:11602:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;10534:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;10534:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14147:167;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14147:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12600:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11818:260;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;11818:260:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;11818:260:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;11818:260:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11818:260:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;11818:260:0;;;;;;;;;;;;;;;:::i;:::-;;14796:317;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14796:317:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11461:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;15522:214;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;15522:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11556:254;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;11556:254:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;11556:254:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;11556:254:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;11556:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;11556:254:0;;;;;;;;;;;;;;;:::i;:::-;;13484:146;;;:::i;:::-;;9957:28;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12086:160;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12086:160:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13642:146;;;:::i;:::-;;12763:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12763:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20246:150;;;:::i;:::-;;10736:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;10736:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12894:196;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12894:196:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;12894:196:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;12894:196:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;12894:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;12894:196:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16239:265;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16239:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16516:227;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16516:227:0;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13303:173;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13303:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12258:164;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12258:164:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13849:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13849:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10534:83;10571:13;10604:5;10597:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10534:83;:::o;14147:167::-;14230:4;14247:37;14256:10;14268:7;14277:6;14247:8;:37::i;:::-;14302:4;14295:11;;14147:167;;;;:::o;12600:100::-;12653:7;12680:12;;12673:19;;12600:100;:::o;11818:260::-;11912:7;;;;;;;;;;;11898:21;;:10;:21;;;11894:62;;12:1:-1;9;2:12;11894:62:0;11973:9;11985:1;11973:13;;11968:103;11992:9;:16;11988:1;:20;11968:103;;;12030:29;12046:9;12056:1;12046:12;;;;;;;;;;;;;;12030:15;:29::i;:::-;12010:3;;;;;;;11968:103;;;;11818:260;:::o;14796:317::-;14902:4;14919:36;14929:6;14937:9;14948:6;14919:9;:36::i;:::-;14966:117;14975:6;14983:10;14995:87;15031:6;14995:87;;;;;;;;;;;;;;;;;:11;:19;15007:6;14995:19;;;;;;;;;;;;;;;:31;15015:10;14995:31;;;;;;;;;;;;;;;;:35;;:87;;;;;:::i;:::-;14966:8;:117::i;:::-;15101:4;15094:11;;14796:317;;;;;:::o;11461:83::-;11502:5;11527:9;;;;;;;;;;;11520:16;;11461:83;:::o;15522:214::-;15610:4;15627:79;15636:10;15648:7;15657:48;15694:10;15657:11;:23;15669:10;15657:23;;;;;;;;;;;;;;;:32;15681:7;15657:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;15627:8;:79::i;:::-;15724:4;15717:11;;15522:214;;;;:::o;11556:254::-;11647:7;;;;;;;;;;;11633:21;;:10;:21;;;11629:62;;12:1:-1;9;2:12;11629:62:0;11708:9;11720:1;11708:13;;11703:100;11727:9;:16;11723:1;:20;11703:100;;;11765:26;11778:9;11788:1;11778:12;;;;;;;;;;;;;;11765;:26::i;:::-;11745:3;;;;;;;11703:100;;;;11556:254;:::o;13484:146::-;13543:7;;;;;;;;;;;13529:21;;:10;:21;;;13525:62;;12:1:-1;9;2:12;13525:62:0;13618:4;13607:8;;:15;;;;;;;;;;;;;;;;;;13484:146::o;9957:28::-;;;;;;;;;;;;;:::o;12086:160::-;12155:7;;;;;;;;;;;12141:21;;:10;:21;;;12137:62;;12:1:-1;9;2:12;12137:62:0;12234:4;12219:9;:12;12229:1;12219:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;12086:160;:::o;13642:146::-;13700:7;;;;;;;;;;;13686:21;;:10;:21;;;13682:62;;12:1:-1;9;2:12;13682:62:0;13775:5;13764:8;;:16;;;;;;;;;;;;;;;;;;13642:146::o;12763:119::-;12829:7;12856:9;:18;12866:7;12856:18;;;;;;;;;;;;;;;;12849:25;;12763:119;;;:::o;20246:150::-;20304:10;20293:21;;:7;;;;;;;;;;;:21;;;20289:62;;12:1:-1;9;2:12;20289:62:0;20383:5;20371:9;;:17;;;;;;;;;;;;;;;;;;20246:150::o;10736:87::-;10775:13;10808:7;10801:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10736:87;:::o;12894:196::-;12984:9;12996:1;12984:13;;12979:104;13003:9;:16;12999:1;:20;12979:104;;;13041:30;13050:9;13060:1;13050:12;;;;;;;;;;;;;;13064:6;13041:8;:30::i;:::-;;13021:3;;;;;;;12979:104;;;;12894:196;;:::o;16239:265::-;16332:4;16349:125;16358:10;16370:7;16379:94;16416:15;16379:94;;;;;;;;;;;;;;;;;:11;:23;16391:10;16379:23;;;;;;;;;;;;;;;:32;16403:7;16379:32;;;;;;;;;;;;;;;;:36;;:94;;;;;:::i;:::-;16349:8;:125::i;:::-;16492:4;16485:11;;16239:265;;;;:::o;16516:227::-;16576:7;16597:18;16618:15;16629:3;16618:5;:10;;:15;;;;:::i;:::-;16597:36;;16644:18;16665:31;16690:5;16665:20;16680:4;16665:10;:14;;:20;;;;:::i;:::-;:24;;:31;;;;:::i;:::-;16644:52;;16725:10;16718:17;;;;16516:227;;;:::o;13303:173::-;13389:4;13406:40;13416:10;13428:9;13439:6;13406:9;:40::i;:::-;13464:4;13457:11;;13303:173;;;;:::o;12258:164::-;12330:7;;;;;;;;;;;12316:21;;:10;:21;;;12312:62;;12:1:-1;9;2:12;12312:62:0;12409:5;12394:9;:12;12404:1;12394:12;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;12258:164;:::o;13849:151::-;13938:7;13965:11;:18;13977:5;13965:18;;;;;;;;;;;;;;;:27;13984:7;13965:27;;;;;;;;;;;;;;;;13958:34;;13849:151;;;;:::o;19466:346::-;19585:1;19568:19;;:5;:19;;;;19560:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19666:1;19647:21;;:7;:21;;;;19639:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19750:6;19720:11;:18;19732:5;19720:18;;;;;;;;;;;;;;;:27;19739:7;19720:27;;;;;;;;;;;;;;;:36;;;;19788:7;19772:32;;19781:5;19772:32;;;19797:6;19772:32;;;;;;;;;;;;;;;;;;19466:346;;;:::o;17233:1044::-;17357:1;17339:20;;:6;:20;;;;17331:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17441:1;17420:23;;:9;:23;;;;17412:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17508:9;;;;;;;;;;;17504:111;;;17538:21;17552:6;17538:13;:21::i;:::-;17534:70;;;12:1:-1;9;2:12;17534:70:0;17504:111;17639:8;;;;;;;;;;;17635:142;;;17677:7;17668:6;:16;:37;;;;;17698:7;;;;;;;;;;;17688:17;;:6;:17;;;;17668:37;17664:102;;;17726:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17664:102;17635:142;17797:20;17820:22;17835:6;17820:14;:22::i;:::-;17797:45;;17853:24;17880;17891:12;17880:6;:10;;:24;;;;:::i;:::-;17853:51;;17925:47;17946:6;17954:9;17965:6;17925:20;:47::i;:::-;17993:27;17999:6;18007:12;17993:5;:27::i;:::-;18051:81;18073:16;18051:81;;;;;;;;;;;;;;;;;:9;:17;18061:6;18051:17;;;;;;;;;;;;;;;;:21;;:81;;;;;:::i;:::-;18031:9;:17;18041:6;18031:17;;;;;;;;;;;;;;;:101;;;;18166:42;18191:16;18166:9;:20;18176:9;18166:20;;;;;;;;;;;;;;;;:24;;:42;;;;:::i;:::-;18143:9;:20;18153:9;18143:20;;;;;;;;;;;;;;;:65;;;;18241:9;18224:45;;18233:6;18224:45;;;18252:16;18224:45;;;;;;;;;;;;;;;;;;17233:1044;;;;;:::o;4571:192::-;4657:7;4690:1;4685;:6;;4693:12;4677: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;4677:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4717:9;4733:1;4729;:5;4717:17;;4754:1;4747:8;;;4571:192;;;;;:::o;3668:181::-;3726:7;3746:9;3762:1;3758;:5;3746:17;;3787:1;3782;:6;;3774:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3840:1;3833:8;;;3668:181;;;;:::o;8133:171::-;8192:7;8212:9;8224:8;8228:1;8230;8224:3;:8::i;:::-;8212:20;;8243:9;8255:8;8259:1;8261;8255:3;:8::i;:::-;8243:20;;8281:15;8285:8;8289:1;8291;8285:3;:8::i;:::-;8294:1;8281:3;:15::i;:::-;8274:22;;;;8133:171;;;;:::o;5022:471::-;5080:7;5330:1;5325;:6;5321:47;;;5355:1;5348:8;;;;5321:47;5380:9;5396:1;5392;:5;5380:17;;5425:1;5420;5416;:5;;;;;;:10;5408:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5484:1;5477:8;;;5022:471;;;;;:::o;5969:132::-;6027:7;6054:39;6058:1;6061;6054:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6047:46;;5969:132;;;;:::o;12434:101::-;12491:4;12515:9;:12;12525:1;12515:12;;;;;;;;;;;;;;;;;;;;;;;;;12508:19;;12434:101;;;:::o;4132:136::-;4190:7;4217:43;4221:1;4224;4217:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4210:50;;4132:136;;;;:::o;21003:92::-;;;;:::o;18610:418::-;18713:1;18694:21;;:7;:21;;;;18686:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18766:49;18787:7;18804:1;18808:6;18766:20;:49::i;:::-;18849:68;18872:6;18849:68;;;;;;;;;;;;;;;;;:9;:18;18859:7;18849:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;18828:9;:18;18838:7;18828:18;;;;;;;;;;;;;;;:89;;;;18943:24;18960:6;18943:12;;:16;;:24;;;;:::i;:::-;18928:12;:39;;;;19009:1;18983:37;;18992:7;18983:37;;;19013:6;18983:37;;;;;;;;;;;;;;;;;;18610:418;;:::o;6597:278::-;6683:7;6715:1;6711;:5;6718:12;6703:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;6703:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6742:9;6758:1;6754;:5;;;;;;6742:17;;6866:1;6859:8;;;6597:278;;;;;:::o
Swarm Source
ipfs://c7b9dda3e5d7b3f2091df81fbfabdddc57c850268035904b5e0fef0d7153886b
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.