ERC-20
DeFi
Overview
Max Total Supply
2,100,000,000,000 ETH🌮
Holders
420 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000000000001 ETH🌮Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TacoToken
Compiler Version
v0.8.25+commit.b61c2a91
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-06-02 */ // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ 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: TacoOneERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @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}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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 ERC-20 * 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 ERC may not emit * these events, as it isn't required by the specification. */ abstract contract TacoOneERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * 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 = string.concat(symbol_,unicode"🌮"); } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } function _setNameAndSymbol (string memory name_, string memory symbol_) internal { _name = name_; _symbol = symbol_; } function _setName (string memory name_) internal{ _name = name_; } function _setSymbol (string memory symbol_) internal { _symbol = symbol_; } function _setSymbolTaco (string memory symbol_) internal { _symbol = string.concat(symbol_,unicode"🌮"); } /** * @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 default value returned by this function, unless * it's 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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `value`. */ function transfer(address to, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _transfer(owner, to, value); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `value` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the ERC. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * 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. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` 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. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: TacoERC20_2.sol pragma solidity ^0.8.20; // .................................................................................................... // ...........................................%@@@@@@@@@@@@#=+%@@@=.................................... // ...........................................=+====+######*-=*###****+................................ // .....................................::::::--::::-******+--+***#%%%%::::............................ // ....................................*@@@@@@--+******###*+---=#@#****@@@@+........................... // ...............................:@@@@=::::::--+*+=============#@%##****%@@@@@#:...................... // ...............................-@%+=--------=+*********######%@%###########@#:...................... // ............................:::-%#-:-========+****##**#%%%%%%%%########***#%#-:..................... // ...........................+%@@%======+****======+@@@@=....::::::--=@@@@%****%@=.................... // .......................=%%%+::::==+*-.=********#%%@#-....:::::-:::::--=+*%%%%@@=.................... // .......................+%%#+-::-****=-+*########***+:...:--::::::---::-=+**##%@*=:.................. // .......................+%#=====+%%****##%@@%%%%+....::::-==-:::::-==::::::-=+%%@@*.................. // .....................#@+::********######%@@:......:::::::::::==-:::::-==-:-=++*#@@@#:............... // .....................#@*=-.-******%@#***#%@-::::::::-=-:-=--:---::::::---:==++++*#@#:............... // ...................-=%@*==++****##%@#*###**-::::::::==-:-==-:::::::::::::-=+++++*#@#: .............. // ...................#@%%*=+@%#*####%@#*#@#-:::::-==::::-::::::==-::::==-:-=+*+++++#@#:............... // ...................#@+===+%%######%%#*#%#-:==-::::::::::-==-::::::::::===+++++*++#@#:............... // ...................#@#****###*====**%@*--::==-::::::--::-=--::::::----===++++++++#@#:............... // ...................#@+=+**#*====****%@*--:::::::::::==-::::::::::-=====++++++++++#@#:............... // ...................#@@@@@#...:***#%@*=-::::==-:::-==-:::::-======+++*++++++*++=+*#@#:............... // ...................#@*+==-...-##*#%@+----::---:-----::-----====+++++++++++++++++*#@#:............... // ...................#@-......:=%%##%@+:-==-:::::-==::::-=====+++++++++++++++++****#%*:............... // ...................#@=:::::::-####%@+::::::::-=-:-+++++++++++++++************%@@@+.................. // ...................#@*+#@%###***##%@=::::----=====++++++++*****%@@@@@@@@@@@@%=-..................... // ...................#@*+#@%####*#%%+=-:::-==+++++++++++****#####***********+==:...................... // ...................#%*+#%%######%#=:::-==+++++++****%@@@@@@@@@@+----------:......................... // .....................#@#+*@%@%%%====+++++++#####%%%#=--------------:................................ // .....................#@#***+++++***********@@@@@@@@#--:::::......................................... // .......................+@@@@@@@@@@@@@@@@@@@-----------:............................................. // .......................:=+++++++++++++++++=:........................................................ // ..........................:::::::::::::::........................................................... // ,----, ,----, // ,/ .`| ,----.. ,/ .`| ,----.. // ,` .' : ,---, ,----.. / / \ ,` .' : ,---,. .--.--. ,---, ,---, ,---, / / \ // ; ; /' .' \ / / \ / . : ; ; / ,--, ,' .' | / / '. .' .' `\ ' .' \ ,---, ,`--.' | / . : // .'___,/ ,'/ ; '. | : : . / ;. \.'___,/ ,' ,'_ /|,---.' || : /`. / ,---.' \ / ; '. /_ ./| | : : . / ;. \ // | : |: : \ . | ;. /. ; / ` ;| : | .--. | | :| | .'; | |--` | | .`\ |: : \ ,---, | ' : : | '. ; / ` ; // ; |.'; ;: | /\ \ . ; /--` ; | ; \ ; |; |.'; ;,'_ /| : . |: : |-,| : ;_ : : | ' |: | /\ \/___/ \. : | | : |; | ; \ ; | // `----' | || : ' ;. : ; | ; | : | ; | '`----' | || ' | | . .: | ;/| \ \ `. | ' ' ; :| : ' ;. :. \ \ ,' ' ' ' ;| : | ; | ' // ' : ;| | ;/ \ \| : | . | ' ' ' : ' : ;| | ' | | || : .' `----. \' | ; . || | ;/ \ \\ ; ` ,' | | |. | ' ' ' : // | | '' : | \ \ ,'. | '___ ' ; \; / | | | ': | | : ' ;| | |-, __ \ \ || | : | '' : | \ \ ,' \ \ ' ' : ;' ; \; / | // ' : || | ' '--' ' ; : .'| \ \ ', / ' : || ; ' | | '' : ;/| / /`--' /' : | / ; | | ' '--' ' \ | | | ' \ \ ', / // ; |.' | : : ' | '/ : ; : / ; |.' : | : ; ; || | \'--'. / | | '` ,/ | : : \ ; ; ___ ' : | ; : / // '---' | | ,' | : / \ \ .' '---' ' : `--' \ : .' `--'---' ; : .' | | ,' : \ \/ .\ ; |.' \ \ .' // `--'' \ \ .' `---` : , .-./ | ,' | ,.' `--'' \ ' ;\ ; |'---' `---` // `---` `--`----' `----' '---' `--` `--" contract TacoToken is TacoOneERC20, Ownable{ mapping(address => uint256) public burnt; mapping(address => bool) public whitelist; mapping(address => bool) public blacklist; bool WLActive = true; bool BLActive = false; address public BURN = 0x00000000000000000000000000000000DEaD7AC0; constructor( string memory name_, string memory symbol_ )TacoOneERC20(name_, symbol_) Ownable(msg.sender){ _mint(owner(),2100000000000*1e18); whitelist[msg.sender] = true; } function transfer(address to, uint256 value) public override returns (bool) { if(WLActive){ require(whitelist[msg.sender], "Caller not whitelisted!"); if(!whitelist[msg.sender]){ require(whitelist[to], "transfer: not whitelisted!"); } } if(BLActive){ require(!blacklist[msg.sender], "Caller is blacklisted!"); require(!blacklist[to], "transfer: blacklisted!"); } if (to == BURN){ burnt[msg.sender] += value; } return TacoOneERC20.transfer(to, value); } function transferFrom(address from, address to, uint256 value) public override returns (bool) { if(WLActive){ require(whitelist[msg.sender], "Caller not whitelisted!"); if(!whitelist[msg.sender]){ require(whitelist[from], "transfer: not whitelisted!"); require(whitelist[to], "transfer: not whitelisted!"); } } if(BLActive){ require(!blacklist[msg.sender], "Caller is blacklisted!"); require(!blacklist[from], "transfer: blacklisted!"); require(!blacklist[to], "transfer: blacklisted!"); } if (to == BURN){ burnt[from] += value; } return TacoOneERC20.transferFrom(from, to, value); } function eatTacos (uint256 value) public returns (bool) { return TacoOneERC20.transfer(BURN, value); } function WLActivate (bool value_) external onlyOwner{ WLActive = value_; } function BLActivate (bool value_) external onlyOwner{ BLActive = value_; } function modWL (address[] memory addresses_, bool[] memory values_) external onlyOwner{ require(addresses_.length == values_.length); for(uint256 i = 0; i < addresses_.length; i++){ whitelist[addresses_[i]] = values_[i]; } } function modBL (address[] memory addresses_, bool[] memory values_) external onlyOwner{ require(addresses_.length == values_.length); for(uint256 i = 0; i < addresses_.length; i++){ blacklist[addresses_[i]] = values_[i]; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"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":[{"internalType":"bool","name":"value_","type":"bool"}],"name":"BLActivate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"BURN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"value_","type":"bool"}],"name":"WLActivate","outputs":[],"stateMutability":"nonpayable","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":"value","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":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burnt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"eatTacos","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"bool[]","name":"values_","type":"bool[]"}],"name":"modBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses_","type":"address[]"},{"internalType":"bool[]","name":"values_","type":"bool[]"}],"name":"modWL","outputs":[],"stateMutability":"nonpayable","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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600160095f6101000a81548160ff0219169083151502179055505f600960016101000a81548160ff02191690831515021790555063dead7ac0600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015610088575f80fd5b50604051612ce6380380612ce683398181016040528101906100aa91906106ca565b33828281600390816100bc919061094d565b50806040516020016100ce9190610a7c565b604051602081830303815290604052600490816100eb919061094d565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361015e575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101559190610ae0565b60405180910390fd5b61016d816101f460201b60201c565b5061019861017f6102b760201b60201c565b6c1a8177494efa5bf39f200000006102df60201b60201c565b600160075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050610bb6565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361034f575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016103469190610ae0565b60405180910390fd5b6103605f838361036460201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036103b4578060025f8282546103a89190610b26565b92505081905550610482565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561043d578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161043493929190610b68565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036104c9578060025f8282540392505081905550610513565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105709190610b9d565b60405180910390a3505050565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6105dc82610596565b810181811067ffffffffffffffff821117156105fb576105fa6105a6565b5b80604052505050565b5f61060d61057d565b905061061982826105d3565b919050565b5f67ffffffffffffffff821115610638576106376105a6565b5b61064182610596565b9050602081019050919050565b8281835e5f83830152505050565b5f61066e6106698461061e565b610604565b90508281526020810184848401111561068a57610689610592565b5b61069584828561064e565b509392505050565b5f82601f8301126106b1576106b061058e565b5b81516106c184826020860161065c565b91505092915050565b5f80604083850312156106e0576106df610586565b5b5f83015167ffffffffffffffff8111156106fd576106fc61058a565b5b6107098582860161069d565b925050602083015167ffffffffffffffff81111561072a5761072961058a565b5b6107368582860161069d565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061078e57607f821691505b6020821081036107a1576107a061074a565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108037fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826107c8565b61080d86836107c8565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61085161084c61084784610825565b61082e565b610825565b9050919050565b5f819050919050565b61086a83610837565b61087e61087682610858565b8484546107d4565b825550505050565b5f90565b610892610886565b61089d818484610861565b505050565b5b818110156108c0576108b55f8261088a565b6001810190506108a3565b5050565b601f821115610905576108d6816107a7565b6108df846107b9565b810160208510156108ee578190505b6109026108fa856107b9565b8301826108a2565b50505b505050565b5f82821c905092915050565b5f6109255f198460080261090a565b1980831691505092915050565b5f61093d8383610916565b9150826002028217905092915050565b61095682610740565b67ffffffffffffffff81111561096f5761096e6105a6565b5b6109798254610777565b6109848282856108c4565b5f60209050601f8311600181146109b5575f84156109a3578287015190505b6109ad8582610932565b865550610a14565b601f1984166109c3866107a7565b5f5b828110156109ea578489015182556001820191506020850194506020810190506109c5565b86831015610a075784890151610a03601f891682610916565b8355505b6001600288020188555050505b505050505050565b5f81905092915050565b5f610a3082610740565b610a3a8185610a1c565b9350610a4a81856020860161064e565b80840191505092915050565b7ff09f8cae00000000000000000000000000000000000000000000000000000000815250565b5f610a878284610a26565b9150610a9282610a56565b60048201915081905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610aca82610aa1565b9050919050565b610ada81610ac0565b82525050565b5f602082019050610af35f830184610ad1565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610b3082610825565b9150610b3b83610825565b9250828201905080821115610b5357610b52610af9565b5b92915050565b610b6281610825565b82525050565b5f606082019050610b7b5f830186610ad1565b610b886020830185610b59565b610b956040830184610b59565b949350505050565b5f602082019050610bb05f830184610b59565b92915050565b61212380610bc35f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c806395d89b41116100b6578063c0a2526c1161007a578063c0a2526c14610361578063dd62ed3e1461037f578063e186891c146103af578063f2fde38b146103cb578063f5524da7146103e7578063f9f92be41461040357610135565b806395d89b41146102ab57806399adafe0146102c95780639b19251a146102e5578063a784d35214610315578063a9059cbb1461033157610135565b8063313ce567116100fd578063313ce5671461020557806357334f541461022357806370a0823114610253578063715018a6146102835780638da5cb5b1461028d57610135565b806306fdde0314610139578063095ea7b3146101575780630a3c52751461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b610141610433565b60405161014e91906118cc565b60405180910390f35b610171600480360381019061016c919061198a565b6104c3565b60405161017e91906119e2565b60405180910390f35b6101a1600480360381019061019c91906119fb565b6104e5565b6040516101ae9190611a35565b60405180910390f35b6101bf6104fa565b6040516101cc9190611a35565b60405180910390f35b6101ef60048036038101906101ea9190611a4e565b610503565b6040516101fc91906119e2565b60405180910390f35b61020d610974565b60405161021a9190611ab9565b60405180910390f35b61023d60048036038101906102389190611ad2565b61097c565b60405161024a91906119e2565b60405180910390f35b61026d600480360381019061026891906119fb565b6109b0565b60405161027a9190611a35565b60405180910390f35b61028b6109f5565b005b610295610a08565b6040516102a29190611b0c565b60405180910390f35b6102b3610a30565b6040516102c091906118cc565b60405180910390f35b6102e360048036038101906102de9190611d4f565b610ac0565b005b6102ff60048036038101906102fa91906119fb565b610b7a565b60405161030c91906119e2565b60405180910390f35b61032f600480360381019061032a9190611dc5565b610b97565b005b61034b6004803603810190610346919061198a565b610bbb565b60405161035891906119e2565b60405180910390f35b610369610f17565b6040516103769190611b0c565b60405180910390f35b61039960048036038101906103949190611df0565b610f3d565b6040516103a69190611a35565b60405180910390f35b6103c960048036038101906103c49190611dc5565b610fbf565b005b6103e560048036038101906103e091906119fb565b610fe4565b005b61040160048036038101906103fc9190611d4f565b611068565b005b61041d600480360381019061041891906119fb565b611122565b60405161042a91906119e2565b60405180910390f35b60606003805461044290611e5b565b80601f016020809104026020016040519081016040528092919081815260200182805461046e90611e5b565b80156104b95780601f10610490576101008083540402835291602001916104b9565b820191905f5260205f20905b81548152906001019060200180831161049c57829003601f168201915b5050505050905090565b5f806104cd61113f565b90506104da818585611146565b600191505092915050565b6006602052805f5260405f205f915090505481565b5f600254905090565b5f60095f9054906101000a900460ff16156107035760075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166105a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059890611ed5565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107025760075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066f90611f3d565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890611f3d565b60405180910390fd5b5b5b600960019054906101000a900460ff16156108b75760085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156107a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079990611fa5565b60405180910390fd5b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561082c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108239061200d565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad9061200d565b60405180910390fd5b5b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610960578160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546109589190612058565b925050819055505b61096b848484611158565b90509392505050565b5f6012905090565b5f6109a9600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611186565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109fd6111a8565b610a065f61122f565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a3f90611e5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6b90611e5b565b8015610ab65780601f10610a8d57610100808354040283529160200191610ab6565b820191905f5260205f20905b815481529060010190602001808311610a9957829003601f168201915b5050505050905090565b610ac86111a8565b8051825114610ad5575f80fd5b5f5b8251811015610b7557818181518110610af357610af261208b565b5b602002602001015160085f858481518110610b1157610b1061208b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610ad7565b505050565b6007602052805f5260405f205f915054906101000a900460ff1681565b610b9f6111a8565b8060095f6101000a81548160ff02191690831515021790555050565b5f60095f9054906101000a900460ff1615610d325760075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090611ed5565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610d315760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611f3d565b60405180910390fd5b5b5b600960019054906101000a900460ff1615610e5c5760085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890611fa5565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e529061200d565b60405180910390fd5b5b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f05578160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610efd9190612058565b925050819055505b610f0f8383611186565b905092915050565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610fc76111a8565b80600960016101000a81548160ff02191690831515021790555050565b610fec6111a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361105c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110539190611b0c565b60405180910390fd5b6110658161122f565b50565b6110706111a8565b805182511461107d575f80fd5b5f5b825181101561111d5781818151811061109b5761109a61208b565b5b602002602001015160075f8584815181106110b9576110b861208b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808060010191505061107f565b505050565b6008602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b61115383838360016112f2565b505050565b5f8061116261113f565b905061116f8582856114c1565b61117a858585611553565b60019150509392505050565b5f8061119061113f565b905061119d818585611553565b600191505092915050565b6111b061113f565b73ffffffffffffffffffffffffffffffffffffffff166111ce610a08565b73ffffffffffffffffffffffffffffffffffffffff161461122d576111f161113f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112249190611b0c565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611362575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113599190611b0c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d2575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113c99190611b0c565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114bb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114b29190611a35565b60405180910390a35b50505050565b5f6114cc8484610f3d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461154d578181101561153e578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611535939291906120b8565b60405180910390fd5b61154c84848484035f6112f2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c3575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016115ba9190611b0c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611633575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161162a9190611b0c565b60405180910390fd5b61163e838383611643565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611693578060025f8282546116879190612058565b92505081905550611761565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561171c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611713939291906120b8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8578060025f82825403925050819055506117f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161184f9190611a35565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61189e8261185c565b6118a88185611866565b93506118b8818560208601611876565b6118c181611884565b840191505092915050565b5f6020820190508181035f8301526118e48184611894565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611926826118fd565b9050919050565b6119368161191c565b8114611940575f80fd5b50565b5f813590506119518161192d565b92915050565b5f819050919050565b61196981611957565b8114611973575f80fd5b50565b5f8135905061198481611960565b92915050565b5f80604083850312156119a05761199f6118f5565b5b5f6119ad85828601611943565b92505060206119be85828601611976565b9150509250929050565b5f8115159050919050565b6119dc816119c8565b82525050565b5f6020820190506119f55f8301846119d3565b92915050565b5f60208284031215611a1057611a0f6118f5565b5b5f611a1d84828501611943565b91505092915050565b611a2f81611957565b82525050565b5f602082019050611a485f830184611a26565b92915050565b5f805f60608486031215611a6557611a646118f5565b5b5f611a7286828701611943565b9350506020611a8386828701611943565b9250506040611a9486828701611976565b9150509250925092565b5f60ff82169050919050565b611ab381611a9e565b82525050565b5f602082019050611acc5f830184611aaa565b92915050565b5f60208284031215611ae757611ae66118f5565b5b5f611af484828501611976565b91505092915050565b611b068161191c565b82525050565b5f602082019050611b1f5f830184611afd565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b5f82611884565b810181811067ffffffffffffffff82111715611b7e57611b7d611b29565b5b80604052505050565b5f611b906118ec565b9050611b9c8282611b56565b919050565b5f67ffffffffffffffff821115611bbb57611bba611b29565b5b602082029050602081019050919050565b5f80fd5b5f611be2611bdd84611ba1565b611b87565b90508083825260208201905060208402830185811115611c0557611c04611bcc565b5b835b81811015611c2e5780611c1a8882611943565b845260208401935050602081019050611c07565b5050509392505050565b5f82601f830112611c4c57611c4b611b25565b5b8135611c5c848260208601611bd0565b91505092915050565b5f67ffffffffffffffff821115611c7f57611c7e611b29565b5b602082029050602081019050919050565b611c99816119c8565b8114611ca3575f80fd5b50565b5f81359050611cb481611c90565b92915050565b5f611ccc611cc784611c65565b611b87565b90508083825260208201905060208402830185811115611cef57611cee611bcc565b5b835b81811015611d185780611d048882611ca6565b845260208401935050602081019050611cf1565b5050509392505050565b5f82601f830112611d3657611d35611b25565b5b8135611d46848260208601611cba565b91505092915050565b5f8060408385031215611d6557611d646118f5565b5b5f83013567ffffffffffffffff811115611d8257611d816118f9565b5b611d8e85828601611c38565b925050602083013567ffffffffffffffff811115611daf57611dae6118f9565b5b611dbb85828601611d22565b9150509250929050565b5f60208284031215611dda57611dd96118f5565b5b5f611de784828501611ca6565b91505092915050565b5f8060408385031215611e0657611e056118f5565b5b5f611e1385828601611943565b9250506020611e2485828601611943565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611e7257607f821691505b602082108103611e8557611e84611e2e565b5b50919050565b7f43616c6c6572206e6f742077686974656c6973746564210000000000000000005f82015250565b5f611ebf601783611866565b9150611eca82611e8b565b602082019050919050565b5f6020820190508181035f830152611eec81611eb3565b9050919050565b7f7472616e736665723a206e6f742077686974656c6973746564210000000000005f82015250565b5f611f27601a83611866565b9150611f3282611ef3565b602082019050919050565b5f6020820190508181035f830152611f5481611f1b565b9050919050565b7f43616c6c657220697320626c61636b6c697374656421000000000000000000005f82015250565b5f611f8f601683611866565b9150611f9a82611f5b565b602082019050919050565b5f6020820190508181035f830152611fbc81611f83565b9050919050565b7f7472616e736665723a20626c61636b6c697374656421000000000000000000005f82015250565b5f611ff7601683611866565b915061200282611fc3565b602082019050919050565b5f6020820190508181035f83015261202481611feb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61206282611957565b915061206d83611957565b92508282019050808211156120855761208461202b565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6060820190506120cb5f830186611afd565b6120d86020830185611a26565b6120e56040830184611a26565b94935050505056fea26469706673582212205d16428620013585e3b9b35bca2eb6e1ad2d59bbda3610f5653665d3dd6c090864736f6c634300081900330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000074554485441434f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034554480000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c806395d89b41116100b6578063c0a2526c1161007a578063c0a2526c14610361578063dd62ed3e1461037f578063e186891c146103af578063f2fde38b146103cb578063f5524da7146103e7578063f9f92be41461040357610135565b806395d89b41146102ab57806399adafe0146102c95780639b19251a146102e5578063a784d35214610315578063a9059cbb1461033157610135565b8063313ce567116100fd578063313ce5671461020557806357334f541461022357806370a0823114610253578063715018a6146102835780638da5cb5b1461028d57610135565b806306fdde0314610139578063095ea7b3146101575780630a3c52751461018757806318160ddd146101b757806323b872dd146101d5575b5f80fd5b610141610433565b60405161014e91906118cc565b60405180910390f35b610171600480360381019061016c919061198a565b6104c3565b60405161017e91906119e2565b60405180910390f35b6101a1600480360381019061019c91906119fb565b6104e5565b6040516101ae9190611a35565b60405180910390f35b6101bf6104fa565b6040516101cc9190611a35565b60405180910390f35b6101ef60048036038101906101ea9190611a4e565b610503565b6040516101fc91906119e2565b60405180910390f35b61020d610974565b60405161021a9190611ab9565b60405180910390f35b61023d60048036038101906102389190611ad2565b61097c565b60405161024a91906119e2565b60405180910390f35b61026d600480360381019061026891906119fb565b6109b0565b60405161027a9190611a35565b60405180910390f35b61028b6109f5565b005b610295610a08565b6040516102a29190611b0c565b60405180910390f35b6102b3610a30565b6040516102c091906118cc565b60405180910390f35b6102e360048036038101906102de9190611d4f565b610ac0565b005b6102ff60048036038101906102fa91906119fb565b610b7a565b60405161030c91906119e2565b60405180910390f35b61032f600480360381019061032a9190611dc5565b610b97565b005b61034b6004803603810190610346919061198a565b610bbb565b60405161035891906119e2565b60405180910390f35b610369610f17565b6040516103769190611b0c565b60405180910390f35b61039960048036038101906103949190611df0565b610f3d565b6040516103a69190611a35565b60405180910390f35b6103c960048036038101906103c49190611dc5565b610fbf565b005b6103e560048036038101906103e091906119fb565b610fe4565b005b61040160048036038101906103fc9190611d4f565b611068565b005b61041d600480360381019061041891906119fb565b611122565b60405161042a91906119e2565b60405180910390f35b60606003805461044290611e5b565b80601f016020809104026020016040519081016040528092919081815260200182805461046e90611e5b565b80156104b95780601f10610490576101008083540402835291602001916104b9565b820191905f5260205f20905b81548152906001019060200180831161049c57829003601f168201915b5050505050905090565b5f806104cd61113f565b90506104da818585611146565b600191505092915050565b6006602052805f5260405f205f915090505481565b5f600254905090565b5f60095f9054906101000a900460ff16156107035760075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166105a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059890611ed5565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166107025760075f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066f90611f3d565b60405180910390fd5b60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f890611f3d565b60405180910390fd5b5b5b600960019054906101000a900460ff16156108b75760085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156107a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079990611fa5565b60405180910390fd5b60085f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561082c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108239061200d565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16156108b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ad9061200d565b60405180910390fd5b5b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610960578160065f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546109589190612058565b925050819055505b61096b848484611158565b90509392505050565b5f6012905090565b5f6109a9600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611186565b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6109fd6111a8565b610a065f61122f565b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a3f90611e5b565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6b90611e5b565b8015610ab65780601f10610a8d57610100808354040283529160200191610ab6565b820191905f5260205f20905b815481529060010190602001808311610a9957829003601f168201915b5050505050905090565b610ac86111a8565b8051825114610ad5575f80fd5b5f5b8251811015610b7557818181518110610af357610af261208b565b5b602002602001015160085f858481518110610b1157610b1061208b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508080600101915050610ad7565b505050565b6007602052805f5260405f205f915054906101000a900460ff1681565b610b9f6111a8565b8060095f6101000a81548160ff02191690831515021790555050565b5f60095f9054906101000a900460ff1615610d325760075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5090611ed5565b60405180910390fd5b60075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610d315760075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16610d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2790611f3d565b60405180910390fd5b5b5b600960019054906101000a900460ff1615610e5c5760085f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610dd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc890611fa5565b60405180910390fd5b60085f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e529061200d565b60405180910390fd5b5b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f05578160065f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610efd9190612058565b925050819055505b610f0f8383611186565b905092915050565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610fc76111a8565b80600960016101000a81548160ff02191690831515021790555050565b610fec6111a8565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361105c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016110539190611b0c565b60405180910390fd5b6110658161122f565b50565b6110706111a8565b805182511461107d575f80fd5b5f5b825181101561111d5781818151811061109b5761109a61208b565b5b602002602001015160075f8584815181106110b9576110b861208b565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550808060010191505061107f565b505050565b6008602052805f5260405f205f915054906101000a900460ff1681565b5f33905090565b61115383838360016112f2565b505050565b5f8061116261113f565b905061116f8582856114c1565b61117a858585611553565b60019150509392505050565b5f8061119061113f565b905061119d818585611553565b600191505092915050565b6111b061113f565b73ffffffffffffffffffffffffffffffffffffffff166111ce610a08565b73ffffffffffffffffffffffffffffffffffffffff161461122d576111f161113f565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016112249190611b0c565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611362575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016113599190611b0c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113d2575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016113c99190611b0c565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555080156114bb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516114b29190611a35565b60405180910390a35b50505050565b5f6114cc8484610f3d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461154d578181101561153e578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401611535939291906120b8565b60405180910390fd5b61154c84848484035f6112f2565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036115c3575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016115ba9190611b0c565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611633575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161162a9190611b0c565b60405180910390fd5b61163e838383611643565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611693578060025f8282546116879190612058565b92505081905550611761565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561171c578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611713939291906120b8565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036117a8578060025f82825403925050819055506117f2565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161184f9190611a35565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f61189e8261185c565b6118a88185611866565b93506118b8818560208601611876565b6118c181611884565b840191505092915050565b5f6020820190508181035f8301526118e48184611894565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611926826118fd565b9050919050565b6119368161191c565b8114611940575f80fd5b50565b5f813590506119518161192d565b92915050565b5f819050919050565b61196981611957565b8114611973575f80fd5b50565b5f8135905061198481611960565b92915050565b5f80604083850312156119a05761199f6118f5565b5b5f6119ad85828601611943565b92505060206119be85828601611976565b9150509250929050565b5f8115159050919050565b6119dc816119c8565b82525050565b5f6020820190506119f55f8301846119d3565b92915050565b5f60208284031215611a1057611a0f6118f5565b5b5f611a1d84828501611943565b91505092915050565b611a2f81611957565b82525050565b5f602082019050611a485f830184611a26565b92915050565b5f805f60608486031215611a6557611a646118f5565b5b5f611a7286828701611943565b9350506020611a8386828701611943565b9250506040611a9486828701611976565b9150509250925092565b5f60ff82169050919050565b611ab381611a9e565b82525050565b5f602082019050611acc5f830184611aaa565b92915050565b5f60208284031215611ae757611ae66118f5565b5b5f611af484828501611976565b91505092915050565b611b068161191c565b82525050565b5f602082019050611b1f5f830184611afd565b92915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b611b5f82611884565b810181811067ffffffffffffffff82111715611b7e57611b7d611b29565b5b80604052505050565b5f611b906118ec565b9050611b9c8282611b56565b919050565b5f67ffffffffffffffff821115611bbb57611bba611b29565b5b602082029050602081019050919050565b5f80fd5b5f611be2611bdd84611ba1565b611b87565b90508083825260208201905060208402830185811115611c0557611c04611bcc565b5b835b81811015611c2e5780611c1a8882611943565b845260208401935050602081019050611c07565b5050509392505050565b5f82601f830112611c4c57611c4b611b25565b5b8135611c5c848260208601611bd0565b91505092915050565b5f67ffffffffffffffff821115611c7f57611c7e611b29565b5b602082029050602081019050919050565b611c99816119c8565b8114611ca3575f80fd5b50565b5f81359050611cb481611c90565b92915050565b5f611ccc611cc784611c65565b611b87565b90508083825260208201905060208402830185811115611cef57611cee611bcc565b5b835b81811015611d185780611d048882611ca6565b845260208401935050602081019050611cf1565b5050509392505050565b5f82601f830112611d3657611d35611b25565b5b8135611d46848260208601611cba565b91505092915050565b5f8060408385031215611d6557611d646118f5565b5b5f83013567ffffffffffffffff811115611d8257611d816118f9565b5b611d8e85828601611c38565b925050602083013567ffffffffffffffff811115611daf57611dae6118f9565b5b611dbb85828601611d22565b9150509250929050565b5f60208284031215611dda57611dd96118f5565b5b5f611de784828501611ca6565b91505092915050565b5f8060408385031215611e0657611e056118f5565b5b5f611e1385828601611943565b9250506020611e2485828601611943565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680611e7257607f821691505b602082108103611e8557611e84611e2e565b5b50919050565b7f43616c6c6572206e6f742077686974656c6973746564210000000000000000005f82015250565b5f611ebf601783611866565b9150611eca82611e8b565b602082019050919050565b5f6020820190508181035f830152611eec81611eb3565b9050919050565b7f7472616e736665723a206e6f742077686974656c6973746564210000000000005f82015250565b5f611f27601a83611866565b9150611f3282611ef3565b602082019050919050565b5f6020820190508181035f830152611f5481611f1b565b9050919050565b7f43616c6c657220697320626c61636b6c697374656421000000000000000000005f82015250565b5f611f8f601683611866565b9150611f9a82611f5b565b602082019050919050565b5f6020820190508181035f830152611fbc81611f83565b9050919050565b7f7472616e736665723a20626c61636b6c697374656421000000000000000000005f82015250565b5f611ff7601683611866565b915061200282611fc3565b602082019050919050565b5f6020820190508181035f83015261202481611feb565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61206282611957565b915061206d83611957565b92508282019050808211156120855761208461202b565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6060820190506120cb5f830186611afd565b6120d86020830185611a26565b6120e56040830184611a26565b94935050505056fea26469706673582212205d16428620013585e3b9b35bca2eb6e1ad2d59bbda3610f5653665d3dd6c090864736f6c63430008190033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000074554485441434f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034554480000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): ETHTACO
Arg [1] : symbol_ (string): ETH
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [3] : 4554485441434f00000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4554480000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
32339:2820:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16487:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19236:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32389:40;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18045:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33520:776;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17896:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34302:116;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18207:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10091:103;;;:::i;:::-;;9416:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16697:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34887:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32436:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34424:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32899:615;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32589:64;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18775:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34518:88;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10349:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34612:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32484:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16487:91;16532:13;16565:5;16558:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16487:91;:::o;19236:190::-;19309:4;19326:13;19342:12;:10;:12::i;:::-;19326:28;;19365:31;19374:5;19381:7;19390:5;19365:8;:31::i;:::-;19414:4;19407:11;;;19236:190;;;;:::o;32389:40::-;;;;;;;;;;;;;;;;;:::o;18045:99::-;18097:7;18124:12;;18117:19;;18045:99;:::o;33520:776::-;33608:4;33628:8;;;;;;;;;;;33625:296;;;33660:9;:21;33670:10;33660:21;;;;;;;;;;;;;;;;;;;;;;;;;33652:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33728:9;:21;33738:10;33728:21;;;;;;;;;;;;;;;;;;;;;;;;;33724:186;;33777:9;:15;33787:4;33777:15;;;;;;;;;;;;;;;;;;;;;;;;;33769:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;33850:9;:13;33860:2;33850:13;;;;;;;;;;;;;;;;;;;;;;;;;33842:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;33724:186;33625:296;33934:8;;;;;;;;;;;33931:226;;;33967:9;:21;33977:10;33967:21;;;;;;;;;;;;;;;;;;;;;;;;;33966:22;33958:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;34039:9;:15;34049:4;34039:15;;;;;;;;;;;;;;;;;;;;;;;;;34038:16;34030:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;34105:9;:13;34115:2;34105:13;;;;;;;;;;;;;;;;;;;;;;;;;34104:14;34096:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;33931:226;34177:4;;;;;;;;;;;34171:10;;:2;:10;;;34167:62;;34212:5;34197;:11;34203:4;34197:11;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34167:62;34246:42;34272:4;34278:2;34282:5;34246:25;:42::i;:::-;34239:49;;33520:776;;;;;:::o;17896:84::-;17945:5;17970:2;17963:9;;17896:84;:::o;34302:116::-;34352:4;34376:34;34398:4;;;;;;;;;;;34404:5;34376:21;:34::i;:::-;34369:41;;34302:116;;;:::o;18207:118::-;18272:7;18299:9;:18;18309:7;18299:18;;;;;;;;;;;;;;;;18292:25;;18207:118;;;:::o;10091:103::-;9302:13;:11;:13::i;:::-;10156:30:::1;10183:1;10156:18;:30::i;:::-;10091:103::o:0;9416:87::-;9462:7;9489:6;;;;;;;;;;;9482:13;;9416:87;:::o;16697:95::-;16744:13;16777:7;16770:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16697:95;:::o;34887:269::-;9302:13;:11;:13::i;:::-;35013:7:::1;:14;34992:10;:17;:35;34984:44;;;::::0;::::1;;35043:9;35039:110;35062:10;:17;35058:1;:21;35039:110;;;35127:7;35135:1;35127:10;;;;;;;;:::i;:::-;;;;;;;;35100:9;:24;35110:10;35121:1;35110:13;;;;;;;;:::i;:::-;;;;;;;;35100:24;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;35081:3;;;;;;;35039:110;;;;34887:269:::0;;:::o;32436:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;34424:88::-;9302:13;:11;:13::i;:::-;34498:6:::1;34487:8;;:17;;;;;;;;;;;;;;;;;;34424:88:::0;:::o;32899:615::-;32969:4;32989:8;;;;;;;;;;;32986:223;;;33021:9;:21;33031:10;33021:21;;;;;;;;;;;;;;;;;;;;;;;;;33013:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33089:9;:21;33099:10;33089:21;;;;;;;;;;;;;;;;;;;;;;;;;33085:113;;33138:9;:13;33148:2;33138:13;;;;;;;;;;;;;;;;;;;;;;;;;33130:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;33085:113;32986:223;33222:8;;;;;;;;;;;33219:160;;;33255:9;:21;33265:10;33255:21;;;;;;;;;;;;;;;;;;;;;;;;;33254:22;33246:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;33327:9;:13;33337:2;33327:13;;;;;;;;;;;;;;;;;;;;;;;;;33326:14;33318:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;33219:160;33399:4;;;;;;;;;;;33393:10;;:2;:10;;;33389:68;;33440:5;33419;:17;33425:10;33419:17;;;;;;;;;;;;;;;;:26;;;;;;;:::i;:::-;;;;;;;;33389:68;33474:32;33496:2;33500:5;33474:21;:32::i;:::-;33467:39;;32899:615;;;;:::o;32589:64::-;;;;;;;;;;;;;:::o;18775:142::-;18855:7;18882:11;:18;18894:5;18882:18;;;;;;;;;;;;;;;:27;18901:7;18882:27;;;;;;;;;;;;;;;;18875:34;;18775:142;;;;:::o;34518:88::-;9302:13;:11;:13::i;:::-;34592:6:::1;34581:8;;:17;;;;;;;;;;;;;;;;;;34518:88:::0;:::o;10349:220::-;9302:13;:11;:13::i;:::-;10454:1:::1;10434:22;;:8;:22;;::::0;10430:93:::1;;10508:1;10480:31;;;;;;;;;;;:::i;:::-;;;;;;;;10430:93;10533:28;10552:8;10533:18;:28::i;:::-;10349:220:::0;:::o;34612:269::-;9302:13;:11;:13::i;:::-;34738:7:::1;:14;34717:10;:17;:35;34709:44;;;::::0;::::1;;34768:9;34764:110;34787:10;:17;34783:1;:21;34764:110;;;34852:7;34860:1;34852:10;;;;;;;;:::i;:::-;;;;;;;;34825:9;:24;34835:10;34846:1;34835:13;;;;;;;;:::i;:::-;;;;;;;;34825:24;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;34806:3;;;;;;;34764:110;;;;34612:269:::0;;:::o;32484:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;7425:98::-;7478:7;7505:10;7498:17;;7425:98;:::o;24063:130::-;24148:37;24157:5;24164:7;24173:5;24180:4;24148:8;:37::i;:::-;24063:130;;;:::o;20004:249::-;20091:4;20108:15;20126:12;:10;:12::i;:::-;20108:30;;20149:37;20165:4;20171:7;20180:5;20149:15;:37::i;:::-;20197:26;20207:4;20213:2;20217:5;20197:9;:26::i;:::-;20241:4;20234:11;;;20004:249;;;;;:::o;18530:182::-;18599:4;18616:13;18632:12;:10;:12::i;:::-;18616:28;;18655:27;18665:5;18672:2;18676:5;18655:9;:27::i;:::-;18700:4;18693:11;;;18530:182;;;;:::o;9581:166::-;9652:12;:10;:12::i;:::-;9641:23;;:7;:5;:7::i;:::-;:23;;;9637:103;;9715:12;:10;:12::i;:::-;9688:40;;;;;;;;;;;:::i;:::-;;;;;;;;9637:103;9581:166::o;10729:191::-;10803:16;10822:6;;;;;;;;;;;10803:25;;10848:8;10839:6;;:17;;;;;;;;;;;;;;;;;;10903:8;10872:40;;10893:8;10872:40;;;;;;;;;;;;10792:128;10729:191;:::o;25044:443::-;25174:1;25157:19;;:5;:19;;;25153:91;;25229:1;25200:32;;;;;;;;;;;:::i;:::-;;;;;;;;25153:91;25277:1;25258:21;;:7;:21;;;25254:92;;25331:1;25303:31;;;;;;;;;;;:::i;:::-;;;;;;;;25254:92;25386:5;25356:11;:18;25368:5;25356:18;;;;;;;;;;;;;;;:27;25375:7;25356:27;;;;;;;;;;;;;;;:35;;;;25406:9;25402:78;;;25453:7;25437:31;;25446:5;25437:31;;;25462:5;25437:31;;;;;;:::i;:::-;;;;;;;;25402:78;25044:443;;;;:::o;25779:487::-;25879:24;25906:25;25916:5;25923:7;25906:9;:25::i;:::-;25879:52;;25966:17;25946:16;:37;25942:317;;26023:5;26004:16;:24;26000:132;;;26083:7;26092:16;26110:5;26056:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;26000:132;26175:57;26184:5;26191:7;26219:5;26200:16;:24;26226:5;26175:8;:57::i;:::-;25942:317;25868:398;25779:487;;;:::o;20638:308::-;20738:1;20722:18;;:4;:18;;;20718:88;;20791:1;20764:30;;;;;;;;;;;:::i;:::-;;;;;;;;20718:88;20834:1;20820:16;;:2;:16;;;20816:88;;20889:1;20860:32;;;;;;;;;;;:::i;:::-;;;;;;;;20816:88;20914:24;20922:4;20928:2;20932:5;20914:7;:24::i;:::-;20638:308;;;:::o;21270:1135::-;21376:1;21360:18;;:4;:18;;;21356:552;;21514:5;21498:12;;:21;;;;;;;:::i;:::-;;;;;;;;21356:552;;;21552:19;21574:9;:15;21584:4;21574:15;;;;;;;;;;;;;;;;21552:37;;21622:5;21608:11;:19;21604:117;;;21680:4;21686:11;21699:5;21655:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;21604:117;21876:5;21862:11;:19;21844:9;:15;21854:4;21844:15;;;;;;;;;;;;;;;:37;;;;21537:371;21356:552;21938:1;21924:16;;:2;:16;;;21920:435;;22106:5;22090:12;;:21;;;;;;;;;;;21920:435;;;22323:5;22306:9;:13;22316:2;22306:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;21920:435;22387:2;22372:25;;22381:4;22372:25;;;22391:5;22372:25;;;;;;:::i;:::-;;;;;;;;21270:1135;;;:::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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:329::-;3398:6;3447:2;3435:9;3426:7;3422:23;3418:32;3415:119;;;3453:79;;:::i;:::-;3415:119;3573:1;3598:53;3643:7;3634:6;3623:9;3619:22;3598:53;:::i;:::-;3588:63;;3544:117;3339:329;;;;:::o;3674:118::-;3761:24;3779:5;3761:24;:::i;:::-;3756:3;3749:37;3674:118;;:::o;3798:222::-;3891:4;3929:2;3918:9;3914:18;3906:26;;3942:71;4010:1;3999:9;3995:17;3986:6;3942:71;:::i;:::-;3798:222;;;;:::o;4026:619::-;4103:6;4111;4119;4168:2;4156:9;4147:7;4143:23;4139:32;4136:119;;;4174:79;;:::i;:::-;4136:119;4294:1;4319:53;4364:7;4355:6;4344:9;4340:22;4319:53;:::i;:::-;4309:63;;4265:117;4421:2;4447:53;4492:7;4483:6;4472:9;4468:22;4447:53;:::i;:::-;4437:63;;4392:118;4549:2;4575:53;4620:7;4611:6;4600:9;4596:22;4575:53;:::i;:::-;4565:63;;4520:118;4026:619;;;;;:::o;4651:86::-;4686:7;4726:4;4719:5;4715:16;4704:27;;4651:86;;;:::o;4743:112::-;4826:22;4842:5;4826:22;:::i;:::-;4821:3;4814:35;4743:112;;:::o;4861:214::-;4950:4;4988:2;4977:9;4973:18;4965:26;;5001:67;5065:1;5054:9;5050:17;5041:6;5001:67;:::i;:::-;4861:214;;;;:::o;5081:329::-;5140:6;5189:2;5177:9;5168:7;5164:23;5160:32;5157:119;;;5195:79;;:::i;:::-;5157:119;5315:1;5340:53;5385:7;5376:6;5365:9;5361:22;5340:53;:::i;:::-;5330:63;;5286:117;5081:329;;;;:::o;5416:118::-;5503:24;5521:5;5503:24;:::i;:::-;5498:3;5491:37;5416:118;;:::o;5540:222::-;5633:4;5671:2;5660:9;5656:18;5648:26;;5684:71;5752:1;5741:9;5737:17;5728:6;5684:71;:::i;:::-;5540:222;;;;:::o;5768:117::-;5877:1;5874;5867:12;5891:180;5939:77;5936:1;5929:88;6036:4;6033:1;6026:15;6060:4;6057:1;6050:15;6077:281;6160:27;6182:4;6160:27;:::i;:::-;6152:6;6148:40;6290:6;6278:10;6275:22;6254:18;6242:10;6239:34;6236:62;6233:88;;;6301:18;;:::i;:::-;6233:88;6341:10;6337:2;6330:22;6120:238;6077:281;;:::o;6364:129::-;6398:6;6425:20;;:::i;:::-;6415:30;;6454:33;6482:4;6474:6;6454:33;:::i;:::-;6364:129;;;:::o;6499:311::-;6576:4;6666:18;6658:6;6655:30;6652:56;;;6688:18;;:::i;:::-;6652:56;6738:4;6730:6;6726:17;6718:25;;6798:4;6792;6788:15;6780:23;;6499:311;;;:::o;6816:117::-;6925:1;6922;6915:12;6956:710;7052:5;7077:81;7093:64;7150:6;7093:64;:::i;:::-;7077:81;:::i;:::-;7068:90;;7178:5;7207:6;7200:5;7193:21;7241:4;7234:5;7230:16;7223:23;;7294:4;7286:6;7282:17;7274:6;7270:30;7323:3;7315:6;7312:15;7309:122;;;7342:79;;:::i;:::-;7309:122;7457:6;7440:220;7474:6;7469:3;7466:15;7440:220;;;7549:3;7578:37;7611:3;7599:10;7578:37;:::i;:::-;7573:3;7566:50;7645:4;7640:3;7636:14;7629:21;;7516:144;7500:4;7495:3;7491:14;7484:21;;7440:220;;;7444:21;7058:608;;6956:710;;;;;:::o;7689:370::-;7760:5;7809:3;7802:4;7794:6;7790:17;7786:27;7776:122;;7817:79;;:::i;:::-;7776:122;7934:6;7921:20;7959:94;8049:3;8041:6;8034:4;8026:6;8022:17;7959:94;:::i;:::-;7950:103;;7766:293;7689:370;;;;:::o;8065:308::-;8139:4;8229:18;8221:6;8218:30;8215:56;;;8251:18;;:::i;:::-;8215:56;8301:4;8293:6;8289:17;8281:25;;8361:4;8355;8351:15;8343:23;;8065:308;;;:::o;8379:116::-;8449:21;8464:5;8449:21;:::i;:::-;8442:5;8439:32;8429:60;;8485:1;8482;8475:12;8429:60;8379:116;:::o;8501:133::-;8544:5;8582:6;8569:20;8560:29;;8598:30;8622:5;8598:30;:::i;:::-;8501:133;;;;:::o;8654:701::-;8747:5;8772:78;8788:61;8842:6;8788:61;:::i;:::-;8772:78;:::i;:::-;8763:87;;8870:5;8899:6;8892:5;8885:21;8933:4;8926:5;8922:16;8915:23;;8986:4;8978:6;8974:17;8966:6;8962:30;9015:3;9007:6;9004:15;9001:122;;;9034:79;;:::i;:::-;9001:122;9149:6;9132:217;9166:6;9161:3;9158:15;9132:217;;;9241:3;9270:34;9300:3;9288:10;9270:34;:::i;:::-;9265:3;9258:47;9334:4;9329:3;9325:14;9318:21;;9208:141;9192:4;9187:3;9183:14;9176:21;;9132:217;;;9136:21;8753:602;;8654:701;;;;;:::o;9375:364::-;9443:5;9492:3;9485:4;9477:6;9473:17;9469:27;9459:122;;9500:79;;:::i;:::-;9459:122;9617:6;9604:20;9642:91;9729:3;9721:6;9714:4;9706:6;9702:17;9642:91;:::i;:::-;9633:100;;9449:290;9375:364;;;;:::o;9745:888::-;9860:6;9868;9917:2;9905:9;9896:7;9892:23;9888:32;9885:119;;;9923:79;;:::i;:::-;9885:119;10071:1;10060:9;10056:17;10043:31;10101:18;10093:6;10090:30;10087:117;;;10123:79;;:::i;:::-;10087:117;10228:78;10298:7;10289:6;10278:9;10274:22;10228:78;:::i;:::-;10218:88;;10014:302;10383:2;10372:9;10368:18;10355:32;10414:18;10406:6;10403:30;10400:117;;;10436:79;;:::i;:::-;10400:117;10541:75;10608:7;10599:6;10588:9;10584:22;10541:75;:::i;:::-;10531:85;;10326:300;9745:888;;;;;:::o;10639:323::-;10695:6;10744:2;10732:9;10723:7;10719:23;10715:32;10712:119;;;10750:79;;:::i;:::-;10712:119;10870:1;10895:50;10937:7;10928:6;10917:9;10913:22;10895:50;:::i;:::-;10885:60;;10841:114;10639:323;;;;:::o;10968:474::-;11036:6;11044;11093:2;11081:9;11072:7;11068:23;11064:32;11061:119;;;11099:79;;:::i;:::-;11061:119;11219:1;11244:53;11289:7;11280:6;11269:9;11265:22;11244:53;:::i;:::-;11234:63;;11190:117;11346:2;11372:53;11417:7;11408:6;11397:9;11393:22;11372:53;:::i;:::-;11362:63;;11317:118;10968:474;;;;;:::o;11448:180::-;11496:77;11493:1;11486:88;11593:4;11590:1;11583:15;11617:4;11614:1;11607:15;11634:320;11678:6;11715:1;11709:4;11705:12;11695:22;;11762:1;11756:4;11752:12;11783:18;11773:81;;11839:4;11831:6;11827:17;11817:27;;11773:81;11901:2;11893:6;11890:14;11870:18;11867:38;11864:84;;11920:18;;:::i;:::-;11864:84;11685:269;11634:320;;;:::o;11960:173::-;12100:25;12096:1;12088:6;12084:14;12077:49;11960:173;:::o;12139:366::-;12281:3;12302:67;12366:2;12361:3;12302:67;:::i;:::-;12295:74;;12378:93;12467:3;12378:93;:::i;:::-;12496:2;12491:3;12487:12;12480:19;;12139:366;;;:::o;12511:419::-;12677:4;12715:2;12704:9;12700:18;12692:26;;12764:9;12758:4;12754:20;12750:1;12739:9;12735:17;12728:47;12792:131;12918:4;12792:131;:::i;:::-;12784:139;;12511:419;;;:::o;12936:176::-;13076:28;13072:1;13064:6;13060:14;13053:52;12936:176;:::o;13118:366::-;13260:3;13281:67;13345:2;13340:3;13281:67;:::i;:::-;13274:74;;13357:93;13446:3;13357:93;:::i;:::-;13475:2;13470:3;13466:12;13459:19;;13118:366;;;:::o;13490:419::-;13656:4;13694:2;13683:9;13679:18;13671:26;;13743:9;13737:4;13733:20;13729:1;13718:9;13714:17;13707:47;13771:131;13897:4;13771:131;:::i;:::-;13763:139;;13490:419;;;:::o;13915:172::-;14055:24;14051:1;14043:6;14039:14;14032:48;13915:172;:::o;14093:366::-;14235:3;14256:67;14320:2;14315:3;14256:67;:::i;:::-;14249:74;;14332:93;14421:3;14332:93;:::i;:::-;14450:2;14445:3;14441:12;14434:19;;14093:366;;;:::o;14465:419::-;14631:4;14669:2;14658:9;14654:18;14646:26;;14718:9;14712:4;14708:20;14704:1;14693:9;14689:17;14682:47;14746:131;14872:4;14746:131;:::i;:::-;14738:139;;14465:419;;;:::o;14890:172::-;15030:24;15026:1;15018:6;15014:14;15007:48;14890:172;:::o;15068:366::-;15210:3;15231:67;15295:2;15290:3;15231:67;:::i;:::-;15224:74;;15307:93;15396:3;15307:93;:::i;:::-;15425:2;15420:3;15416:12;15409:19;;15068:366;;;:::o;15440:419::-;15606:4;15644:2;15633:9;15629:18;15621:26;;15693:9;15687:4;15683:20;15679:1;15668:9;15664:17;15657:47;15721:131;15847:4;15721:131;:::i;:::-;15713:139;;15440:419;;;:::o;15865:180::-;15913:77;15910:1;15903:88;16010:4;16007:1;16000:15;16034:4;16031:1;16024:15;16051:191;16091:3;16110:20;16128:1;16110:20;:::i;:::-;16105:25;;16144:20;16162:1;16144:20;:::i;:::-;16139:25;;16187:1;16184;16180:9;16173:16;;16208:3;16205:1;16202:10;16199:36;;;16215:18;;:::i;:::-;16199:36;16051:191;;;;:::o;16248:180::-;16296:77;16293:1;16286:88;16393:4;16390:1;16383:15;16417:4;16414:1;16407:15;16434:442;16583:4;16621:2;16610:9;16606:18;16598:26;;16634:71;16702:1;16691:9;16687:17;16678:6;16634:71;:::i;:::-;16715:72;16783:2;16772:9;16768:18;16759:6;16715:72;:::i;:::-;16797;16865:2;16854:9;16850:18;16841:6;16797:72;:::i;:::-;16434:442;;;;;;:::o
Swarm Source
ipfs://5d16428620013585e3b9b35bca2eb6e1ad2d59bbda3610f5653665d3dd6c0908
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.