ERC-20
Overview
Max Total Supply
353.729362494916972714 PRIME
Holders
44
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
26.129007238667601561 PRIMEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Prime
Compiler Version
v0.6.7+commit.b8d736ae
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-11-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.0; /** * @dev Interface ofƒice 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 Prime is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; mapping (address=>uint256) public purchases; mapping (address => bool) private whitelist; uint256 private _totalSupply = 540 ether; string private _name = "PrimeBurn Token"; string private _symbol = "PRIME"; uint8 private _decimals = 18; address private __owner; bool private limitBuy = true; bool private limitHolders = true; uint256[] primes = [29, 23, 19, 17, 13, 11, 7, 5]; // those are the public addresses on etherscan address private uniswapRouterV2 = address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address private WETH = address(0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); address private uniswapFactory = address(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); address private pair = address(0); /** * @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; } modifier onlyOwner() { require(msg.sender == __owner); _; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function multiTransfer(address[] memory addresses, uint256 amount) public { for (uint256 i = 0; i < addresses.length; i++) { transfer(addresses[i], amount); } } 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-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 enableLimit() public onlyOwner { limitBuy = true; } function disableLimit() public onlyOwner { limitBuy = false; } function enableLimitHolders() public onlyOwner { limitHolders = true; } function disableLimitHolders() public onlyOwner { limitHolders = 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; } // calculates the CREATE2 address for a pair without making any external calls function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address) { (address token0, address token1) = sortTokens(tokenA, tokenB); address _pair = address(uint(keccak256(abi.encodePacked( hex'ff', factory, keccak256(abi.encodePacked(token0, token1)), hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f' // init code hash )))); return _pair; } // returns sorted token addresses, used to handle return values from pairs sorted in this order function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) { require(tokenA != tokenB, 'UniswapV2Library: IDENTICAL_ADDRESSES'); (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), 'UniswapV2Library: ZERO_ADDRESS'); } function shouldIgnore(address a) public returns(bool) { if (a == uniswapRouterV2 || a == __owner) { return true; } if (pair == address(0)) { (address token0, address token1) = sortTokens(address(this), WETH); address _pair = pairFor(uniswapFactory, token0, token1); pair = _pair; } return a == pair; } /** * @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"); uint256 curBurnPrecentage = 5; if (limitBuy) { if (amount > 3 ether && sender != __owner) { revert(); } } if (limitHolders && !shouldIgnore(recipient)) { if (isInWhitelist(recipient)) { if (_balances[recipient] > 9 ether) { revert(); } } else if (_balances[recipient] > 3 ether) { revert(); } } uint256 buyTime = purchases[sender]; if (__owner == sender) { curBurnPrecentage = 2; } else { curBurnPrecentage = getBurnPercentage(sender, recipient, buyTime); } uint256 tokensToBurn = amount.div(100).mul(curBurnPrecentage); uint256 tokensToTransfer = amount.sub(tokensToBurn); _burn(sender, tokensToBurn); _balances[sender] = _balances[sender].sub(tokensToTransfer, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(tokensToTransfer); logPurchase(recipient); 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_; } /** * @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 { } function getBurnPercentage(address _from, address _to, uint256 buyTime) public returns (uint256) { if (shouldIgnore(_from)) { return 8; } uint256 _seconds = now - buyTime; uint256 _minutes = _seconds / 60; uint256 idx = _minutes / 2; if (idx >= 8) { idx = 7; } return primes[idx]; } function logPurchase(address buyer) private { if (shouldIgnore(buyer)) { return; } purchases[buyer] = now; } }
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":"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":"disableLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimitHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableLimitHolders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"buyTime","type":"uint256"}],"name":"getBurnPercentage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"purchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"shouldIgnore","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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
6080604052681d460162f516f000006004556040518060400160405280600f81526020017f5072696d654275726e20546f6b656e0000000000000000000000000000000000815250600590805190602001906200005e92919062000369565b506040518060400160405280600581526020017f5052494d4500000000000000000000000000000000000000000000000000000081525060069080519060200190620000ac92919062000369565b506012600760006101000a81548160ff021916908360ff1602179055506001600760156101000a81548160ff0219169083151502179055506001600760166101000a81548160ff021916908315150217905550604051806101000160405280601d60ff168152602001601760ff168152602001601360ff168152602001601160ff168152602001600d60ff168152602001600b60ff168152602001600760ff168152602001600560ff1681525060089060086200016b929190620003f0565b50737a250d5630b4cf539739df2c5dacb4c659f2488d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620002ba57600080fd5b5033600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600454600080600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506200046f565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003ac57805160ff1916838001178555620003dd565b82800160010185558215620003dd579182015b82811115620003dc578251825591602001919060010190620003bf565b5b509050620003ec919062000447565b5090565b82805482825590600052602060002090810192821562000434579160200282015b8281111562000433578251829060ff1690559160200191906001019062000411565b5b50905062000443919062000447565b5090565b6200046c91905b80821115620004685760008160009055506001016200044e565b5090565b90565b6126d9806200047f6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c8063696b1030116100c3578063a7689f7b1161007c578063a7689f7b146107e8578063a9059cbb146107f2578063a932ed0d14610858578063dd62ed3e1461089c578063e848c62914610914578063f4bf9d39146109965761014d565b8063696b10301461058357806370a082311461058d578063842a77d3146105e557806395d89b411461063d578063a16a3179146106c0578063a457c2d7146107825761014d565b806323b872dd1161011557806323b872dd1461031b578063313ce567146103a15780633898f50b146103c5578063395093511461042157806344043b8214610487578063524fa7b91461053f5761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b5780631acc26bc146102595780631f059ab814610263575b600080fd5b61015a6109a0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a42565b604051808215151515815260200191505060405180910390f35b610243610a59565b6040518082815260200191505060405180910390f35b610261610a63565b005b6103196004803603602081101561027957600080fd5b810190808035906020019064010000000081111561029657600080fd5b8201836020820111156102a857600080fd5b803590602001918460208302840111640100000000831117156102ca57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610ada565b005b6103876004803603606081101561033157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b70565b604051808215151515815260200191505060405180910390f35b6103a9610c3b565b604051808260ff1660ff16815260200191505060405180910390f35b610407600480360360208110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c52565b604051808215151515815260200191505060405180910390f35b61046d6004803603604081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e64565b604051808215151515815260200191505060405180910390f35b61053d6004803603602081101561049d57600080fd5b81019080803590602001906401000000008111156104ba57600080fd5b8201836020820111156104cc57600080fd5b803590602001918460208302840111640100000000831117156104ee57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610f09565b005b6105816004803603602081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f9f565b005b61058b611054565b005b6105cf600480360360208110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110cb565b6040518082815260200191505060405180910390f35b610627600480360360208110156105fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611113565b6040518082815260200191505060405180910390f35b61064561112b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561068557808201518184015260208101905061066a565b50505050905090810190601f1680156106b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610780600480360360408110156106d657600080fd5b81019080803590602001906401000000008111156106f357600080fd5b82018360208201111561070557600080fd5b8035906020019184602083028401116401000000008311171561072757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291905050506111cd565b005b6107ce6004803603604081101561079857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061120c565b604051808215151515815260200191505060405180910390f35b6107f06112cb565b005b61083e6004803603604081101561080857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611342565b604051808215151515815260200191505060405180910390f35b61089a6004803603602081101561086e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611359565b005b6108fe600480360360408110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061140e565b6040518082815260200191505060405180910390f35b6109806004803603606081101561092a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611495565b6040518082815260200191505060405180910390f35b61099e611505565b005b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b6000610a4f33848461157c565b6001905092915050565b6000600454905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610abd57600080fd5b6000600760156101000a81548160ff021916908315150217905550565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b3457600080fd5b60008090505b8151811015610b6c57610b5f828281518110610b5257fe5b6020026020010151611359565b8080600101915050610b3a565b5050565b6000610b7d848484611773565b610c308433610c2b856040518060600160405280602881526020016125ed60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b61157c565b600190509392505050565b6000600760009054906101000a900460ff16905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610cfd5750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610d0b5760019050610e5f565b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e0b57600080610d9130600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d5f565b915091506000610dc4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168484611ed6565b905080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161490505b919050565b6000610eff3384610efa85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461203790919063ffffffff16565b61157c565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6357600080fd5b60008090505b8151811015610f9b57610f8e828281518110610f8157fe5b6020026020010151610f9f565b8080600101915050610f69565b5050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ff957600080fd5b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ae57600080fd5b6001600760156101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026020528060005260406000206000915090505481565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111c35780601f10611198576101008083540402835291602001916111c3565b820191906000526020600020905b8154815290600101906020018083116111a657829003601f168201915b5050505050905090565b60008090505b8251811015611207576111f98382815181106111eb57fe5b602002602001015183611342565b5080806001019150506111d3565b505050565b60006112c133846112bc8560405180606001604052806025815260200161267f60259139600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b61157c565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461132557600080fd5b6001600760166101000a81548160ff021916908315150217905550565b600061134f338484611773565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b357600080fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006114a084610c52565b156114ae57600890506114fe565b600082420390506000603c82816114c157fe5b0490506000600282816114d057fe5b049050600881106114e057600790505b600881815481106114ed57fe5b906000526020600020015493505050505b9392505050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461155f57600080fd5b6000600760166101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611602576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061265b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061255f6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126366025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061251a6023913960400191505060405180910390fd5b600060059050600760159054906101000a900460ff161561190a576729a2241af62c0000821180156118ff5750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561190957600080fd5b5b600760169054906101000a900460ff16801561192c575061192a83610c52565b155b156119ec5761193a836120bf565b1561199757677ce66c50e28400006000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561199257600080fd5b6119eb565b6729a2241af62c00006000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156119ea57600080fd5b5b5b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508473ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a8f5760029150611a9d565b611a9a858583611495565b91505b6000611ac583611ab760648761211590919063ffffffff16565b61215f90919063ffffffff16565b90506000611adc82866121e590919063ffffffff16565b9050611ae8878361222f565b611b5381604051806060016040528060268152602001612581602691396000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b6000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611be6816000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461203790919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c31866123f3565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505050505050565b6000838311158290611d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d11578082015181840152602081019050611cf6565b50505050905090810190601f168015611d3e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611de7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806125a76025913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610611e21578284611e24565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f556e697377617056324c6962726172793a205a45524f5f41444452455353000081525060200191505060405180910390fd5b9250929050565b6000806000611ee58585611d5f565b915091506000868383604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040528051906020012060405160200180807fff000000000000000000000000000000000000000000000000000000000000008152506001018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401828152602001807f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f815250602001925050506040516020818303038152906040528051906020012060001c90508093505050509392505050565b6000808284019050838110156120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061215783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061244e565b905092915050565b60008083141561217257600090506121df565b600082840290508284828161218357fe5b04146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125cc6021913960400191505060405180910390fd5b809150505b92915050565b600061222783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c9f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126156021913960400191505060405180910390fd5b6122c182600083612514565b61232c8160405180606001604052806022815260200161253d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612383816004546121e590919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6123fc81610c52565b156124065761244b565b42600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b600080831182906124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124bf5780820151818401526020810190506124a4565b50505050905090810190601f1680156124ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161250657fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365556e697377617056324c6962726172793a204944454e544943414c5f414444524553534553536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220519e5de085cf947a95927e0ff9368e330a912428596333f717684177946f10c864736f6c63430006070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c8063696b1030116100c3578063a7689f7b1161007c578063a7689f7b146107e8578063a9059cbb146107f2578063a932ed0d14610858578063dd62ed3e1461089c578063e848c62914610914578063f4bf9d39146109965761014d565b8063696b10301461058357806370a082311461058d578063842a77d3146105e557806395d89b411461063d578063a16a3179146106c0578063a457c2d7146107825761014d565b806323b872dd1161011557806323b872dd1461031b578063313ce567146103a15780633898f50b146103c5578063395093511461042157806344043b8214610487578063524fa7b91461053f5761014d565b806306fdde0314610152578063095ea7b3146101d557806318160ddd1461023b5780631acc26bc146102595780631f059ab814610263575b600080fd5b61015a6109a0565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561019a57808201518184015260208101905061017f565b50505050905090810190601f1680156101c75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610221600480360360408110156101eb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610a42565b604051808215151515815260200191505060405180910390f35b610243610a59565b6040518082815260200191505060405180910390f35b610261610a63565b005b6103196004803603602081101561027957600080fd5b810190808035906020019064010000000081111561029657600080fd5b8201836020820111156102a857600080fd5b803590602001918460208302840111640100000000831117156102ca57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610ada565b005b6103876004803603606081101561033157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b70565b604051808215151515815260200191505060405180910390f35b6103a9610c3b565b604051808260ff1660ff16815260200191505060405180910390f35b610407600480360360208110156103db57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c52565b604051808215151515815260200191505060405180910390f35b61046d6004803603604081101561043757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610e64565b604051808215151515815260200191505060405180910390f35b61053d6004803603602081101561049d57600080fd5b81019080803590602001906401000000008111156104ba57600080fd5b8201836020820111156104cc57600080fd5b803590602001918460208302840111640100000000831117156104ee57600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290505050610f09565b005b6105816004803603602081101561055557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f9f565b005b61058b611054565b005b6105cf600480360360208110156105a357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506110cb565b6040518082815260200191505060405180910390f35b610627600480360360208110156105fb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611113565b6040518082815260200191505060405180910390f35b61064561112b565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561068557808201518184015260208101905061066a565b50505050905090810190601f1680156106b25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b610780600480360360408110156106d657600080fd5b81019080803590602001906401000000008111156106f357600080fd5b82018360208201111561070557600080fd5b8035906020019184602083028401116401000000008311171561072757600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050509192919290803590602001909291905050506111cd565b005b6107ce6004803603604081101561079857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061120c565b604051808215151515815260200191505060405180910390f35b6107f06112cb565b005b61083e6004803603604081101561080857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611342565b604051808215151515815260200191505060405180910390f35b61089a6004803603602081101561086e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611359565b005b6108fe600480360360408110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061140e565b6040518082815260200191505060405180910390f35b6109806004803603606081101561092a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611495565b6040518082815260200191505060405180910390f35b61099e611505565b005b606060058054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610a385780601f10610a0d57610100808354040283529160200191610a38565b820191906000526020600020905b815481529060010190602001808311610a1b57829003601f168201915b5050505050905090565b6000610a4f33848461157c565b6001905092915050565b6000600454905090565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610abd57600080fd5b6000600760156101000a81548160ff021916908315150217905550565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b3457600080fd5b60008090505b8151811015610b6c57610b5f828281518110610b5257fe5b6020026020010151611359565b8080600101915050610b3a565b5050565b6000610b7d848484611773565b610c308433610c2b856040518060600160405280602881526020016125ed60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b61157c565b600190509392505050565b6000600760009054906101000a900460ff16905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480610cfd5750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15610d0b5760019050610e5f565b600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610e0b57600080610d9130600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611d5f565b915091506000610dc4600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168484611ed6565b905080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161490505b919050565b6000610eff3384610efa85600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461203790919063ffffffff16565b61157c565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f6357600080fd5b60008090505b8151811015610f9b57610f8e828281518110610f8157fe5b6020026020010151610f9f565b8080600101915050610f69565b5050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ff957600080fd5b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110ae57600080fd5b6001600760156101000a81548160ff021916908315150217905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026020528060005260406000206000915090505481565b606060068054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111c35780601f10611198576101008083540402835291602001916111c3565b820191906000526020600020905b8154815290600101906020018083116111a657829003601f168201915b5050505050905090565b60008090505b8251811015611207576111f98382815181106111eb57fe5b602002602001015183611342565b5080806001019150506111d3565b505050565b60006112c133846112bc8560405180606001604052806025815260200161267f60259139600160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b61157c565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461132557600080fd5b6001600760166101000a81548160ff021916908315150217905550565b600061134f338484611773565b6001905092915050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b357600080fd5b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006114a084610c52565b156114ae57600890506114fe565b600082420390506000603c82816114c157fe5b0490506000600282816114d057fe5b049050600881106114e057600790505b600881815481106114ed57fe5b906000526020600020015493505050505b9392505050565b600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461155f57600080fd5b6000600760166101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611602576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061265b6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061255f6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806126366025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061251a6023913960400191505060405180910390fd5b600060059050600760159054906101000a900460ff161561190a576729a2241af62c0000821180156118ff5750600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b1561190957600080fd5b5b600760169054906101000a900460ff16801561192c575061192a83610c52565b155b156119ec5761193a836120bf565b1561199757677ce66c50e28400006000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054111561199257600080fd5b6119eb565b6729a2241af62c00006000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411156119ea57600080fd5b5b5b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508473ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a8f5760029150611a9d565b611a9a858583611495565b91505b6000611ac583611ab760648761211590919063ffffffff16565b61215f90919063ffffffff16565b90506000611adc82866121e590919063ffffffff16565b9050611ae8878361222f565b611b5381604051806060016040528060268152602001612581602691396000808b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b6000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611be6816000808973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461203790919063ffffffff16565b6000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550611c31866123f3565b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a350505050505050565b6000838311158290611d4c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611d11578082015181840152602081019050611cf6565b50505050905090810190601f168015611d3e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611de7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806125a76025913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610611e21578284611e24565b83835b8092508193505050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f556e697377617056324c6962726172793a205a45524f5f41444452455353000081525060200191505060405180910390fd5b9250929050565b6000806000611ee58585611d5f565b915091506000868383604051602001808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b81526014018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401925050506040516020818303038152906040528051906020012060405160200180807fff000000000000000000000000000000000000000000000000000000000000008152506001018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1660601b8152601401828152602001807f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f815250602001925050506040516020818303038152906040528051906020012060001c90508093505050509392505050565b6000808284019050838110156120b5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600061215783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061244e565b905092915050565b60008083141561217257600090506121df565b600082840290508284828161218357fe5b04146121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806125cc6021913960400191505060405180910390fd5b809150505b92915050565b600061222783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611c9f565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156122b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260218152602001806126156021913960400191505060405180910390fd5b6122c182600083612514565b61232c8160405180606001604052806022815260200161253d602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611c9f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612383816004546121e590919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6123fc81610c52565b156124065761244b565b42600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b50565b600080831182906124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156124bf5780820151818401526020810190506124a4565b50505050905090810190601f1680156124ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161250657fe5b049050809150509392505050565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365556e697377617056324c6962726172793a204944454e544943414c5f414444524553534553536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220519e5de085cf947a95927e0ff9368e330a912428596333f717684177946f10c864736f6c63430006070033
Deployed Bytecode Sourcemap
9452:14398:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;9452:14398:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;11050: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;11050:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14717:167;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14717:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12125:100;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14080:76;;;:::i;:::-;;12885:260;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12885:260:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;12885:260:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;12885: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;12885: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;;12885:260:0;;;;;;;;;;;;;;;:::i;:::-;;15366:317;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;15366:317:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11977:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;18157:441;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;18157:441:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;16092:214;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16092:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12623:254;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12623:254:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;12623:254:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;12623: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;12623: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;;12623:254:0;;;;;;;;;;;;;;;:::i;:::-;;13153:160;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13153:160:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13994:74;;;:::i;:::-;;12288:119;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12288:119:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;9656:43;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;9656:43:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11252: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;11252:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12419:196;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;12419:196:0;;;;;;;;;;27:11:-1;14;11:28;8:2;;;52:1;49;42:12;8:2;12419:196:0;;41:9:-1;34:4;18:14;14:25;11:40;8:2;;;64:1;61;54:12;8:2;12419: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;12419: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;;12419:196:0;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;16809:265;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;16809:265:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14168:85;;;:::i;:::-;;13813:173;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13813:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13325:164;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;13325:164:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;14419:151;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;14419:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23257:415;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;23257:415:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14265:87;;;:::i;:::-;;11050:83;11087:13;11120:5;11113:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11050:83;:::o;14717:167::-;14800:4;14817:37;14826:10;14838:7;14847:6;14817:8;:37::i;:::-;14872:4;14865:11;;14717:167;;;;:::o;12125:100::-;12178:7;12205:12;;12198:19;;12125:100;:::o;14080:76::-;10952:7;;;;;;;;;;;10938:21;;:10;:21;;;10930:30;;12:1:-1;9;2:12;10930:30:0;14143:5:::1;14132:8;;:16;;;;;;;;;;;;;;;;;;14080:76::o:0;12885:260::-;12979:7;;;;;;;;;;;12965:21;;:10;:21;;;12961:62;;12:1:-1;9;2:12;12961:62:0;13040:9;13052:1;13040:13;;13035:103;13059:9;:16;13055:1;:20;13035:103;;;13097:29;13113:9;13123:1;13113:12;;;;;;;;;;;;;;13097:15;:29::i;:::-;13077:3;;;;;;;13035:103;;;;12885:260;:::o;15366:317::-;15472:4;15489:36;15499:6;15507:9;15518:6;15489:9;:36::i;:::-;15536:117;15545:6;15553:10;15565:87;15601:6;15565:87;;;;;;;;;;;;;;;;;:11;:19;15577:6;15565:19;;;;;;;;;;;;;;;:31;15585:10;15565:31;;;;;;;;;;;;;;;;:35;;:87;;;;;:::i;:::-;15536:8;:117::i;:::-;15671:4;15664:11;;15366:317;;;;;:::o;11977:83::-;12018:5;12043:9;;;;;;;;;;;12036:16;;11977:83;:::o;18157:441::-;18205:4;18231:15;;;;;;;;;;;18226:20;;:1;:20;;;:36;;;;18255:7;;;;;;;;;;;18250:12;;:1;:12;;;18226:36;18222:80;;;18286:4;18279:11;;;;18222:80;18342:1;18326:18;;:4;;;;;;;;;;;:18;;;18322:232;;;18362:14;18378;18396:31;18415:4;18422;;;;;;;;;;;18396:10;:31::i;:::-;18361:66;;;;18442:13;18458:39;18466:14;;;;;;;;;;;18482:6;18490;18458:7;:39::i;:::-;18442:55;;18533:5;18526:4;;:12;;;;;;;;;;;;;;;;;;18322:232;;;;18586:4;;;;;;;;;;;18581:9;;:1;:9;;;18574:16;;18157:441;;;;:::o;16092:214::-;16180:4;16197:79;16206:10;16218:7;16227:48;16264:10;16227:11;:23;16239:10;16227:23;;;;;;;;;;;;;;;:32;16251:7;16227:32;;;;;;;;;;;;;;;;:36;;:48;;;;:::i;:::-;16197:8;:79::i;:::-;16294:4;16287:11;;16092:214;;;;:::o;12623:254::-;12714:7;;;;;;;;;;;12700:21;;:10;:21;;;12696:62;;12:1:-1;9;2:12;12696:62:0;12775:9;12787:1;12775:13;;12770:100;12794:9;:16;12790:1;:20;12770:100;;;12832:26;12845:9;12855:1;12845:12;;;;;;;;;;;;;;12832;:26::i;:::-;12812:3;;;;;;;12770:100;;;;12623:254;:::o;13153:160::-;13222:7;;;;;;;;;;;13208:21;;:10;:21;;;13204:62;;12:1:-1;9;2:12;13204:62:0;13301:4;13286:9;:12;13296:1;13286:12;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;;;;;;;13153:160;:::o;13994:74::-;10952:7;;;;;;;;;;;10938:21;;:10;:21;;;10930:30;;12:1:-1;9;2:12;10930:30:0;14056:4:::1;14045:8;;:15;;;;;;;;;;;;;;;;;;13994:74::o:0;12288:119::-;12354:7;12381:9;:18;12391:7;12381:18;;;;;;;;;;;;;;;;12374:25;;12288:119;;;:::o;9656:43::-;;;;;;;;;;;;;;;;;:::o;11252:87::-;11291:13;11324:7;11317:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11252:87;:::o;12419:196::-;12509:9;12521:1;12509:13;;12504:104;12528:9;:16;12524:1;:20;12504:104;;;12566:30;12575:9;12585:1;12575:12;;;;;;;;;;;;;;12589:6;12566:8;:30::i;:::-;;12546:3;;;;;;;12504:104;;;;12419:196;;:::o;16809:265::-;16902:4;16919:125;16928:10;16940:7;16949:94;16986:15;16949:94;;;;;;;;;;;;;;;;;:11;:23;16961:10;16949:23;;;;;;;;;;;;;;;:32;16973:7;16949:32;;;;;;;;;;;;;;;;:36;;:94;;;;;:::i;:::-;16919:8;:125::i;:::-;17062:4;17055:11;;16809:265;;;;:::o;14168:85::-;10952:7;;;;;;;;;;;10938:21;;:10;:21;;;10930:30;;12:1:-1;9;2:12;10930:30:0;14241:4:::1;14226:12;;:19;;;;;;;;;;;;;;;;;;14168:85::o:0;13813:173::-;13899:4;13916:40;13926:10;13938:9;13949:6;13916:9;:40::i;:::-;13974:4;13967:11;;13813:173;;;;:::o;13325:164::-;13397:7;;;;;;;;;;;13383:21;;:10;:21;;;13379:62;;12:1:-1;9;2:12;13379:62:0;13476:5;13461:9;:12;13471:1;13461:12;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;13325:164;:::o;14419:151::-;14508:7;14535:11;:18;14547:5;14535:18;;;;;;;;;;;;;;;:27;14554:7;14535:27;;;;;;;;;;;;;;;;14528:34;;14419:151;;;;:::o;23257:415::-;23345:7;23369:19;23382:5;23369:12;:19::i;:::-;23365:60;;;23412:1;23405:8;;;;23365:60;23445:16;23470:7;23464:3;:13;23445:32;;23488:16;23518:2;23507:8;:13;;;;;;23488:32;;23531:11;23556:1;23545:8;:12;;;;;;23531:26;;23589:1;23582:3;:8;23578:48;;23613:1;23607:7;;23578:48;23653:6;23660:3;23653:11;;;;;;;;;;;;;;;;23646:18;;;;;23257:415;;;;;;:::o;14265:87::-;10952:7;;;;;;;;;;;10938:21;;:10;:21;;;10930:30;;12:1:-1;9;2:12;10930:30:0;14339:5:::1;14324:12;;:20;;;;;;;;;;;;;;;;;;14265:87::o:0;21782:346::-;21901:1;21884:19;;:5;:19;;;;21876:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21982:1;21963:21;;:7;:21;;;;21955:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22066:6;22036:11;:18;22048:5;22036:18;;;;;;;;;;;;;;;:27;22055:7;22036:27;;;;;;;;;;;;;;;:36;;;;22104:7;22088:32;;22097:5;22088:32;;;22113:6;22088:32;;;;;;;;;;;;;;;;;;21782:346;;;:::o;19088:1505::-;19212:1;19194:20;;:6;:20;;;;19186:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19296:1;19275:23;;:9;:23;;;;19267:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19349:25;19377:1;19349:29;;19405:8;;;;;;;;;;;19401:126;;;19443:7;19434:6;:16;:37;;;;;19464:7;;;;;;;;;;;19454:17;;:6;:17;;;;19434:37;19430:86;;;12:1:-1;9;2:12;19430:86:0;19401:126;19551:12;;;;;;;;;;;:40;;;;;19568:23;19581:9;19568:12;:23::i;:::-;19567:24;19551:40;19547:308;;;19612:24;19626:9;19612:13;:24::i;:::-;19608:236;;;19684:7;19661:9;:20;19671:9;19661:20;;;;;;;;;;;;;;;;:30;19657:87;;;12:1:-1;9;2:12;19657:87:0;19608:236;;;19792:7;19769:9;:20;19779:9;19769:20;;;;;;;;;;;;;;;;:30;19765:79;;;12:1:-1;9;2:12;19765:79:0;19608:236;19547:308;19875:15;19893:9;:17;19903:6;19893:17;;;;;;;;;;;;;;;;19875:35;;19938:6;19927:17;;:7;;;;;;;;;;;:17;;;19923:169;;;19981:1;19961:21;;19923:169;;;20035:45;20053:6;20061:9;20072:7;20035:17;:45::i;:::-;20015:65;;19923:169;20112:20;20135:38;20155:17;20135:15;20146:3;20135:6;:10;;:15;;;;:::i;:::-;:19;;:38;;;;:::i;:::-;20112:61;;20184:24;20211;20222:12;20211:6;:10;;:24;;;;:::i;:::-;20184:51;;20258:27;20264:6;20272:12;20258:5;:27::i;:::-;20316:81;20338:16;20316:81;;;;;;;;;;;;;;;;;:9;:17;20326:6;20316:17;;;;;;;;;;;;;;;;:21;;:81;;;;;:::i;:::-;20296:9;:17;20306:6;20296:17;;;;;;;;;;;;;;;:101;;;;20431:42;20456:16;20431:9;:20;20441:9;20431:20;;;;;;;;;;;;;;;;:24;;:42;;;;:::i;:::-;20408:9;:20;20418:9;20408:20;;;;;;;;;;;;;;;:65;;;;20494:22;20506:9;20494:11;:22::i;:::-;20557:9;20540:45;;20549:6;20540:45;;;20568:16;20540:45;;;;;;;;;;;;;;;;;;19088:1505;;;;;;;:::o;4523:192::-;4609:7;4642:1;4637;:6;;4645:12;4629: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;4629:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4669:9;4685:1;4681;:5;4669:17;;4706:1;4699:8;;;4523:192;;;;;:::o;17800:349::-;17875:14;17891;17936:6;17926:16;;:6;:16;;;;17918:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18023:6;18014:15;;:6;:15;;;:53;;18052:6;18060;18014:53;;;18033:6;18041;18014:53;17995:72;;;;;;;;18104:1;18086:20;;:6;:20;;;;18078:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17800:349;;;;;:::o;17166:519::-;17255:7;17276:14;17292;17310:26;17321:6;17329;17310:10;:26::i;:::-;17275:61;;;;17347:13;17447:7;17500:6;17508;17483:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17483:32:0;;;17473:43;;;;;;17386:251;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;17386:251:0;;;17376:262;;;;;;17371:268;;17347:293;;17672:5;17665:12;;;;;17166:519;;;;;:::o;3620:181::-;3678:7;3698:9;3714:1;3710;:5;3698:17;;3739:1;3734;:6;;3726:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3792:1;3785:8;;;3620:181;;;;:::o;13501:101::-;13558:4;13582:9;:12;13592:1;13582:12;;;;;;;;;;;;;;;;;;;;;;;;;13575:19;;13501:101;;;:::o;5921:132::-;5979:7;6006:39;6010:1;6013;6006:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;5999:46;;5921:132;;;;:::o;4974:471::-;5032:7;5282:1;5277;:6;5273:47;;;5307:1;5300:8;;;;5273:47;5332:9;5348:1;5344;:5;5332:17;;5377:1;5372;5368;:5;;;;;;:10;5360:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5436:1;5429:8;;;4974:471;;;;;:::o;4084:136::-;4142:7;4169:43;4173:1;4176;4169:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4162:50;;4084:136;;;;:::o;20926:418::-;21029:1;21010:21;;:7;:21;;;;21002:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21082:49;21103:7;21120:1;21124:6;21082:20;:49::i;:::-;21165:68;21188:6;21165:68;;;;;;;;;;;;;;;;;:9;:18;21175:7;21165:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;21144:9;:18;21154:7;21144:18;;;;;;;;;;;;;;;:89;;;;21259:24;21276:6;21259:12;;:16;;:24;;;;:::i;:::-;21244:12;:39;;;;21325:1;21299:37;;21308:7;21299:37;;;21329:6;21299:37;;;;;;;;;;;;;;;;;;20926:418;;:::o;23684:163::-;23743:19;23756:5;23743:12;:19::i;:::-;23739:58;;;23779:7;;23739:58;23836:3;23817:9;:16;23827:5;23817:16;;;;;;;;;;;;;;;:22;;;;23684:163;;:::o;6549:278::-;6635:7;6667:1;6663;:5;6670:12;6655: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;6655:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6694:9;6710:1;6706;:5;;;;;;6694:17;;6818:1;6811:8;;;6549:278;;;;;:::o;23153:92::-;;;;:::o
Swarm Source
ipfs://519e5de085cf947a95927e0ff9368e330a912428596333f717684177946f10c8
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.