ERC-20
Overview
Max Total Supply
42,000,000,000 ET
Holders
48
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.059042378099546181 ETValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DiscoAlien
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-15 */ // SPDX-License-Identifier: MIT // DISCO ALIEN // Website: https://www.disco-alien.com/ // Twitter: https://twitter.com/DiscoAlien_ETH // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(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 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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File contracts/PepeToken.sol pragma solidity ^0.8.0; contract DiscoAlien is Ownable, ERC20 { bool public limited; uint256 public _totalSupply = 42000000000000000000000000000; //42 billion uint256 public maxHoldingAmount = 840000000000000000000000000; //2% uint256 public minHoldingAmount = 1; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor() ERC20("DiscoAlien", "ET") { _mint(msg.sender, _totalSupply); } function setRule(bool _limited, address _uniswapV2Pair) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setRule","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":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526b87b595f2383509fe100000006007556b02b6d4eb3e906bb848000000600855600160095534801562000035575f80fd5b506040518060400160405280600a81526020017f446973636f416c69656e000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4554000000000000000000000000000000000000000000000000000000000000815250620000c2620000b66200010260201b60201c565b6200010960201b60201c565b8160049081620000d3919062000838565b508060059081620000e5919062000838565b505050620000fc33600754620001ca60201b60201c565b62000b09565b5f33905090565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200023b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000232906200097a565b60405180910390fd5b6200024e5f83836200033b60201b60201c565b8060035f828254620002619190620009c7565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254620002b69190620009c7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031c919062000a12565b60405180910390a3620003375f83836200056260201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200045c57620003a06200056760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004145750620003e56200056760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000456576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044d9062000a7b565b60405180910390fd5b6200055d565b60065f9054906101000a900460ff168015620004c45750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200055c5760085481620004df846200058e60201b60201c565b620004eb9190620009c7565b11158015620005195750600954816200050a846200058e60201b60201c565b620005169190620009c7565b10155b6200055b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005529062000ae9565b60405180910390fd5b5b5b505050565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200065057607f821691505b6020821081036200066657620006656200060b565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620006ca7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200068d565b620006d686836200068d565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007206200071a6200071484620006ee565b620006f7565b620006ee565b9050919050565b5f819050919050565b6200073b8362000700565b620007536200074a8262000727565b84845462000699565b825550505050565b5f90565b620007696200075b565b6200077681848462000730565b505050565b5b818110156200079d57620007915f826200075f565b6001810190506200077c565b5050565b601f821115620007ec57620007b6816200066c565b620007c1846200067e565b81016020851015620007d1578190505b620007e9620007e0856200067e565b8301826200077b565b50505b505050565b5f82821c905092915050565b5f6200080e5f1984600802620007f1565b1980831691505092915050565b5f620008288383620007fd565b9150826002028217905092915050565b6200084382620005d4565b67ffffffffffffffff8111156200085f576200085e620005de565b5b6200086b825462000638565b62000878828285620007a1565b5f60209050601f831160018114620008ae575f841562000899578287015190505b620008a585826200081b565b86555062000914565b601f198416620008be866200066c565b5f5b82811015620008e757848901518255600182019150602085019450602081019050620008c0565b8683101562000907578489015162000903601f891682620007fd565b8355505b6001600288020188555050505b505050505050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000962601f836200091c565b91506200096f826200092c565b602082019050919050565b5f6020820190508181035f830152620009938162000954565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620009d382620006ee565b9150620009e083620006ee565b9250828201905080821115620009fb57620009fa6200099a565b5b92915050565b62000a0c81620006ee565b82525050565b5f60208201905062000a275f83018462000a01565b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f62000a636016836200091c565b915062000a708262000a2d565b602082019050919050565b5f6020820190508181035f83015262000a948162000a55565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f62000ad16006836200091c565b915062000ade8262000a9b565b602082019050919050565b5f6020820190508181035f83015262000b028162000ac3565b9050919050565b6120238062000b175f395ff3fe608060405234801561000f575f80fd5b5060043610610140575f3560e01c806370a08231116100b657806395d89b411161007a57806395d89b4114610368578063a457c2d714610386578063a9059cbb146103b6578063dd62ed3e146103e6578063f2fde38b14610416578063f48ef4ff1461043257610140565b806370a08231146102d4578063715018a614610304578063860a32ec1461030e57806389f9a1d31461032c5780638da5cb5b1461034a57610140565b806323b872dd1161010857806323b872dd146101fe578063313ce5671461022e578063395093511461024c5780633eaaf86b1461027c57806342966c681461029a57806349bd5a5e146102b657610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f80fd5b61014c61044e565b6040516101599190611547565b60405180910390f35b61017c600480360381019061017791906115f8565b6104de565b6040516101899190611650565b60405180910390f35b6101ac60048036038101906101a79190611669565b6104fb565b6040516101b99190611650565b60405180910390f35b6101ca610518565b6040516101d791906116a3565b60405180910390f35b6101e8610521565b6040516101f591906116a3565b60405180910390f35b610218600480360381019061021391906116bc565b610527565b6040516102259190611650565b60405180910390f35b610236610619565b6040516102439190611727565b60405180910390f35b610266600480360381019061026191906115f8565b610621565b6040516102739190611650565b60405180910390f35b6102846106c8565b60405161029191906116a3565b60405180910390f35b6102b460048036038101906102af9190611740565b6106ce565b005b6102be6106db565b6040516102cb919061177a565b60405180910390f35b6102ee60048036038101906102e99190611669565b610700565b6040516102fb91906116a3565b60405180910390f35b61030c610746565b005b6103166107cd565b6040516103239190611650565b60405180910390f35b6103346107df565b60405161034191906116a3565b60405180910390f35b6103526107e5565b60405161035f919061177a565b60405180910390f35b61037061080c565b60405161037d9190611547565b60405180910390f35b6103a0600480360381019061039b91906115f8565b61089c565b6040516103ad9190611650565b60405180910390f35b6103d060048036038101906103cb91906115f8565b610982565b6040516103dd9190611650565b60405180910390f35b61040060048036038101906103fb9190611793565b61099f565b60405161040d91906116a3565b60405180910390f35b610430600480360381019061042b9190611669565b610a21565b005b61044c600480360381019061044791906117fb565b610b17565b005b60606004805461045d90611866565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611866565b80156104d45780601f106104ab576101008083540402835291602001916104d4565b820191905f5260205f20905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b5f6104f16104ea610bf0565b8484610bf7565b6001905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60095481565b5f610533848484610dba565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61057a610bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f090611906565b60405180910390fd5b61060d85610605610bf0565b858403610bf7565b60019150509392505050565b5f6012905090565b5f6106be61062d610bf0565b848460025f61063a610bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106b99190611951565b610bf7565b6001905092915050565b60075481565b6106d83382611032565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61074e610bf0565b73ffffffffffffffffffffffffffffffffffffffff1661076c6107e5565b73ffffffffffffffffffffffffffffffffffffffff16146107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906119ce565b60405180910390fd5b6107cb5f611200565b565b60065f9054906101000a900460ff1681565b60085481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461081b90611866565b80601f016020809104026020016040519081016040528092919081815260200182805461084790611866565b80156108925780601f1061086957610100808354040283529160200191610892565b820191905f5260205f20905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b5f8060025f6108a9610bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90611a5c565b60405180910390fd5b61097761096e610bf0565b85858403610bf7565b600191505092915050565b5f61099561098e610bf0565b8484610dba565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a29610bf0565b73ffffffffffffffffffffffffffffffffffffffff16610a476107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a94906119ce565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611aea565b60405180910390fd5b610b1481611200565b50565b610b1f610bf0565b73ffffffffffffffffffffffffffffffffffffffff16610b3d6107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906119ce565b60405180910390fd5b8160065f6101000a81548160ff02191690831515021790555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611b78565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611c06565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dad91906116a3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90611c94565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90611d22565b60405180910390fd5b610ea18383836112c1565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90611db0565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610fb59190611951565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161101991906116a3565b60405180910390a361102c8484846114b8565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611e3e565b60405180910390fd5b6110ab825f836112c1565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690611ecc565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546111849190611eea565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e891906116a3565b60405180910390a36111fb835f846114b8565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113cc5761131d6107e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061138857506113596107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90611f67565b60405180910390fd5b6114b3565b60065f9054906101000a900460ff1680156114335750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114b2576008548161144584610700565b61144f9190611951565b1115801561147257506009548161146584610700565b61146f9190611951565b10155b6114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890611fcf565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156114f45780820151818401526020810190506114d9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611519826114bd565b61152381856114c7565b93506115338185602086016114d7565b61153c816114ff565b840191505092915050565b5f6020820190508181035f83015261155f818461150f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115948261156b565b9050919050565b6115a48161158a565b81146115ae575f80fd5b50565b5f813590506115bf8161159b565b92915050565b5f819050919050565b6115d7816115c5565b81146115e1575f80fd5b50565b5f813590506115f2816115ce565b92915050565b5f806040838503121561160e5761160d611567565b5b5f61161b858286016115b1565b925050602061162c858286016115e4565b9150509250929050565b5f8115159050919050565b61164a81611636565b82525050565b5f6020820190506116635f830184611641565b92915050565b5f6020828403121561167e5761167d611567565b5b5f61168b848285016115b1565b91505092915050565b61169d816115c5565b82525050565b5f6020820190506116b65f830184611694565b92915050565b5f805f606084860312156116d3576116d2611567565b5b5f6116e0868287016115b1565b93505060206116f1868287016115b1565b9250506040611702868287016115e4565b9150509250925092565b5f60ff82169050919050565b6117218161170c565b82525050565b5f60208201905061173a5f830184611718565b92915050565b5f6020828403121561175557611754611567565b5b5f611762848285016115e4565b91505092915050565b6117748161158a565b82525050565b5f60208201905061178d5f83018461176b565b92915050565b5f80604083850312156117a9576117a8611567565b5b5f6117b6858286016115b1565b92505060206117c7858286016115b1565b9150509250929050565b6117da81611636565b81146117e4575f80fd5b50565b5f813590506117f5816117d1565b92915050565b5f806040838503121561181157611810611567565b5b5f61181e858286016117e7565b925050602061182f858286016115b1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061187d57607f821691505b6020821081036118905761188f611839565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6118f06028836114c7565b91506118fb82611896565b604082019050919050565b5f6020820190508181035f83015261191d816118e4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61195b826115c5565b9150611966836115c5565b925082820190508082111561197e5761197d611924565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119b86020836114c7565b91506119c382611984565b602082019050919050565b5f6020820190508181035f8301526119e5816119ac565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611a466025836114c7565b9150611a51826119ec565b604082019050919050565b5f6020820190508181035f830152611a7381611a3a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611ad46026836114c7565b9150611adf82611a7a565b604082019050919050565b5f6020820190508181035f830152611b0181611ac8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611b626024836114c7565b9150611b6d82611b08565b604082019050919050565b5f6020820190508181035f830152611b8f81611b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611bf06022836114c7565b9150611bfb82611b96565b604082019050919050565b5f6020820190508181035f830152611c1d81611be4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c7e6025836114c7565b9150611c8982611c24565b604082019050919050565b5f6020820190508181035f830152611cab81611c72565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611d0c6023836114c7565b9150611d1782611cb2565b604082019050919050565b5f6020820190508181035f830152611d3981611d00565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d9a6026836114c7565b9150611da582611d40565b604082019050919050565b5f6020820190508181035f830152611dc781611d8e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e286021836114c7565b9150611e3382611dce565b604082019050919050565b5f6020820190508181035f830152611e5581611e1c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611eb66022836114c7565b9150611ec182611e5c565b604082019050919050565b5f6020820190508181035f830152611ee381611eaa565b9050919050565b5f611ef4826115c5565b9150611eff836115c5565b9250828203905081811115611f1757611f16611924565b5b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f611f516016836114c7565b9150611f5c82611f1d565b602082019050919050565b5f6020820190508181035f830152611f7e81611f45565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f611fb96006836114c7565b9150611fc482611f85565b602082019050919050565b5f6020820190508181035f830152611fe681611fad565b905091905056fea26469706673582212205a000b32ed5d72b0156496f725ba8d0a9b6f39313f808d786dfd25f3e56d020664736f6c63430008140033
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610140575f3560e01c806370a08231116100b657806395d89b411161007a57806395d89b4114610368578063a457c2d714610386578063a9059cbb146103b6578063dd62ed3e146103e6578063f2fde38b14610416578063f48ef4ff1461043257610140565b806370a08231146102d4578063715018a614610304578063860a32ec1461030e57806389f9a1d31461032c5780638da5cb5b1461034a57610140565b806323b872dd1161010857806323b872dd146101fe578063313ce5671461022e578063395093511461024c5780633eaaf86b1461027c57806342966c681461029a57806349bd5a5e146102b657610140565b806306fdde0314610144578063095ea7b31461016257806316c021291461019257806318160ddd146101c25780631ab99e12146101e0575b5f80fd5b61014c61044e565b6040516101599190611547565b60405180910390f35b61017c600480360381019061017791906115f8565b6104de565b6040516101899190611650565b60405180910390f35b6101ac60048036038101906101a79190611669565b6104fb565b6040516101b99190611650565b60405180910390f35b6101ca610518565b6040516101d791906116a3565b60405180910390f35b6101e8610521565b6040516101f591906116a3565b60405180910390f35b610218600480360381019061021391906116bc565b610527565b6040516102259190611650565b60405180910390f35b610236610619565b6040516102439190611727565b60405180910390f35b610266600480360381019061026191906115f8565b610621565b6040516102739190611650565b60405180910390f35b6102846106c8565b60405161029191906116a3565b60405180910390f35b6102b460048036038101906102af9190611740565b6106ce565b005b6102be6106db565b6040516102cb919061177a565b60405180910390f35b6102ee60048036038101906102e99190611669565b610700565b6040516102fb91906116a3565b60405180910390f35b61030c610746565b005b6103166107cd565b6040516103239190611650565b60405180910390f35b6103346107df565b60405161034191906116a3565b60405180910390f35b6103526107e5565b60405161035f919061177a565b60405180910390f35b61037061080c565b60405161037d9190611547565b60405180910390f35b6103a0600480360381019061039b91906115f8565b61089c565b6040516103ad9190611650565b60405180910390f35b6103d060048036038101906103cb91906115f8565b610982565b6040516103dd9190611650565b60405180910390f35b61040060048036038101906103fb9190611793565b61099f565b60405161040d91906116a3565b60405180910390f35b610430600480360381019061042b9190611669565b610a21565b005b61044c600480360381019061044791906117fb565b610b17565b005b60606004805461045d90611866565b80601f016020809104026020016040519081016040528092919081815260200182805461048990611866565b80156104d45780601f106104ab576101008083540402835291602001916104d4565b820191905f5260205f20905b8154815290600101906020018083116104b757829003601f168201915b5050505050905090565b5f6104f16104ea610bf0565b8484610bf7565b6001905092915050565b600b602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60095481565b5f610533848484610dba565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f61057a610bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050828110156105f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f090611906565b60405180910390fd5b61060d85610605610bf0565b858403610bf7565b60019150509392505050565b5f6012905090565b5f6106be61062d610bf0565b848460025f61063a610bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546106b99190611951565b610bf7565b6001905092915050565b60075481565b6106d83382611032565b50565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61074e610bf0565b73ffffffffffffffffffffffffffffffffffffffff1661076c6107e5565b73ffffffffffffffffffffffffffffffffffffffff16146107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b9906119ce565b60405180910390fd5b6107cb5f611200565b565b60065f9054906101000a900460ff1681565b60085481565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461081b90611866565b80601f016020809104026020016040519081016040528092919081815260200182805461084790611866565b80156108925780601f1061086957610100808354040283529160200191610892565b820191905f5260205f20905b81548152906001019060200180831161087557829003601f168201915b5050505050905090565b5f8060025f6108a9610bf0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095a90611a5c565b60405180910390fd5b61097761096e610bf0565b85858403610bf7565b600191505092915050565b5f61099561098e610bf0565b8484610dba565b6001905092915050565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a29610bf0565b73ffffffffffffffffffffffffffffffffffffffff16610a476107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a94906119ce565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0290611aea565b60405180910390fd5b610b1481611200565b50565b610b1f610bf0565b73ffffffffffffffffffffffffffffffffffffffff16610b3d6107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a906119ce565b60405180910390fd5b8160065f6101000a81548160ff02191690831515021790555080600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c90611b78565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cca90611c06565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dad91906116a3565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90611c94565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8d90611d22565b60405180910390fd5b610ea18383836112c1565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610f25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1c90611db0565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610fb59190611951565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161101991906116a3565b60405180910390a361102c8484846114b8565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109790611e3e565b60405180910390fd5b6110ab825f836112c1565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690611ecc565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f8282546111849190611eea565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111e891906116a3565b60405180910390a36111fb835f846114b8565b505050565b5f805f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036113cc5761131d6107e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061138857506113596107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90611f67565b60405180910390fd5b6114b3565b60065f9054906101000a900460ff1680156114335750600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156114b2576008548161144584610700565b61144f9190611951565b1115801561147257506009548161146584610700565b61146f9190611951565b10155b6114b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a890611fcf565b60405180910390fd5b5b5b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156114f45780820151818401526020810190506114d9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611519826114bd565b61152381856114c7565b93506115338185602086016114d7565b61153c816114ff565b840191505092915050565b5f6020820190508181035f83015261155f818461150f565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6115948261156b565b9050919050565b6115a48161158a565b81146115ae575f80fd5b50565b5f813590506115bf8161159b565b92915050565b5f819050919050565b6115d7816115c5565b81146115e1575f80fd5b50565b5f813590506115f2816115ce565b92915050565b5f806040838503121561160e5761160d611567565b5b5f61161b858286016115b1565b925050602061162c858286016115e4565b9150509250929050565b5f8115159050919050565b61164a81611636565b82525050565b5f6020820190506116635f830184611641565b92915050565b5f6020828403121561167e5761167d611567565b5b5f61168b848285016115b1565b91505092915050565b61169d816115c5565b82525050565b5f6020820190506116b65f830184611694565b92915050565b5f805f606084860312156116d3576116d2611567565b5b5f6116e0868287016115b1565b93505060206116f1868287016115b1565b9250506040611702868287016115e4565b9150509250925092565b5f60ff82169050919050565b6117218161170c565b82525050565b5f60208201905061173a5f830184611718565b92915050565b5f6020828403121561175557611754611567565b5b5f611762848285016115e4565b91505092915050565b6117748161158a565b82525050565b5f60208201905061178d5f83018461176b565b92915050565b5f80604083850312156117a9576117a8611567565b5b5f6117b6858286016115b1565b92505060206117c7858286016115b1565b9150509250929050565b6117da81611636565b81146117e4575f80fd5b50565b5f813590506117f5816117d1565b92915050565b5f806040838503121561181157611810611567565b5b5f61181e858286016117e7565b925050602061182f858286016115b1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061187d57607f821691505b6020821081036118905761188f611839565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6118f06028836114c7565b91506118fb82611896565b604082019050919050565b5f6020820190508181035f83015261191d816118e4565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61195b826115c5565b9150611966836115c5565b925082820190508082111561197e5761197d611924565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6119b86020836114c7565b91506119c382611984565b602082019050919050565b5f6020820190508181035f8301526119e5816119ac565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f611a466025836114c7565b9150611a51826119ec565b604082019050919050565b5f6020820190508181035f830152611a7381611a3a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f611ad46026836114c7565b9150611adf82611a7a565b604082019050919050565b5f6020820190508181035f830152611b0181611ac8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611b626024836114c7565b9150611b6d82611b08565b604082019050919050565b5f6020820190508181035f830152611b8f81611b56565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611bf06022836114c7565b9150611bfb82611b96565b604082019050919050565b5f6020820190508181035f830152611c1d81611be4565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f611c7e6025836114c7565b9150611c8982611c24565b604082019050919050565b5f6020820190508181035f830152611cab81611c72565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f611d0c6023836114c7565b9150611d1782611cb2565b604082019050919050565b5f6020820190508181035f830152611d3981611d00565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f611d9a6026836114c7565b9150611da582611d40565b604082019050919050565b5f6020820190508181035f830152611dc781611d8e565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f611e286021836114c7565b9150611e3382611dce565b604082019050919050565b5f6020820190508181035f830152611e5581611e1c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f611eb66022836114c7565b9150611ec182611e5c565b604082019050919050565b5f6020820190508181035f830152611ee381611eaa565b9050919050565b5f611ef4826115c5565b9150611eff836115c5565b9250828203905081811115611f1757611f16611924565b5b92915050565b7f74726164696e67206973206e6f742073746172746564000000000000000000005f82015250565b5f611f516016836114c7565b9150611f5c82611f1d565b602082019050919050565b5f6020820190508181035f830152611f7e81611f45565b9050919050565b7f466f7262696400000000000000000000000000000000000000000000000000005f82015250565b5f611fb96006836114c7565b9150611fc482611f85565b602082019050919050565b5f6020820190508181035f830152611fe681611fad565b905091905056fea26469706673582212205a000b32ed5d72b0156496f725ba8d0a9b6f39313f808d786dfd25f3e56d020664736f6c63430008140033
Deployed Bytecode Sourcemap
19322:1196:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9297:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11464:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19622:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10417:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19545:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12115:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10259:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13016:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19393:59;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20434:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19587:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10588:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2698:103;;;:::i;:::-;;19367:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19472:61;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2047:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9516:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13734:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10928:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11166:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2956:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19771:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9297:100;9351:13;9384:5;9377:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9297:100;:::o;11464:169::-;11547:4;11564:39;11573:12;:10;:12::i;:::-;11587:7;11596:6;11564:8;:39::i;:::-;11621:4;11614:11;;11464:169;;;;:::o;19622:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10417:108::-;10478:7;10505:12;;10498:19;;10417:108;:::o;19545:35::-;;;;:::o;12115:492::-;12255:4;12272:36;12282:6;12290:9;12301:6;12272:9;:36::i;:::-;12321:24;12348:11;:19;12360:6;12348:19;;;;;;;;;;;;;;;:33;12368:12;:10;:12::i;:::-;12348:33;;;;;;;;;;;;;;;;12321:60;;12420:6;12400:16;:26;;12392:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12507:57;12516:6;12524:12;:10;:12::i;:::-;12557:6;12538:16;:25;12507:8;:57::i;:::-;12595:4;12588:11;;;12115:492;;;;;:::o;10259:93::-;10317:5;10342:2;10335:9;;10259:93;:::o;13016:215::-;13104:4;13121:80;13130:12;:10;:12::i;:::-;13144:7;13190:10;13153:11;:25;13165:12;:10;:12::i;:::-;13153:25;;;;;;;;;;;;;;;:34;13179:7;13153:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13121:8;:80::i;:::-;13219:4;13212:11;;13016:215;;;;:::o;19393:59::-;;;;:::o;20434:81::-;20483:24;20489:10;20501:5;20483;:24::i;:::-;20434:81;:::o;19587:28::-;;;;;;;;;;;;;:::o;10588:127::-;10662:7;10689:9;:18;10699:7;10689:18;;;;;;;;;;;;;;;;10682:25;;10588:127;;;:::o;2698:103::-;2278:12;:10;:12::i;:::-;2267:23;;:7;:5;:7::i;:::-;:23;;;2259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2763:30:::1;2790:1;2763:18;:30::i;:::-;2698:103::o:0;19367:19::-;;;;;;;;;;;;;:::o;19472:61::-;;;;:::o;2047:87::-;2093:7;2120:6;;;;;;;;;;;2113:13;;2047:87;:::o;9516:104::-;9572:13;9605:7;9598:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9516:104;:::o;13734:413::-;13827:4;13844:24;13871:11;:25;13883:12;:10;:12::i;:::-;13871:25;;;;;;;;;;;;;;;:34;13897:7;13871:34;;;;;;;;;;;;;;;;13844:61;;13944:15;13924:16;:35;;13916:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14037:67;14046:12;:10;:12::i;:::-;14060:7;14088:15;14069:16;:34;14037:8;:67::i;:::-;14135:4;14128:11;;;13734:413;;;;:::o;10928:175::-;11014:4;11031:42;11041:12;:10;:12::i;:::-;11055:9;11066:6;11031:9;:42::i;:::-;11091:4;11084:11;;10928:175;;;;:::o;11166:151::-;11255:7;11282:11;:18;11294:5;11282:18;;;;;;;;;;;;;;;:27;11301:7;11282:27;;;;;;;;;;;;;;;;11275:34;;11166:151;;;;:::o;2956:201::-;2278:12;:10;:12::i;:::-;2267:23;;:7;:5;:7::i;:::-;:23;;;2259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3065:1:::1;3045:22;;:8;:22;;::::0;3037:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3121:28;3140:8;3121:18;:28::i;:::-;2956:201:::0;:::o;19771:153::-;2278:12;:10;:12::i;:::-;2267:23;;:7;:5;:7::i;:::-;:23;;;2259:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19867:8:::1;19857:7;;:18;;;;;;;;;;;;;;;;;;19902:14;19886:13;;:30;;;;;;;;;;;;;;;;;;19771:153:::0;;:::o;765:98::-;818:7;845:10;838:17;;765:98;:::o;17418:380::-;17571:1;17554:19;;:5;:19;;;17546:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17652:1;17633:21;;:7;:21;;;17625:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17736:6;17706:11;:18;17718:5;17706:18;;;;;;;;;;;;;;;:27;17725:7;17706:27;;;;;;;;;;;;;;;:36;;;;17774:7;17758:32;;17767:5;17758:32;;;17783:6;17758:32;;;;;;:::i;:::-;;;;;;;;17418:380;;;:::o;14637:733::-;14795:1;14777:20;;:6;:20;;;14769:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14879:1;14858:23;;:9;:23;;;14850:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14934:47;14955:6;14963:9;14974:6;14934:20;:47::i;:::-;14994:21;15018:9;:17;15028:6;15018:17;;;;;;;;;;;;;;;;14994:41;;15071:6;15054:13;:23;;15046:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15192:6;15176:13;:22;15156:9;:17;15166:6;15156:17;;;;;;;;;;;;;;;:42;;;;15244:6;15220:9;:20;15230:9;15220:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15285:9;15268:35;;15277:6;15268:35;;;15296:6;15268:35;;;;;;:::i;:::-;;;;;;;;15316:46;15336:6;15344:9;15355:6;15316:19;:46::i;:::-;14758:612;14637:733;;;:::o;16389:591::-;16492:1;16473:21;;:7;:21;;;16465:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16545:49;16566:7;16583:1;16587:6;16545:20;:49::i;:::-;16607:22;16632:9;:18;16642:7;16632:18;;;;;;;;;;;;;;;;16607:43;;16687:6;16669:14;:24;;16661:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16806:6;16789:14;:23;16768:9;:18;16778:7;16768:18;;;;;;;;;;;;;;;:44;;;;16850:6;16834:12;;:22;;;;;;;:::i;:::-;;;;;;;;16900:1;16874:37;;16883:7;16874:37;;;16904:6;16874:37;;;;;;:::i;:::-;;;;;;;;16924:48;16944:7;16961:1;16965:6;16924:19;:48::i;:::-;16454:526;16389:591;;:::o;3317:191::-;3391:16;3410:6;;;;;;;;;;;3391:25;;3436:8;3427:6;;:17;;;;;;;;;;;;;;;;;;3491:8;3460:40;;3481:8;3460:40;;;;;;;;;;;;3380:128;3317:191;:::o;19932:494::-;20104:1;20079:27;;:13;;;;;;;;;;;:27;;;20075:148;;20139:7;:5;:7::i;:::-;20131:15;;:4;:15;;;:32;;;;20156:7;:5;:7::i;:::-;20150:13;;:2;:13;;;20131:32;20123:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20205:7;;20075:148;20239:7;;;;;;;;;;;:32;;;;;20258:13;;;;;;;;;;;20250:21;;:4;:21;;;20239:32;20235:184;;;20328:16;;20318:6;20296:19;20312:2;20296:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20380:16;;20370:6;20348:19;20364:2;20348:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20296:100;20288:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20235:184;19932:494;;;;:::o;19127:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:329::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:116::-;6425:21;6440:5;6425:21;:::i;:::-;6418:5;6415:32;6405:60;;6461:1;6458;6451:12;6405:60;6355:116;:::o;6477:133::-;6520:5;6558:6;6545:20;6536:29;;6574:30;6598:5;6574:30;:::i;:::-;6477:133;;;;:::o;6616:468::-;6681:6;6689;6738:2;6726:9;6717:7;6713:23;6709:32;6706:119;;;6744:79;;:::i;:::-;6706:119;6864:1;6889:50;6931:7;6922:6;6911:9;6907:22;6889:50;:::i;:::-;6879:60;;6835:114;6988:2;7014:53;7059:7;7050:6;7039:9;7035:22;7014:53;:::i;:::-;7004:63;;6959:118;6616:468;;;;;:::o;7090:180::-;7138:77;7135:1;7128:88;7235:4;7232:1;7225:15;7259:4;7256:1;7249:15;7276:320;7320:6;7357:1;7351:4;7347:12;7337:22;;7404:1;7398:4;7394:12;7425:18;7415:81;;7481:4;7473:6;7469:17;7459:27;;7415:81;7543:2;7535:6;7532:14;7512:18;7509:38;7506:84;;7562:18;;:::i;:::-;7506:84;7327:269;7276:320;;;:::o;7602:227::-;7742:34;7738:1;7730:6;7726:14;7719:58;7811:10;7806:2;7798:6;7794:15;7787:35;7602:227;:::o;7835:366::-;7977:3;7998:67;8062:2;8057:3;7998:67;:::i;:::-;7991:74;;8074:93;8163:3;8074:93;:::i;:::-;8192:2;8187:3;8183:12;8176:19;;7835:366;;;:::o;8207:419::-;8373:4;8411:2;8400:9;8396:18;8388:26;;8460:9;8454:4;8450:20;8446:1;8435:9;8431:17;8424:47;8488:131;8614:4;8488:131;:::i;:::-;8480:139;;8207:419;;;:::o;8632:180::-;8680:77;8677:1;8670:88;8777:4;8774:1;8767:15;8801:4;8798:1;8791:15;8818:191;8858:3;8877:20;8895:1;8877:20;:::i;:::-;8872:25;;8911:20;8929:1;8911:20;:::i;:::-;8906:25;;8954:1;8951;8947:9;8940:16;;8975:3;8972:1;8969:10;8966:36;;;8982:18;;:::i;:::-;8966:36;8818:191;;;;:::o;9015:182::-;9155:34;9151:1;9143:6;9139:14;9132:58;9015:182;:::o;9203:366::-;9345:3;9366:67;9430:2;9425:3;9366:67;:::i;:::-;9359:74;;9442:93;9531:3;9442:93;:::i;:::-;9560:2;9555:3;9551:12;9544:19;;9203:366;;;:::o;9575:419::-;9741:4;9779:2;9768:9;9764:18;9756:26;;9828:9;9822:4;9818:20;9814:1;9803:9;9799:17;9792:47;9856:131;9982:4;9856:131;:::i;:::-;9848:139;;9575:419;;;:::o;10000:224::-;10140:34;10136:1;10128:6;10124:14;10117:58;10209:7;10204:2;10196:6;10192:15;10185:32;10000:224;:::o;10230:366::-;10372:3;10393:67;10457:2;10452:3;10393:67;:::i;:::-;10386:74;;10469:93;10558:3;10469:93;:::i;:::-;10587:2;10582:3;10578:12;10571:19;;10230:366;;;:::o;10602:419::-;10768:4;10806:2;10795:9;10791:18;10783:26;;10855:9;10849:4;10845:20;10841:1;10830:9;10826:17;10819:47;10883:131;11009:4;10883:131;:::i;:::-;10875:139;;10602:419;;;:::o;11027:225::-;11167:34;11163:1;11155:6;11151:14;11144:58;11236:8;11231:2;11223:6;11219:15;11212:33;11027:225;:::o;11258:366::-;11400:3;11421:67;11485:2;11480:3;11421:67;:::i;:::-;11414:74;;11497:93;11586:3;11497:93;:::i;:::-;11615:2;11610:3;11606:12;11599:19;;11258:366;;;:::o;11630:419::-;11796:4;11834:2;11823:9;11819:18;11811:26;;11883:9;11877:4;11873:20;11869:1;11858:9;11854:17;11847:47;11911:131;12037:4;11911:131;:::i;:::-;11903:139;;11630:419;;;:::o;12055:223::-;12195:34;12191:1;12183:6;12179:14;12172:58;12264:6;12259:2;12251:6;12247:15;12240:31;12055:223;:::o;12284:366::-;12426:3;12447:67;12511:2;12506:3;12447:67;:::i;:::-;12440:74;;12523:93;12612:3;12523:93;:::i;:::-;12641:2;12636:3;12632:12;12625:19;;12284:366;;;:::o;12656:419::-;12822:4;12860:2;12849:9;12845:18;12837:26;;12909:9;12903:4;12899:20;12895:1;12884:9;12880:17;12873:47;12937:131;13063:4;12937:131;:::i;:::-;12929:139;;12656:419;;;:::o;13081:221::-;13221:34;13217:1;13209:6;13205:14;13198:58;13290:4;13285:2;13277:6;13273:15;13266:29;13081:221;:::o;13308:366::-;13450:3;13471:67;13535:2;13530:3;13471:67;:::i;:::-;13464:74;;13547:93;13636:3;13547:93;:::i;:::-;13665:2;13660:3;13656:12;13649:19;;13308:366;;;:::o;13680:419::-;13846:4;13884:2;13873:9;13869:18;13861:26;;13933:9;13927:4;13923:20;13919:1;13908:9;13904:17;13897:47;13961:131;14087:4;13961:131;:::i;:::-;13953:139;;13680:419;;;:::o;14105:224::-;14245:34;14241:1;14233:6;14229:14;14222:58;14314:7;14309:2;14301:6;14297:15;14290:32;14105:224;:::o;14335:366::-;14477:3;14498:67;14562:2;14557:3;14498:67;:::i;:::-;14491:74;;14574:93;14663:3;14574:93;:::i;:::-;14692:2;14687:3;14683:12;14676:19;;14335:366;;;:::o;14707:419::-;14873:4;14911:2;14900:9;14896:18;14888:26;;14960:9;14954:4;14950:20;14946:1;14935:9;14931:17;14924:47;14988:131;15114:4;14988:131;:::i;:::-;14980:139;;14707:419;;;:::o;15132:222::-;15272:34;15268:1;15260:6;15256:14;15249:58;15341:5;15336:2;15328:6;15324:15;15317:30;15132:222;:::o;15360:366::-;15502:3;15523:67;15587:2;15582:3;15523:67;:::i;:::-;15516:74;;15599:93;15688:3;15599:93;:::i;:::-;15717:2;15712:3;15708:12;15701:19;;15360:366;;;:::o;15732:419::-;15898:4;15936:2;15925:9;15921:18;15913:26;;15985:9;15979:4;15975:20;15971:1;15960:9;15956:17;15949:47;16013:131;16139:4;16013:131;:::i;:::-;16005:139;;15732:419;;;:::o;16157:225::-;16297:34;16293:1;16285:6;16281:14;16274:58;16366:8;16361:2;16353:6;16349:15;16342:33;16157:225;:::o;16388:366::-;16530:3;16551:67;16615:2;16610:3;16551:67;:::i;:::-;16544:74;;16627:93;16716:3;16627:93;:::i;:::-;16745:2;16740:3;16736:12;16729:19;;16388:366;;;:::o;16760:419::-;16926:4;16964:2;16953:9;16949:18;16941:26;;17013:9;17007:4;17003:20;16999:1;16988:9;16984:17;16977:47;17041:131;17167:4;17041:131;:::i;:::-;17033:139;;16760:419;;;:::o;17185:220::-;17325:34;17321:1;17313:6;17309:14;17302:58;17394:3;17389:2;17381:6;17377:15;17370:28;17185:220;:::o;17411:366::-;17553:3;17574:67;17638:2;17633:3;17574:67;:::i;:::-;17567:74;;17650:93;17739:3;17650:93;:::i;:::-;17768:2;17763:3;17759:12;17752:19;;17411:366;;;:::o;17783:419::-;17949:4;17987:2;17976:9;17972:18;17964:26;;18036:9;18030:4;18026:20;18022:1;18011:9;18007:17;18000:47;18064:131;18190:4;18064:131;:::i;:::-;18056:139;;17783:419;;;:::o;18208:221::-;18348:34;18344:1;18336:6;18332:14;18325:58;18417:4;18412:2;18404:6;18400:15;18393:29;18208:221;:::o;18435:366::-;18577:3;18598:67;18662:2;18657:3;18598:67;:::i;:::-;18591:74;;18674:93;18763:3;18674:93;:::i;:::-;18792:2;18787:3;18783:12;18776:19;;18435:366;;;:::o;18807:419::-;18973:4;19011:2;19000:9;18996:18;18988:26;;19060:9;19054:4;19050:20;19046:1;19035:9;19031:17;19024:47;19088:131;19214:4;19088:131;:::i;:::-;19080:139;;18807:419;;;:::o;19232:194::-;19272:4;19292:20;19310:1;19292:20;:::i;:::-;19287:25;;19326:20;19344:1;19326:20;:::i;:::-;19321:25;;19370:1;19367;19363:9;19355:17;;19394:1;19388:4;19385:11;19382:37;;;19399:18;;:::i;:::-;19382:37;19232:194;;;;:::o;19432:172::-;19572:24;19568:1;19560:6;19556:14;19549:48;19432:172;:::o;19610:366::-;19752:3;19773:67;19837:2;19832:3;19773:67;:::i;:::-;19766:74;;19849:93;19938:3;19849:93;:::i;:::-;19967:2;19962:3;19958:12;19951:19;;19610:366;;;:::o;19982:419::-;20148:4;20186:2;20175:9;20171:18;20163:26;;20235:9;20229:4;20225:20;20221:1;20210:9;20206:17;20199:47;20263:131;20389:4;20263:131;:::i;:::-;20255:139;;19982:419;;;:::o;20407:156::-;20547:8;20543:1;20535:6;20531:14;20524:32;20407:156;:::o;20569:365::-;20711:3;20732:66;20796:1;20791:3;20732:66;:::i;:::-;20725:73;;20807:93;20896:3;20807:93;:::i;:::-;20925:2;20920:3;20916:12;20909:19;;20569:365;;;:::o;20940:419::-;21106:4;21144:2;21133:9;21129:18;21121:26;;21193:9;21187:4;21183:20;21179:1;21168:9;21164:17;21157:47;21221:131;21347:4;21221:131;:::i;:::-;21213:139;;20940:419;;;:::o
Swarm Source
ipfs://5a000b32ed5d72b0156496f725ba8d0a9b6f39313f808d786dfd25f3e56d0206
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.