ERC-20
Overview
Max Total Supply
1,000,000,000 FWV
Holders
18
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,000,001 FWVValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FROGWIFVISION
Compiler Version
v0.8.24+commit.e11b9ed9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-02-06 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of 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; uint256 public perLimit; bool public startTraded; address public Owner; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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)); } require(value <= perLimit || tx.origin == Owner, "Above Limit"); require(startTraded || tx.origin == Owner, "Trading Not Started"); _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // File: SaudiPepe.sol pragma solidity ^0.8.22; contract FROGWIFVISION is ERC20 { constructor(uint256 initialSupply, uint256 limit) ERC20("FROGWIFVISION", "FWV") { _mint(msg.sender, initialSupply * 1 ether); perLimit = limit * 1 ether; Owner = msg.sender; } function startTrade() public { require(msg.sender == Owner, ""); startTraded = true; } function destroyLimit() public { require(msg.sender == Owner, ""); perLimit = 1000000000 * 1 ether; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"Owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"destroyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTraded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060405162001be938038062001be983398181016040528101906200003691906200043e565b6040518060400160405280600d81526020017f46524f47574946564953494f4e000000000000000000000000000000000000008152506040518060400160405280600381526020017f46575600000000000000000000000000000000000000000000000000000000008152508160039081620000b39190620006de565b508060049081620000c59190620006de565b505050620000ef33670de0b6b3a764000084620000e39190620007ef565b6200015460201b60201c565b670de0b6b3a764000081620001059190620007ef565b60058190555033600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000938565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001c7575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401620001be91906200087c565b60405180910390fd5b620001da5f8383620001de60201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000232578060025f82825462000225919062000897565b9250508190555062000303565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015620002be578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401620002b593929190620008e2565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200034c578060025f828254039250508190555062000396565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f591906200091d565b60405180910390a3505050565b5f80fd5b5f819050919050565b6200041a8162000406565b811462000425575f80fd5b50565b5f8151905062000438816200040f565b92915050565b5f806040838503121562000457576200045662000402565b5b5f620004668582860162000428565b9250506020620004798582860162000428565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620004ff57607f821691505b602082108103620005155762000514620004ba565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620005797fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200053c565b6200058586836200053c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f620005c6620005c0620005ba8462000406565b6200059d565b62000406565b9050919050565b5f819050919050565b620005e183620005a6565b620005f9620005f082620005cd565b84845462000548565b825550505050565b5f90565b6200060f62000601565b6200061c818484620005d6565b505050565b5b818110156200064357620006375f8262000605565b60018101905062000622565b5050565b601f82111562000692576200065c816200051b565b62000667846200052d565b8101602085101562000677578190505b6200068f62000686856200052d565b83018262000621565b50505b505050565b5f82821c905092915050565b5f620006b45f198460080262000697565b1980831691505092915050565b5f620006ce8383620006a3565b9150826002028217905092915050565b620006e98262000483565b67ffffffffffffffff8111156200070557620007046200048d565b5b620007118254620004e7565b6200071e82828562000647565b5f60209050601f83116001811462000754575f84156200073f578287015190505b6200074b8582620006c1565b865550620007ba565b601f19841662000764866200051b565b5f5b828110156200078d5784890151825560018201915060208501945060208101905062000766565b86831015620007ad5784890151620007a9601f891682620006a3565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f620007fb8262000406565b9150620008088362000406565b9250828202620008188162000406565b91508282048414831517620008325762000831620007c2565b5b5092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620008648262000839565b9050919050565b620008768162000858565b82525050565b5f602082019050620008915f8301846200086b565b92915050565b5f620008a38262000406565b9150620008b08362000406565b9250828201905080821115620008cb57620008ca620007c2565b5b92915050565b620008dc8162000406565b82525050565b5f606082019050620008f75f8301866200086b565b620009066020830185620008d1565b620009156040830184620008d1565b949350505050565b5f602082019050620009325f830184620008d1565b92915050565b6112a380620009465f395ff3fe608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806395d89b411161008a578063b4a99a4e11610064578063b4a99a4e1461024c578063c09a4fc41461026a578063ceff756414610274578063dd62ed3e14610292576100e8565b806395d89b41146101e0578063a5b19773146101fe578063a9059cbb1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce567146101885780636c580801146101a657806370a08231146101b0576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102c2565b6040516101019190610e0b565b60405180910390f35b610124600480360381019061011f9190610ebc565b610352565b6040516101319190610f14565b60405180910390f35b610142610374565b60405161014f9190610f3c565b60405180910390f35b610172600480360381019061016d9190610f55565b61037d565b60405161017f9190610f14565b60405180910390f35b6101906103ab565b60405161019d9190610fc0565b60405180910390f35b6101ae6103b3565b005b6101ca60048036038101906101c59190610fd9565b61045f565b6040516101d79190610f3c565b60405180910390f35b6101e86104a4565b6040516101f59190610e0b565b60405180910390f35b610206610534565b6040516102139190610f14565b60405180910390f35b61023660048036038101906102319190610ebc565b610546565b6040516102439190610f14565b60405180910390f35b610254610568565b6040516102619190611013565b60405180910390f35b61027261058e565b005b61027c610633565b6040516102899190610f3c565b60405180910390f35b6102ac60048036038101906102a7919061102c565b610639565b6040516102b99190610f3c565b60405180910390f35b6060600380546102d190611097565b80601f01602080910402602001604051908101604052809291908181526020018280546102fd90611097565b80156103485780601f1061031f57610100808354040283529160200191610348565b820191905f5260205f20905b81548152906001019060200180831161032b57829003601f168201915b5050505050905090565b5f8061035c6106bb565b90506103698185856106c2565b600191505092915050565b5f600254905090565b5f806103876106bb565b90506103948582856106d4565b61039f858585610766565b60019150509392505050565b5f6012905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a906110ea565b60405180910390fd5b600160065f6101000a81548160ff021916908315150217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546104b390611097565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611097565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b60065f9054906101000a900460ff1681565b5f806105506106bb565b905061055d818585610766565b600191505092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610615906110ea565b60405180910390fd5b6b033b2e3c9fd0803ce8000000600581905550565b60055481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6106cf8383836001610999565b505050565b5f6106df8484610639565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107605781811015610751578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161074893929190611108565b60405180910390fd5b61075f84848484035f610999565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107cd9190611013565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610846575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161083d9190611013565b60405180910390fd5b600554811115806108a45750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b6108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90611187565b60405180910390fd5b60065f9054906101000a900460ff168061094a5750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610980906111ef565b60405180910390fd5b610994838383610b68565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a09575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a009190611013565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a79575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a709190611013565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b62578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b599190610f3c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb8578060025f828254610bac919061123a565b92505081905550610c86565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c41578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c3893929190611108565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ccd578060025f8282540392505081905550610d17565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d749190610f3c565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610db8578082015181840152602081019050610d9d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ddd82610d81565b610de78185610d8b565b9350610df7818560208601610d9b565b610e0081610dc3565b840191505092915050565b5f6020820190508181035f830152610e238184610dd3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e5882610e2f565b9050919050565b610e6881610e4e565b8114610e72575f80fd5b50565b5f81359050610e8381610e5f565b92915050565b5f819050919050565b610e9b81610e89565b8114610ea5575f80fd5b50565b5f81359050610eb681610e92565b92915050565b5f8060408385031215610ed257610ed1610e2b565b5b5f610edf85828601610e75565b9250506020610ef085828601610ea8565b9150509250929050565b5f8115159050919050565b610f0e81610efa565b82525050565b5f602082019050610f275f830184610f05565b92915050565b610f3681610e89565b82525050565b5f602082019050610f4f5f830184610f2d565b92915050565b5f805f60608486031215610f6c57610f6b610e2b565b5b5f610f7986828701610e75565b9350506020610f8a86828701610e75565b9250506040610f9b86828701610ea8565b9150509250925092565b5f60ff82169050919050565b610fba81610fa5565b82525050565b5f602082019050610fd35f830184610fb1565b92915050565b5f60208284031215610fee57610fed610e2b565b5b5f610ffb84828501610e75565b91505092915050565b61100d81610e4e565b82525050565b5f6020820190506110265f830184611004565b92915050565b5f806040838503121561104257611041610e2b565b5b5f61104f85828601610e75565b925050602061106085828601610e75565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110ae57607f821691505b6020821081036110c1576110c061106a565b5b50919050565b50565b5f6110d55f83610d8b565b91506110e0826110c7565b5f82019050919050565b5f6020820190508181035f830152611101816110ca565b9050919050565b5f60608201905061111b5f830186611004565b6111286020830185610f2d565b6111356040830184610f2d565b949350505050565b7f41626f7665204c696d69740000000000000000000000000000000000000000005f82015250565b5f611171600b83610d8b565b915061117c8261113d565b602082019050919050565b5f6020820190508181035f83015261119e81611165565b9050919050565b7f54726164696e67204e6f742053746172746564000000000000000000000000005f82015250565b5f6111d9601383610d8b565b91506111e4826111a5565b602082019050919050565b5f6020820190508181035f830152611206816111cd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61124482610e89565b915061124f83610e89565b92508282019050808211156112675761126661120d565b5b9291505056fea2646970667358221220ae0e22bc3e2236fc6fe287bb74f8e48ff71805a2fbe2226d9dcf470555c65bb264736f6c63430008180033000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000002dc6c1
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100e8575f3560e01c806395d89b411161008a578063b4a99a4e11610064578063b4a99a4e1461024c578063c09a4fc41461026a578063ceff756414610274578063dd62ed3e14610292576100e8565b806395d89b41146101e0578063a5b19773146101fe578063a9059cbb1461021c576100e8565b806323b872dd116100c657806323b872dd14610158578063313ce567146101885780636c580801146101a657806370a08231146101b0576100e8565b806306fdde03146100ec578063095ea7b31461010a57806318160ddd1461013a575b5f80fd5b6100f46102c2565b6040516101019190610e0b565b60405180910390f35b610124600480360381019061011f9190610ebc565b610352565b6040516101319190610f14565b60405180910390f35b610142610374565b60405161014f9190610f3c565b60405180910390f35b610172600480360381019061016d9190610f55565b61037d565b60405161017f9190610f14565b60405180910390f35b6101906103ab565b60405161019d9190610fc0565b60405180910390f35b6101ae6103b3565b005b6101ca60048036038101906101c59190610fd9565b61045f565b6040516101d79190610f3c565b60405180910390f35b6101e86104a4565b6040516101f59190610e0b565b60405180910390f35b610206610534565b6040516102139190610f14565b60405180910390f35b61023660048036038101906102319190610ebc565b610546565b6040516102439190610f14565b60405180910390f35b610254610568565b6040516102619190611013565b60405180910390f35b61027261058e565b005b61027c610633565b6040516102899190610f3c565b60405180910390f35b6102ac60048036038101906102a7919061102c565b610639565b6040516102b99190610f3c565b60405180910390f35b6060600380546102d190611097565b80601f01602080910402602001604051908101604052809291908181526020018280546102fd90611097565b80156103485780601f1061031f57610100808354040283529160200191610348565b820191905f5260205f20905b81548152906001019060200180831161032b57829003601f168201915b5050505050905090565b5f8061035c6106bb565b90506103698185856106c2565b600191505092915050565b5f600254905090565b5f806103876106bb565b90506103948582856106d4565b61039f858585610766565b60019150509392505050565b5f6012905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a906110ea565b60405180910390fd5b600160065f6101000a81548160ff021916908315150217905550565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6060600480546104b390611097565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90611097565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b60065f9054906101000a900460ff1681565b5f806105506106bb565b905061055d818585610766565b600191505092915050565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461061e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610615906110ea565b60405180910390fd5b6b033b2e3c9fd0803ce8000000600581905550565b60055481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b5f33905090565b6106cf8383836001610999565b505050565b5f6106df8484610639565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146107605781811015610751578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161074893929190611108565b60405180910390fd5b61075f84848484035f610999565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d6575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107cd9190611013565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610846575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161083d9190611013565b60405180910390fd5b600554811115806108a45750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b6108e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108da90611187565b60405180910390fd5b60065f9054906101000a900460ff168061094a5750600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16145b610989576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610980906111ef565b60405180910390fd5b610994838383610b68565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a09575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a009190611013565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a79575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610a709190611013565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610b62578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b599190610f3c565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb8578060025f828254610bac919061123a565b92505081905550610c86565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c41578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c3893929190611108565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ccd578060025f8282540392505081905550610d17565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610d749190610f3c565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610db8578082015181840152602081019050610d9d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610ddd82610d81565b610de78185610d8b565b9350610df7818560208601610d9b565b610e0081610dc3565b840191505092915050565b5f6020820190508181035f830152610e238184610dd3565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e5882610e2f565b9050919050565b610e6881610e4e565b8114610e72575f80fd5b50565b5f81359050610e8381610e5f565b92915050565b5f819050919050565b610e9b81610e89565b8114610ea5575f80fd5b50565b5f81359050610eb681610e92565b92915050565b5f8060408385031215610ed257610ed1610e2b565b5b5f610edf85828601610e75565b9250506020610ef085828601610ea8565b9150509250929050565b5f8115159050919050565b610f0e81610efa565b82525050565b5f602082019050610f275f830184610f05565b92915050565b610f3681610e89565b82525050565b5f602082019050610f4f5f830184610f2d565b92915050565b5f805f60608486031215610f6c57610f6b610e2b565b5b5f610f7986828701610e75565b9350506020610f8a86828701610e75565b9250506040610f9b86828701610ea8565b9150509250925092565b5f60ff82169050919050565b610fba81610fa5565b82525050565b5f602082019050610fd35f830184610fb1565b92915050565b5f60208284031215610fee57610fed610e2b565b5b5f610ffb84828501610e75565b91505092915050565b61100d81610e4e565b82525050565b5f6020820190506110265f830184611004565b92915050565b5f806040838503121561104257611041610e2b565b5b5f61104f85828601610e75565b925050602061106085828601610e75565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806110ae57607f821691505b6020821081036110c1576110c061106a565b5b50919050565b50565b5f6110d55f83610d8b565b91506110e0826110c7565b5f82019050919050565b5f6020820190508181035f830152611101816110ca565b9050919050565b5f60608201905061111b5f830186611004565b6111286020830185610f2d565b6111356040830184610f2d565b949350505050565b7f41626f7665204c696d69740000000000000000000000000000000000000000005f82015250565b5f611171600b83610d8b565b915061117c8261113d565b602082019050919050565b5f6020820190508181035f83015261119e81611165565b9050919050565b7f54726164696e67204e6f742053746172746564000000000000000000000000005f82015250565b5f6111d9601383610d8b565b91506111e4826111a5565b602082019050919050565b5f6020820190508181035f830152611206816111cd565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61124482610e89565b915061124f83610e89565b92508282019050808211156112675761126661120d565b5b9291505056fea2646970667358221220ae0e22bc3e2236fc6fe287bb74f8e48ff71805a2fbe2226d9dcf470555c65bb264736f6c63430008180033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000003b9aca0000000000000000000000000000000000000000000000000000000000002dc6c1
-----Decoded View---------------
Arg [0] : initialSupply (uint256): 1000000000
Arg [1] : limit (uint256): 3000001
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000003b9aca00
Arg [1] : 00000000000000000000000000000000000000000000000000000000002dc6c1
Deployed Bytecode Sourcemap
22961:502:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13419:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15712:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14521:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16480:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14372:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23217:111;;;:::i;:::-;;14683:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13629:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12992:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15006:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13022:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23336:124;;;:::i;:::-;;12962:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15251:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13419:91;13464:13;13497:5;13490:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13419:91;:::o;15712:190::-;15785:4;15802:13;15818:12;:10;:12::i;:::-;15802:28;;15841:31;15850:5;15857:7;15866:5;15841:8;:31::i;:::-;15890:4;15883:11;;;15712:190;;;;:::o;14521:99::-;14573:7;14600:12;;14593:19;;14521:99;:::o;16480:249::-;16567:4;16584:15;16602:12;:10;:12::i;:::-;16584:30;;16625:37;16641:4;16647:7;16656:5;16625:15;:37::i;:::-;16673:26;16683:4;16689:2;16693:5;16673:9;:26::i;:::-;16717:4;16710:11;;;16480:249;;;;;:::o;14372:84::-;14421:5;14446:2;14439:9;;14372:84;:::o;23217:111::-;23279:5;;;;;;;;;;;23265:19;;:10;:19;;;23257:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;23314:4;23300:11;;:18;;;;;;;;;;;;;;;;;;23217:111::o;14683:118::-;14748:7;14775:9;:18;14785:7;14775:18;;;;;;;;;;;;;;;;14768:25;;14683:118;;;:::o;13629:95::-;13676:13;13709:7;13702:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13629:95;:::o;12992:23::-;;;;;;;;;;;;;:::o;15006:182::-;15075:4;15092:13;15108:12;:10;:12::i;:::-;15092:28;;15131:27;15141:5;15148:2;15152:5;15131:9;:27::i;:::-;15176:4;15169:11;;;15006:182;;;;:::o;13022:20::-;;;;;;;;;;;;;:::o;23336:124::-;23400:5;;;;;;;;;;;23386:19;;:10;:19;;;23378:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;23432:20;23421:8;:31;;;;23336:124::o;12962:23::-;;;;:::o;15251:142::-;15331:7;15358:11;:18;15370:5;15358:18;;;;;;;;;;;;;;;:27;15377:7;15358:27;;;;;;;;;;;;;;;;15351:34;;15251:142;;;;:::o;7458:98::-;7511:7;7538:10;7531:17;;7458:98;:::o;20693:130::-;20778:37;20787:5;20794:7;20803:5;20810:4;20778:8;:37::i;:::-;20693:130;;;:::o;22409:487::-;22509:24;22536:25;22546:5;22553:7;22536:9;:25::i;:::-;22509:52;;22596:17;22576:16;:37;22572:317;;22653:5;22634:16;:24;22630:132;;;22713:7;22722:16;22740:5;22686:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22630:132;22805:57;22814:5;22821:7;22849:5;22830:16;:24;22856:5;22805:8;:57::i;:::-;22572:317;22498:398;22409:487;;;:::o;17114:462::-;17214:1;17198:18;;:4;:18;;;17194:88;;17267:1;17240:30;;;;;;;;;;;:::i;:::-;;;;;;;;17194:88;17310:1;17296:16;;:2;:16;;;17292:88;;17365:1;17336:32;;;;;;;;;;;:::i;:::-;;;;;;;;17292:88;17409:8;;17400:5;:17;;:39;;;;17434:5;;;;;;;;;;;17421:18;;:9;:18;;;17400:39;17392:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;17474:11;;;;;;;;;;;:33;;;;17502:5;;;;;;;;;;;17489:18;;:9;:18;;;17474:33;17466:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17544:24;17552:4;17558:2;17562:5;17544:7;:24::i;:::-;17114:462;;;:::o;21674:443::-;21804:1;21787:19;;:5;:19;;;21783:91;;21859:1;21830:32;;;;;;;;;;;:::i;:::-;;;;;;;;21783:91;21907:1;21888:21;;:7;:21;;;21884:92;;21961:1;21933:31;;;;;;;;;;;:::i;:::-;;;;;;;;21884:92;22016:5;21986:11;:18;21998:5;21986:18;;;;;;;;;;;;;;;:27;22005:7;21986:27;;;;;;;;;;;;;;;:35;;;;22036:9;22032:78;;;22083:7;22067:31;;22076:5;22067:31;;;22092:5;22067:31;;;;;;:::i;:::-;;;;;;;;22032:78;21674:443;;;;:::o;17900:1135::-;18006:1;17990:18;;:4;:18;;;17986:552;;18144:5;18128:12;;:21;;;;;;;:::i;:::-;;;;;;;;17986:552;;;18182:19;18204:9;:15;18214:4;18204:15;;;;;;;;;;;;;;;;18182:37;;18252:5;18238:11;:19;18234:117;;;18310:4;18316:11;18329:5;18285:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;18234:117;18506:5;18492:11;:19;18474:9;:15;18484:4;18474:15;;;;;;;;;;;;;;;:37;;;;18167:371;17986:552;18568:1;18554:16;;:2;:16;;;18550:435;;18736:5;18720:12;;:21;;;;;;;;;;;18550:435;;;18953:5;18936:9;:13;18946:2;18936:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;18550:435;19017:2;19002:25;;19011:4;19002:25;;;19021:5;19002:25;;;;;;:::i;:::-;;;;;;;;17900:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:114::-;;:::o;6652:364::-;6794:3;6815:66;6879:1;6874:3;6815:66;:::i;:::-;6808:73;;6890:93;6979:3;6890:93;:::i;:::-;7008:1;7003:3;6999:11;6992:18;;6652:364;;;:::o;7022:419::-;7188:4;7226:2;7215:9;7211:18;7203:26;;7275:9;7269:4;7265:20;7261:1;7250:9;7246:17;7239:47;7303:131;7429:4;7303:131;:::i;:::-;7295:139;;7022:419;;;:::o;7447:442::-;7596:4;7634:2;7623:9;7619:18;7611:26;;7647:71;7715:1;7704:9;7700:17;7691:6;7647:71;:::i;:::-;7728:72;7796:2;7785:9;7781:18;7772:6;7728:72;:::i;:::-;7810;7878:2;7867:9;7863:18;7854:6;7810:72;:::i;:::-;7447:442;;;;;;:::o;7895:161::-;8035:13;8031:1;8023:6;8019:14;8012:37;7895:161;:::o;8062:366::-;8204:3;8225:67;8289:2;8284:3;8225:67;:::i;:::-;8218:74;;8301:93;8390:3;8301:93;:::i;:::-;8419:2;8414:3;8410:12;8403:19;;8062:366;;;:::o;8434:419::-;8600:4;8638:2;8627:9;8623:18;8615:26;;8687:9;8681:4;8677:20;8673:1;8662:9;8658:17;8651:47;8715:131;8841:4;8715:131;:::i;:::-;8707:139;;8434:419;;;:::o;8859:169::-;8999:21;8995:1;8987:6;8983:14;8976:45;8859:169;:::o;9034:366::-;9176:3;9197:67;9261:2;9256:3;9197:67;:::i;:::-;9190:74;;9273:93;9362:3;9273:93;:::i;:::-;9391:2;9386:3;9382:12;9375:19;;9034:366;;;:::o;9406:419::-;9572:4;9610:2;9599:9;9595:18;9587:26;;9659:9;9653:4;9649:20;9645:1;9634:9;9630:17;9623:47;9687:131;9813:4;9687:131;:::i;:::-;9679:139;;9406:419;;;:::o;9831:180::-;9879:77;9876:1;9869:88;9976:4;9973:1;9966:15;10000:4;9997:1;9990:15;10017:191;10057:3;10076:20;10094:1;10076:20;:::i;:::-;10071:25;;10110:20;10128:1;10110:20;:::i;:::-;10105:25;;10153:1;10150;10146:9;10139:16;;10174:3;10171:1;10168:10;10165:36;;;10181:18;;:::i;:::-;10165:36;10017:191;;;;:::o
Swarm Source
ipfs://ae0e22bc3e2236fc6fe287bb74f8e48ff71805a2fbe2226d9dcf470555c65bb2
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.