Token
ERC-20: Japan Yen (JPY)
ERC-20
Overview
Max Total Supply
500,050,005,000,500,050,360,000,050 JPY
Holders
5
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,000,500,000,000,000,000 JPYLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
JapanYen
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "./ERC20.sol"; import "./ERC20Burnable.sol"; import "./ERC20Pausable.sol"; import "./Ownable.sol"; import "./ERC20FlashMint.sol"; contract JapanYen is ERC20, ERC20Burnable, ERC20Pausable, Ownable, ERC20FlashMint { constructor(address initialOwner) ERC20("Japan Yen", "JPY") Ownable(initialOwner) {} function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(address to, uint256 amount) public onlyOwner { _mint(to, amount); } // The following functions are overrides required by Solidity. function _update(address from, address to, uint256 value) internal override(ERC20, ERC20Pausable) { super._update(from, to, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./IERC20Metadata.sol"; import {Context} from "./Context.sol"; import {IERC20Errors} from "./draft-IERC6093.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; /** * @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)); } _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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.20; import {ERC20} from "./ERC20.sol"; import {Context} from "./Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys a `value` amount of tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 value) public virtual { _burn(_msgSender(), value); } /** * @dev Destroys a `value` amount of tokens from `account`, deducting from * the caller's allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `value`. */ function burnFrom(address account, uint256 value) public virtual { _spendAllowance(account, _msgSender(), value); _burn(account, value); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20FlashMint.sol) pragma solidity ^0.8.20; import {IERC3156FlashBorrower} from "./IERC3156FlashBorrower.sol"; import {IERC3156FlashLender} from "./IERC3156FlashLender.sol"; import {ERC20} from "./ERC20.sol"; /** * @dev Implementation of the ERC3156 Flash loans extension, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. * * Adds the {flashLoan} method, which provides flash loan support at the token * level. By default there is no fee, but this can be changed by overriding {flashFee}. * * NOTE: When this extension is used along with the {ERC20Capped} or {ERC20Votes} extensions, * {maxFlashLoan} will not correctly reflect the maximum that can be flash minted. We recommend * overriding {maxFlashLoan} so that it correctly reflects the supply cap. */ abstract contract ERC20FlashMint is ERC20, IERC3156FlashLender { bytes32 private constant RETURN_VALUE = keccak256("ERC3156FlashBorrower.onFlashLoan"); /** * @dev The loan token is not valid. */ error ERC3156UnsupportedToken(address token); /** * @dev The requested loan exceeds the max loan value for `token`. */ error ERC3156ExceededMaxLoan(uint256 maxLoan); /** * @dev The receiver of a flashloan is not a valid {onFlashLoan} implementer. */ error ERC3156InvalidReceiver(address receiver); /** * @dev Returns the maximum amount of tokens available for loan. * @param token The address of the token that is requested. * @return The amount of token that can be loaned. * * NOTE: This function does not consider any form of supply cap, so in case * it's used in a token with a cap like {ERC20Capped}, make sure to override this * function to integrate the cap instead of `type(uint256).max`. */ function maxFlashLoan(address token) public view virtual returns (uint256) { return token == address(this) ? type(uint256).max - totalSupply() : 0; } /** * @dev Returns the fee applied when doing flash loans. This function calls * the {_flashFee} function which returns the fee applied when doing flash * loans. * @param token The token to be flash loaned. * @param value The amount of tokens to be loaned. * @return The fees applied to the corresponding flash loan. */ function flashFee(address token, uint256 value) public view virtual returns (uint256) { if (token != address(this)) { revert ERC3156UnsupportedToken(token); } return _flashFee(token, value); } /** * @dev Returns the fee applied when doing flash loans. By default this * implementation has 0 fees. This function can be overloaded to make * the flash loan mechanism deflationary. * @param token The token to be flash loaned. * @param value The amount of tokens to be loaned. * @return The fees applied to the corresponding flash loan. */ function _flashFee(address token, uint256 value) internal view virtual returns (uint256) { // silence warning about unused variable without the addition of bytecode. token; value; return 0; } /** * @dev Returns the receiver address of the flash fee. By default this * implementation returns the address(0) which means the fee amount will be burnt. * This function can be overloaded to change the fee receiver. * @return The address for which the flash fee will be sent to. */ function _flashFeeReceiver() internal view virtual returns (address) { return address(0); } /** * @dev Performs a flash loan. New tokens are minted and sent to the * `receiver`, who is required to implement the {IERC3156FlashBorrower} * interface. By the end of the flash loan, the receiver is expected to own * value + fee tokens and have them approved back to the token contract itself so * they can be burned. * @param receiver The receiver of the flash loan. Should implement the * {IERC3156FlashBorrower-onFlashLoan} interface. * @param token The token to be flash loaned. Only `address(this)` is * supported. * @param value The amount of tokens to be loaned. * @param data An arbitrary datafield that is passed to the receiver. * @return `true` if the flash loan was successful. */ // This function can reenter, but it doesn't pose a risk because it always preserves the property that the amount // minted at the beginning is always recovered and burned at the end, or else the entire function will revert. // slither-disable-next-line reentrancy-no-eth function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 value, bytes calldata data ) public virtual returns (bool) { uint256 maxLoan = maxFlashLoan(token); if (value > maxLoan) { revert ERC3156ExceededMaxLoan(maxLoan); } uint256 fee = flashFee(token, value); _mint(address(receiver), value); if (receiver.onFlashLoan(_msgSender(), token, value, fee, data) != RETURN_VALUE) { revert ERC3156InvalidReceiver(address(receiver)); } address flashFeeReceiver = _flashFeeReceiver(); _spendAllowance(address(receiver), address(this), value + fee); if (fee == 0 || flashFeeReceiver == address(0)) { _burn(address(receiver), value + fee); } else { _burn(address(receiver), value); _transfer(address(receiver), flashFeeReceiver, fee); } return true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Pausable.sol) pragma solidity ^0.8.20; import {ERC20} from "./ERC20.sol"; import {Pausable} from "./Pausable.sol"; /** * @dev ERC20 token with pausable token transfers, minting and burning. * * Useful for scenarios such as preventing trades until the end of an evaluation * period, or having an emergency switch for freezing all token transfers in the * event of a large bug. * * IMPORTANT: This contract does not include public pause and unpause functions. In * addition to inheriting this contract, you must define both functions, invoking the * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will * make the contract pause mechanism of the contract unreachable, and thus unusable. */ abstract contract ERC20Pausable is ERC20, Pausable { /** * @dev See {ERC20-_update}. * * Requirements: * * - the contract must not be paused. */ function _update(address from, address to, uint256 value) internal virtual override whenNotPaused { super._update(from, to, value); } }
// SPDX-License-Identifier: MIT // 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC3156FlashBorrower.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC3156 FlashBorrower, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. */ interface IERC3156FlashBorrower { /** * @dev Receive a flash loan. * @param initiator The initiator of the loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @param fee The additional amount of tokens to repay. * @param data Arbitrary data structure, intended to contain user-defined parameters. * @return The keccak256 hash of "ERC3156FlashBorrower.onFlashLoan" */ function onFlashLoan( address initiator, address token, uint256 amount, uint256 fee, bytes calldata data ) external returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/IERC3156FlashLender.sol) pragma solidity ^0.8.20; import {IERC3156FlashBorrower} from "./IERC3156FlashBorrower.sol"; /** * @dev Interface of the ERC3156 FlashLender, as defined in * https://eips.ethereum.org/EIPS/eip-3156[ERC-3156]. */ interface IERC3156FlashLender { /** * @dev The amount of currency available to be lended. * @param token The loan currency. * @return The amount of `token` that can be borrowed. */ function maxFlashLoan(address token) external view returns (uint256); /** * @dev The fee to be charged for a given loan. * @param token The loan currency. * @param amount The amount of tokens lent. * @return The amount of `token` to be charged for the loan, on top of the returned principal. */ function flashFee(address token, uint256 amount) external view returns (uint256); /** * @dev Initiate a flash loan. * @param receiver The receiver of the tokens in the loan, and the receiver of the callback. * @param token The loan currency. * @param amount The amount of tokens lent. * @param data Arbitrary data structure, intended to contain user-defined parameters. */ function flashLoan( IERC3156FlashBorrower receiver, address token, uint256 amount, bytes calldata data ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "./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 { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
[{"inputs":[{"internalType":"address","name":"initialOwner","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":"uint256","name":"maxLoan","type":"uint256"}],"name":"ERC3156ExceededMaxLoan","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC3156InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"ERC3156UnsupportedToken","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","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":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"flashFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC3156FlashBorrower","name":"receiver","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flashLoan","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"maxFlashLoan","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b50604051620020b8380380620020b8833981810160405281019062000036919062000298565b806040518060400160405280600981526020017f4a6170616e2059656e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4a505900000000000000000000000000000000000000000000000000000000008152508160039081620000b491906200052c565b508060049081620000c691906200052c565b5050505f60055f6101000a81548160ff0219169083151502179055505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000155575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200014c919062000621565b60405180910390fd5b62000166816200016e60201b60201c565b50506200063c565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620002628262000237565b9050919050565b620002748162000256565b81146200027f575f80fd5b50565b5f81519050620002928162000269565b92915050565b5f60208284031215620002b057620002af62000233565b5b5f620002bf8482850162000282565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200034457607f821691505b6020821081036200035a5762000359620002ff565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003be7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000381565b620003ca868362000381565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620004146200040e6200040884620003e2565b620003eb565b620003e2565b9050919050565b5f819050919050565b6200042f83620003f4565b620004476200043e826200041b565b8484546200038d565b825550505050565b5f90565b6200045d6200044f565b6200046a81848462000424565b505050565b5b818110156200049157620004855f8262000453565b60018101905062000470565b5050565b601f821115620004e057620004aa8162000360565b620004b58462000372565b81016020851015620004c5578190505b620004dd620004d48562000372565b8301826200046f565b50505b505050565b5f82821c905092915050565b5f620005025f1984600802620004e5565b1980831691505092915050565b5f6200051c8383620004f1565b9150826002028217905092915050565b6200053782620002c8565b67ffffffffffffffff811115620005535762000552620002d2565b5b6200055f82546200032c565b6200056c82828562000495565b5f60209050601f831160018114620005a2575f84156200058d578287015190505b6200059985826200050f565b86555062000608565b601f198416620005b28662000360565b5f5b82811015620005db57848901518255600182019150602085019450602081019050620005b4565b86831015620005fb5784890151620005f7601f891682620004f1565b8355505b6001600288020188555050505b505050505050565b6200061b8162000256565b82525050565b5f602082019050620006365f83018462000610565b92915050565b611a6e806200064a5f395ff3fe608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063613255ab116100b65780638da5cb5b1161007a5780638da5cb5b1461031357806395d89b4114610331578063a9059cbb1461034f578063d9d98ce41461037f578063dd62ed3e146103af578063f2fde38b146103df57610135565b8063613255ab1461028357806370a08231146102b3578063715018a6146102e357806379cc6790146102ed5780638456cb591461030957610135565b80633f4ba83a116100fd5780633f4ba83a146101f357806340c10f19146101fd57806342966c68146102195780635c975abb146102355780635cffe9de1461025357610135565b806306fdde0314610139578063095ea7b31461015757806318160ddd1461018757806323b872dd146101a5578063313ce567146101d5575b5f80fd5b6101416103fb565b60405161014e9190611463565b60405180910390f35b610171600480360381019061016c9190611518565b61048b565b60405161017e9190611570565b60405180910390f35b61018f6104ad565b60405161019c9190611598565b60405180910390f35b6101bf60048036038101906101ba91906115b1565b6104b6565b6040516101cc9190611570565b60405180910390f35b6101dd6104e4565b6040516101ea919061161c565b60405180910390f35b6101fb6104ec565b005b61021760048036038101906102129190611518565b6104fe565b005b610233600480360381019061022e9190611635565b610514565b005b61023d610528565b60405161024a9190611570565b60405180910390f35b61026d600480360381019061026891906116fc565b61053d565b60405161027a9190611570565b60405180910390f35b61029d60048036038101906102989190611780565b610732565b6040516102aa9190611598565b60405180910390f35b6102cd60048036038101906102c89190611780565b6107a7565b6040516102da9190611598565b60405180910390f35b6102eb6107ec565b005b61030760048036038101906103029190611518565b6107ff565b005b61031161081f565b005b61031b610831565b60405161032891906117ba565b60405180910390f35b61033961085a565b6040516103469190611463565b60405180910390f35b61036960048036038101906103649190611518565b6108ea565b6040516103769190611570565b60405180910390f35b61039960048036038101906103949190611518565b61090c565b6040516103a69190611598565b60405180910390f35b6103c960048036038101906103c491906117d3565b61098f565b6040516103d69190611598565b60405180910390f35b6103f960048036038101906103f49190611780565b610a11565b005b60606003805461040a9061183e565b80601f01602080910402602001604051908101604052809291908181526020018280546104369061183e565b80156104815780601f1061045857610100808354040283529160200191610481565b820191905f5260205f20905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b5f80610495610a95565b90506104a2818585610a9c565b600191505092915050565b5f600254905090565b5f806104c0610a95565b90506104cd858285610aae565b6104d8858585610b40565b60019150509392505050565b5f6012905090565b6104f4610c30565b6104fc610cb7565b565b610506610c30565b6105108282610d18565b5050565b61052561051f610a95565b82610d97565b50565b5f60055f9054906101000a900460ff16905090565b5f8061054886610732565b90508085111561058f57806040517ffd9a76090000000000000000000000000000000000000000000000000000000081526004016105869190611598565b60405180910390fd5b5f61059a878761090c565b90506105a68887610d18565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98873ffffffffffffffffffffffffffffffffffffffff166323e30c8b6105eb610a95565b8a8a868b8b6040518763ffffffff1660e01b8152600401610611969594939291906118b8565b6020604051808303815f875af115801561062d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106519190611945565b1461069357876040517f678c5b0000000000000000000000000000000000000000000000000000000000815260040161068a91906117ba565b60405180910390fd5b5f61069c610e16565b90506106b48930848a6106af919061199d565b610aae565b5f8214806106ed57505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b1561070c57610707898389610702919061199d565b610d97565b610722565b6107168988610d97565b610721898284610b40565b5b6001935050505095945050505050565b5f3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461076c575f6107a0565b6107746104ad565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61079f91906119d0565b5b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107f4610c30565b6107fd5f610e1a565b565b6108118261080b610a95565b83610aae565b61081b8282610d97565b5050565b610827610c30565b61082f610edf565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108699061183e565b80601f01602080910402602001604051908101604052809291908181526020018280546108959061183e565b80156108e05780601f106108b7576101008083540402835291602001916108e0565b820191905f5260205f20905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b5f806108f4610a95565b9050610901818585610b40565b600191505092915050565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461097d57826040517fb5a7db9200000000000000000000000000000000000000000000000000000000815260040161097491906117ba565b60405180910390fd5b6109878383610f41565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a19610c30565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a89575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a8091906117ba565b60405180910390fd5b610a9281610e1a565b50565b5f33905090565b610aa98383836001610f48565b505050565b5f610ab9848461098f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b3a5781811015610b2b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b2293929190611a03565b60405180910390fd5b610b3984848484035f610f48565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb0575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ba791906117ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c20575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c1791906117ba565b60405180910390fd5b610c2b838383611117565b505050565b610c38610a95565b73ffffffffffffffffffffffffffffffffffffffff16610c56610831565b73ffffffffffffffffffffffffffffffffffffffff1614610cb557610c79610a95565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cac91906117ba565b60405180910390fd5b565b610cbf611127565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d01610a95565b604051610d0e91906117ba565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d88575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d7f91906117ba565b60405180910390fd5b610d935f8383611117565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e07575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610dfe91906117ba565b60405180910390fd5b610e12825f83611117565b5050565b5f90565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610ee7611167565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f2a610a95565b604051610f3791906117ba565b60405180910390a1565b5f92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fb8575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610faf91906117ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611028575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161101f91906117ba565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611111578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111089190611598565b60405180910390a35b50505050565b6111228383836111a8565b505050565b61112f610528565b611165576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61116f610528565b156111a6576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6111b0611167565b6111bb8383836111c0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611210578060025f828254611204919061199d565b925050819055506112de565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611299578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161129093929190611a03565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611325578060025f828254039250508190555061136f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113cc9190611598565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156114105780820151818401526020810190506113f5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611435826113d9565b61143f81856113e3565b935061144f8185602086016113f3565b6114588161141b565b840191505092915050565b5f6020820190508181035f83015261147b818461142b565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114b48261148b565b9050919050565b6114c4816114aa565b81146114ce575f80fd5b50565b5f813590506114df816114bb565b92915050565b5f819050919050565b6114f7816114e5565b8114611501575f80fd5b50565b5f81359050611512816114ee565b92915050565b5f806040838503121561152e5761152d611483565b5b5f61153b858286016114d1565b925050602061154c85828601611504565b9150509250929050565b5f8115159050919050565b61156a81611556565b82525050565b5f6020820190506115835f830184611561565b92915050565b611592816114e5565b82525050565b5f6020820190506115ab5f830184611589565b92915050565b5f805f606084860312156115c8576115c7611483565b5b5f6115d5868287016114d1565b93505060206115e6868287016114d1565b92505060406115f786828701611504565b9150509250925092565b5f60ff82169050919050565b61161681611601565b82525050565b5f60208201905061162f5f83018461160d565b92915050565b5f6020828403121561164a57611649611483565b5b5f61165784828501611504565b91505092915050565b5f61166a826114aa565b9050919050565b61167a81611660565b8114611684575f80fd5b50565b5f8135905061169581611671565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116bc576116bb61169b565b5b8235905067ffffffffffffffff8111156116d9576116d861169f565b5b6020830191508360018202830111156116f5576116f46116a3565b5b9250929050565b5f805f805f6080868803121561171557611714611483565b5b5f61172288828901611687565b9550506020611733888289016114d1565b945050604061174488828901611504565b935050606086013567ffffffffffffffff81111561176557611764611487565b5b611771888289016116a7565b92509250509295509295909350565b5f6020828403121561179557611794611483565b5b5f6117a2848285016114d1565b91505092915050565b6117b4816114aa565b82525050565b5f6020820190506117cd5f8301846117ab565b92915050565b5f80604083850312156117e9576117e8611483565b5b5f6117f6858286016114d1565b9250506020611807858286016114d1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061185557607f821691505b60208210810361186857611867611811565b5b50919050565b5f82825260208201905092915050565b828183375f83830152505050565b5f611897838561186e565b93506118a483858461187e565b6118ad8361141b565b840190509392505050565b5f60a0820190506118cb5f8301896117ab565b6118d860208301886117ab565b6118e56040830187611589565b6118f26060830186611589565b818103608083015261190581848661188c565b9050979650505050505050565b5f819050919050565b61192481611912565b811461192e575f80fd5b50565b5f8151905061193f8161191b565b92915050565b5f6020828403121561195a57611959611483565b5b5f61196784828501611931565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119a7826114e5565b91506119b2836114e5565b92508282019050808211156119ca576119c9611970565b5b92915050565b5f6119da826114e5565b91506119e5836114e5565b92508282039050818111156119fd576119fc611970565b5b92915050565b5f606082019050611a165f8301866117ab565b611a236020830185611589565b611a306040830184611589565b94935050505056fea26469706673582212209640b8d224e4d20b3890738d8b669d45fc1a3d84eda7ed0f790d5ee35270283164736f6c63430008140033000000000000000000000000748a4421aa212b701b7d7411b4b281c8a127d92a
Deployed Bytecode
0x608060405234801561000f575f80fd5b5060043610610135575f3560e01c8063613255ab116100b65780638da5cb5b1161007a5780638da5cb5b1461031357806395d89b4114610331578063a9059cbb1461034f578063d9d98ce41461037f578063dd62ed3e146103af578063f2fde38b146103df57610135565b8063613255ab1461028357806370a08231146102b3578063715018a6146102e357806379cc6790146102ed5780638456cb591461030957610135565b80633f4ba83a116100fd5780633f4ba83a146101f357806340c10f19146101fd57806342966c68146102195780635c975abb146102355780635cffe9de1461025357610135565b806306fdde0314610139578063095ea7b31461015757806318160ddd1461018757806323b872dd146101a5578063313ce567146101d5575b5f80fd5b6101416103fb565b60405161014e9190611463565b60405180910390f35b610171600480360381019061016c9190611518565b61048b565b60405161017e9190611570565b60405180910390f35b61018f6104ad565b60405161019c9190611598565b60405180910390f35b6101bf60048036038101906101ba91906115b1565b6104b6565b6040516101cc9190611570565b60405180910390f35b6101dd6104e4565b6040516101ea919061161c565b60405180910390f35b6101fb6104ec565b005b61021760048036038101906102129190611518565b6104fe565b005b610233600480360381019061022e9190611635565b610514565b005b61023d610528565b60405161024a9190611570565b60405180910390f35b61026d600480360381019061026891906116fc565b61053d565b60405161027a9190611570565b60405180910390f35b61029d60048036038101906102989190611780565b610732565b6040516102aa9190611598565b60405180910390f35b6102cd60048036038101906102c89190611780565b6107a7565b6040516102da9190611598565b60405180910390f35b6102eb6107ec565b005b61030760048036038101906103029190611518565b6107ff565b005b61031161081f565b005b61031b610831565b60405161032891906117ba565b60405180910390f35b61033961085a565b6040516103469190611463565b60405180910390f35b61036960048036038101906103649190611518565b6108ea565b6040516103769190611570565b60405180910390f35b61039960048036038101906103949190611518565b61090c565b6040516103a69190611598565b60405180910390f35b6103c960048036038101906103c491906117d3565b61098f565b6040516103d69190611598565b60405180910390f35b6103f960048036038101906103f49190611780565b610a11565b005b60606003805461040a9061183e565b80601f01602080910402602001604051908101604052809291908181526020018280546104369061183e565b80156104815780601f1061045857610100808354040283529160200191610481565b820191905f5260205f20905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b5f80610495610a95565b90506104a2818585610a9c565b600191505092915050565b5f600254905090565b5f806104c0610a95565b90506104cd858285610aae565b6104d8858585610b40565b60019150509392505050565b5f6012905090565b6104f4610c30565b6104fc610cb7565b565b610506610c30565b6105108282610d18565b5050565b61052561051f610a95565b82610d97565b50565b5f60055f9054906101000a900460ff16905090565b5f8061054886610732565b90508085111561058f57806040517ffd9a76090000000000000000000000000000000000000000000000000000000081526004016105869190611598565b60405180910390fd5b5f61059a878761090c565b90506105a68887610d18565b7f439148f0bbc682ca079e46d6e2c2f0c1e3b820f1a291b069d8882abf8cf18dd98873ffffffffffffffffffffffffffffffffffffffff166323e30c8b6105eb610a95565b8a8a868b8b6040518763ffffffff1660e01b8152600401610611969594939291906118b8565b6020604051808303815f875af115801561062d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906106519190611945565b1461069357876040517f678c5b0000000000000000000000000000000000000000000000000000000000815260040161068a91906117ba565b60405180910390fd5b5f61069c610e16565b90506106b48930848a6106af919061199d565b610aae565b5f8214806106ed57505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b1561070c57610707898389610702919061199d565b610d97565b610722565b6107168988610d97565b610721898284610b40565b5b6001935050505095945050505050565b5f3073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461076c575f6107a0565b6107746104ad565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61079f91906119d0565b5b9050919050565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6107f4610c30565b6107fd5f610e1a565b565b6108118261080b610a95565b83610aae565b61081b8282610d97565b5050565b610827610c30565b61082f610edf565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108699061183e565b80601f01602080910402602001604051908101604052809291908181526020018280546108959061183e565b80156108e05780601f106108b7576101008083540402835291602001916108e0565b820191905f5260205f20905b8154815290600101906020018083116108c357829003601f168201915b5050505050905090565b5f806108f4610a95565b9050610901818585610b40565b600191505092915050565b5f3073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461097d57826040517fb5a7db9200000000000000000000000000000000000000000000000000000000815260040161097491906117ba565b60405180910390fd5b6109878383610f41565b905092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b610a19610c30565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610a89575f6040517f1e4fbdf7000000000000000000000000000000000000000000000000000000008152600401610a8091906117ba565b60405180910390fd5b610a9281610e1a565b50565b5f33905090565b610aa98383836001610f48565b505050565b5f610ab9848461098f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b3a5781811015610b2b578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b2293929190611a03565b60405180910390fd5b610b3984848484035f610f48565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bb0575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ba791906117ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c20575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c1791906117ba565b60405180910390fd5b610c2b838383611117565b505050565b610c38610a95565b73ffffffffffffffffffffffffffffffffffffffff16610c56610831565b73ffffffffffffffffffffffffffffffffffffffff1614610cb557610c79610a95565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610cac91906117ba565b60405180910390fd5b565b610cbf611127565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610d01610a95565b604051610d0e91906117ba565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d88575f6040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610d7f91906117ba565b60405180910390fd5b610d935f8383611117565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e07575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610dfe91906117ba565b60405180910390fd5b610e12825f83611117565b5050565b5f90565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b610ee7611167565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610f2a610a95565b604051610f3791906117ba565b60405180910390a1565b5f92915050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610fb8575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610faf91906117ba565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611028575f6040517f94280d6200000000000000000000000000000000000000000000000000000000815260040161101f91906117ba565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611111578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516111089190611598565b60405180910390a35b50505050565b6111228383836111a8565b505050565b61112f610528565b611165576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b61116f610528565b156111a6576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b6111b0611167565b6111bb8383836111c0565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611210578060025f828254611204919061199d565b925050819055506112de565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611299578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161129093929190611a03565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611325578060025f828254039250508190555061136f565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516113cc9190611598565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156114105780820151818401526020810190506113f5565b5f8484015250505050565b5f601f19601f8301169050919050565b5f611435826113d9565b61143f81856113e3565b935061144f8185602086016113f3565b6114588161141b565b840191505092915050565b5f6020820190508181035f83015261147b818461142b565b905092915050565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6114b48261148b565b9050919050565b6114c4816114aa565b81146114ce575f80fd5b50565b5f813590506114df816114bb565b92915050565b5f819050919050565b6114f7816114e5565b8114611501575f80fd5b50565b5f81359050611512816114ee565b92915050565b5f806040838503121561152e5761152d611483565b5b5f61153b858286016114d1565b925050602061154c85828601611504565b9150509250929050565b5f8115159050919050565b61156a81611556565b82525050565b5f6020820190506115835f830184611561565b92915050565b611592816114e5565b82525050565b5f6020820190506115ab5f830184611589565b92915050565b5f805f606084860312156115c8576115c7611483565b5b5f6115d5868287016114d1565b93505060206115e6868287016114d1565b92505060406115f786828701611504565b9150509250925092565b5f60ff82169050919050565b61161681611601565b82525050565b5f60208201905061162f5f83018461160d565b92915050565b5f6020828403121561164a57611649611483565b5b5f61165784828501611504565b91505092915050565b5f61166a826114aa565b9050919050565b61167a81611660565b8114611684575f80fd5b50565b5f8135905061169581611671565b92915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126116bc576116bb61169b565b5b8235905067ffffffffffffffff8111156116d9576116d861169f565b5b6020830191508360018202830111156116f5576116f46116a3565b5b9250929050565b5f805f805f6080868803121561171557611714611483565b5b5f61172288828901611687565b9550506020611733888289016114d1565b945050604061174488828901611504565b935050606086013567ffffffffffffffff81111561176557611764611487565b5b611771888289016116a7565b92509250509295509295909350565b5f6020828403121561179557611794611483565b5b5f6117a2848285016114d1565b91505092915050565b6117b4816114aa565b82525050565b5f6020820190506117cd5f8301846117ab565b92915050565b5f80604083850312156117e9576117e8611483565b5b5f6117f6858286016114d1565b9250506020611807858286016114d1565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061185557607f821691505b60208210810361186857611867611811565b5b50919050565b5f82825260208201905092915050565b828183375f83830152505050565b5f611897838561186e565b93506118a483858461187e565b6118ad8361141b565b840190509392505050565b5f60a0820190506118cb5f8301896117ab565b6118d860208301886117ab565b6118e56040830187611589565b6118f26060830186611589565b818103608083015261190581848661188c565b9050979650505050505050565b5f819050919050565b61192481611912565b811461192e575f80fd5b50565b5f8151905061193f8161191b565b92915050565b5f6020828403121561195a57611959611483565b5b5f61196784828501611931565b91505092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6119a7826114e5565b91506119b2836114e5565b92508282019050808211156119ca576119c9611970565b5b92915050565b5f6119da826114e5565b91506119e5836114e5565b92508282039050818111156119fd576119fc611970565b5b92915050565b5f606082019050611a165f8301866117ab565b611a236020830185611589565b611a306040830184611589565b94935050505056fea26469706673582212209640b8d224e4d20b3890738d8b669d45fc1a3d84eda7ed0f790d5ee35270283164736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000748a4421aa212b701b7d7411b4b281c8a127d92a
-----Decoded View---------------
Arg [0] : initialOwner (address): 0x748A4421aa212b701B7d7411b4B281c8a127d92a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000748a4421aa212b701b7d7411b4b281c8a127d92a
Deployed Bytecode Sourcemap
196:666:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2038:89:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4257:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3108:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5003:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2966:82;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;459:63:9;;;:::i;:::-;;528:93;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;604:87:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1843:84:11;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4747:962:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1897:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3263:116:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2361:103:10;;;:::i;:::-;;1007:158:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;394:59:9;;;:::i;:::-;;1686:87:10;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2240:93:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3574:178;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2423:232:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3810:140:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2619:220:10;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2038:89:1;2083:13;2115:5;2108:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2038:89;:::o;4257:186::-;4330:4;4346:13;4362:12;:10;:12::i;:::-;4346:28;;4384:31;4393:5;4400:7;4409:5;4384:8;:31::i;:::-;4432:4;4425:11;;;4257:186;;;;:::o;3108:97::-;3160:7;3186:12;;3179:19;;3108:97;:::o;5003:244::-;5090:4;5106:15;5124:12;:10;:12::i;:::-;5106:30;;5146:37;5162:4;5168:7;5177:5;5146:15;:37::i;:::-;5193:26;5203:4;5209:2;5213:5;5193:9;:26::i;:::-;5236:4;5229:11;;;5003:244;;;;;:::o;2966:82::-;3015:5;3039:2;3032:9;;2966:82;:::o;459:63:9:-;1572:13:10;:11;:13::i;:::-;505:10:9::1;:8;:10::i;:::-;459:63::o:0;528:93::-;1572:13:10;:11;:13::i;:::-;597:17:9::1;603:2;607:6;597:5;:17::i;:::-;528:93:::0;;:::o;604:87:2:-;658:26;664:12;:10;:12::i;:::-;678:5;658;:26::i;:::-;604:87;:::o;1843:84:11:-;1890:4;1913:7;;;;;;;;;;;1906:14;;1843:84;:::o;4747:962:3:-;4911:4;4927:15;4945:19;4958:5;4945:12;:19::i;:::-;4927:37;;4986:7;4978:5;:15;4974:84;;;5039:7;5016:31;;;;;;;;;;;:::i;:::-;;;;;;;;4974:84;5067:11;5081:22;5090:5;5097;5081:8;:22::i;:::-;5067:36;;5113:31;5127:8;5138:5;5113;:31::i;:::-;1001:45;5158:8;:20;;;5179:12;:10;:12::i;:::-;5193:5;5200;5207:3;5212:4;;5158:59;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:75;5154:154;;5287:8;5256:41;;;;;;;;;;;:::i;:::-;;;;;;;;5154:154;5317:24;5344:19;:17;:19::i;:::-;5317:46;;5373:62;5397:8;5416:4;5431:3;5423:5;:11;;;;:::i;:::-;5373:15;:62::i;:::-;5456:1;5449:3;:8;:42;;;;5489:1;5461:30;;:16;:30;;;5449:42;5445:237;;;5507:37;5521:8;5540:3;5532:5;:11;;;;:::i;:::-;5507:5;:37::i;:::-;5445:237;;;5575:31;5589:8;5600:5;5575;:31::i;:::-;5620:51;5638:8;5649:16;5667:3;5620:9;:51::i;:::-;5445:237;5698:4;5691:11;;;;;4747:962;;;;;;;:::o;1897:161::-;1963:7;2006:4;1989:22;;:5;:22;;;:62;;2050:1;1989:62;;;2034:13;:11;:13::i;:::-;2014:17;:33;;;;:::i;:::-;1989:62;1982:69;;1897:161;;;:::o;3263:116:1:-;3328:7;3354:9;:18;3364:7;3354:18;;;;;;;;;;;;;;;;3347:25;;3263:116;;;:::o;2361:103:10:-;1572:13;:11;:13::i;:::-;2426:30:::1;2453:1;2426:18;:30::i;:::-;2361:103::o:0;1007:158:2:-;1082:45;1098:7;1107:12;:10;:12::i;:::-;1121:5;1082:15;:45::i;:::-;1137:21;1143:7;1152:5;1137;:21::i;:::-;1007:158;;:::o;394:59:9:-;1572:13:10;:11;:13::i;:::-;438:8:9::1;:6;:8::i;:::-;394:59::o:0;1686:87:10:-;1732:7;1759:6;;;;;;;;;;;1752:13;;1686:87;:::o;2240:93:1:-;2287:13;2319:7;2312:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2240:93;:::o;3574:178::-;3643:4;3659:13;3675:12;:10;:12::i;:::-;3659:28;;3697:27;3707:5;3714:2;3718:5;3697:9;:27::i;:::-;3741:4;3734:11;;;3574:178;;;;:::o;2423:232:3:-;2500:7;2540:4;2523:22;;:5;:22;;;2519:90;;2592:5;2568:30;;;;;;;;;;;:::i;:::-;;;;;;;;2519:90;2625:23;2635:5;2642;2625:9;:23::i;:::-;2618:30;;2423:232;;;;:::o;3810:140:1:-;3890:7;3916:11;:18;3928:5;3916:18;;;;;;;;;;;;;;;:27;3935:7;3916:27;;;;;;;;;;;;;;;;3909:34;;3810:140;;;;:::o;2619:220:10:-;1572:13;:11;:13::i;:::-;2724:1:::1;2704:22;;:8;:22;;::::0;2700:93:::1;;2778:1;2750:31;;;;;;;;;;;:::i;:::-;;;;;;;;2700:93;2803:28;2822:8;2803:18;:28::i;:::-;2619:220:::0;:::o;656:96:0:-;709:7;735:10;728:17;;656:96;:::o;8953:128:1:-;9037:37;9046:5;9053:7;9062:5;9069:4;9037:8;:37::i;:::-;8953:128;;;:::o;10627:477::-;10726:24;10753:25;10763:5;10770:7;10753:9;:25::i;:::-;10726:52;;10812:17;10792:16;:37;10788:310;;10868:5;10849:16;:24;10845:130;;;10927:7;10936:16;10954:5;10900:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;10845:130;11016:57;11025:5;11032:7;11060:5;11041:16;:24;11067:5;11016:8;:57::i;:::-;10788:310;10716:388;10627:477;;;:::o;5620:300::-;5719:1;5703:18;;:4;:18;;;5699:86;;5771:1;5744:30;;;;;;;;;;;:::i;:::-;;;;;;;;5699:86;5812:1;5798:16;;:2;:16;;;5794:86;;5866:1;5837:32;;;;;;;;;;;:::i;:::-;;;;;;;;5794:86;5889:24;5897:4;5903:2;5907:5;5889:7;:24::i;:::-;5620:300;;;:::o;1851:166:10:-;1922:12;:10;:12::i;:::-;1911:23;;:7;:5;:7::i;:::-;:23;;;1907:103;;1985:12;:10;:12::i;:::-;1958:40;;;;;;;;;;;:::i;:::-;;;;;;;;1907:103;1851:166::o;2703:117:11:-;1714:16;:14;:16::i;:::-;2771:5:::1;2761:7;;:15;;;;;;;;;;;;;;;;;;2791:22;2800:12;:10;:12::i;:::-;2791:22;;;;;;:::i;:::-;;;;;;;;2703:117::o:0;7685:208:1:-;7774:1;7755:21;;:7;:21;;;7751:91;;7828:1;7799:32;;;;;;;;;;;:::i;:::-;;;;;;;;7751:91;7851:35;7867:1;7871:7;7880:5;7851:7;:35::i;:::-;7685:208;;:::o;8211:206::-;8300:1;8281:21;;:7;:21;;;8277:89;;8352:1;8325:30;;;;;;;;;;;:::i;:::-;;;;;;;;8277:89;8375:35;8383:7;8400:1;8404:5;8375:7;:35::i;:::-;8211:206;;:::o;3589:103:3:-;3649:7;3589:103;:::o;2999:191:10:-;3073:16;3092:6;;;;;;;;;;;3073:25;;3118:8;3109:6;;:17;;;;;;;;;;;;;;;;;;3173:8;3142:40;;3163:8;3142:40;;;;;;;;;;;;3062:128;2999:191;:::o;2456:115:11:-;1467:19;:17;:19::i;:::-;2525:4:::1;2515:7;;:14;;;;;;;;;;;;;;;;;;2544:20;2551:12;:10;:12::i;:::-;2544:20;;;;;;:::i;:::-;;;;;;;;2456:115::o:0;3043:227:3:-;3123:7;3043:227;;;;:::o;9913:432:1:-;10042:1;10025:19;;:5;:19;;;10021:89;;10096:1;10067:32;;;;;;;;;;;:::i;:::-;;;;;;;;10021:89;10142:1;10123:21;;:7;:21;;;10119:90;;10195:1;10167:31;;;;;;;;;;;:::i;:::-;;;;;;;;10119:90;10248:5;10218:11;:18;10230:5;10218:18;;;;;;;;;;;;;;;:27;10237:7;10218:27;;;;;;;;;;;;;;;:35;;;;10267:9;10263:76;;;10313:7;10297:31;;10306:5;10297:31;;;10322:5;10297:31;;;;;;:::i;:::-;;;;;;;;10263:76;9913:432;;;;:::o;695:165:9:-;823:30;837:4;843:2;847:5;823:13;:30::i;:::-;695:165;;;:::o;2195:126:11:-;2258:8;:6;:8::i;:::-;2253:62;;2289:15;;;;;;;;;;;;;;2253:62;2195:126::o;1995:128::-;2060:8;:6;:8::i;:::-;2056:61;;;2091:15;;;;;;;;;;;;;;2056:61;1995:128::o;1098:145:4:-;1467:19:11;:17;:19::i;:::-;1206:30:4::1;1220:4;1226:2;1230:5;1206:13;:30::i;:::-;1098:145:::0;;;:::o;6235:1107:1:-;6340:1;6324:18;;:4;:18;;;6320:540;;6476:5;6460:12;;:21;;;;;;;:::i;:::-;;;;;;;;6320:540;;;6512:19;6534:9;:15;6544:4;6534:15;;;;;;;;;;;;;;;;6512:37;;6581:5;6567:11;:19;6563:115;;;6638:4;6644:11;6657:5;6613:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;6563:115;6830:5;6816:11;:19;6798:9;:15;6808:4;6798:15;;;;;;;;;;;;;;;:37;;;;6498:362;6320:540;6888:1;6874:16;;:2;:16;;;6870:425;;7053:5;7037:12;;:21;;;;;;;;;;;6870:425;;;7265:5;7248:9;:13;7258:2;7248:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;6870:425;7325:2;7310:25;;7319:4;7310:25;;;7329:5;7310:25;;;;;;:::i;:::-;;;;;;;;6235:1107;;;:::o;7:99:13:-;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;1553:117;1662:1;1659;1652: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:125::-;5254:7;5283:24;5301:5;5283:24;:::i;:::-;5272:35;;5188:125;;;:::o;5319:180::-;5421:53;5468:5;5421:53;:::i;:::-;5414:5;5411:64;5401:92;;5489:1;5486;5479:12;5401:92;5319:180;:::o;5505:197::-;5580:5;5618:6;5605:20;5596:29;;5634:62;5690:5;5634:62;:::i;:::-;5505:197;;;;:::o;5708:117::-;5817:1;5814;5807:12;5831:117;5940:1;5937;5930:12;5954:117;6063:1;6060;6053:12;6090:552;6147:8;6157:6;6207:3;6200:4;6192:6;6188:17;6184:27;6174:122;;6215:79;;:::i;:::-;6174:122;6328:6;6315:20;6305:30;;6358:18;6350:6;6347:30;6344:117;;;6380:79;;:::i;:::-;6344:117;6494:4;6486:6;6482:17;6470:29;;6548:3;6540:4;6532:6;6528:17;6518:8;6514:32;6511:41;6508:128;;;6555:79;;:::i;:::-;6508:128;6090:552;;;;;:::o;6648:1021::-;6774:6;6782;6790;6798;6806;6855:3;6843:9;6834:7;6830:23;6826:33;6823:120;;;6862:79;;:::i;:::-;6823:120;6982:1;7007:82;7081:7;7072:6;7061:9;7057:22;7007:82;:::i;:::-;6997:92;;6953:146;7138:2;7164:53;7209:7;7200:6;7189:9;7185:22;7164:53;:::i;:::-;7154:63;;7109:118;7266:2;7292:53;7337:7;7328:6;7317:9;7313:22;7292:53;:::i;:::-;7282:63;;7237:118;7422:2;7411:9;7407:18;7394:32;7453:18;7445:6;7442:30;7439:117;;;7475:79;;:::i;:::-;7439:117;7588:64;7644:7;7635:6;7624:9;7620:22;7588:64;:::i;:::-;7570:82;;;;7365:297;6648:1021;;;;;;;;:::o;7675:329::-;7734:6;7783:2;7771:9;7762:7;7758:23;7754:32;7751:119;;;7789:79;;:::i;:::-;7751:119;7909:1;7934:53;7979:7;7970:6;7959:9;7955:22;7934:53;:::i;:::-;7924:63;;7880:117;7675:329;;;;:::o;8010:118::-;8097:24;8115:5;8097:24;:::i;:::-;8092:3;8085:37;8010:118;;:::o;8134:222::-;8227:4;8265:2;8254:9;8250:18;8242:26;;8278:71;8346:1;8335:9;8331:17;8322:6;8278:71;:::i;:::-;8134:222;;;;:::o;8362:474::-;8430:6;8438;8487:2;8475:9;8466:7;8462:23;8458:32;8455:119;;;8493:79;;:::i;:::-;8455:119;8613:1;8638:53;8683:7;8674:6;8663:9;8659:22;8638:53;:::i;:::-;8628:63;;8584:117;8740:2;8766:53;8811:7;8802:6;8791:9;8787:22;8766:53;:::i;:::-;8756:63;;8711:118;8362:474;;;;;:::o;8842:180::-;8890:77;8887:1;8880:88;8987:4;8984:1;8977:15;9011:4;9008:1;9001:15;9028:320;9072:6;9109:1;9103:4;9099:12;9089:22;;9156:1;9150:4;9146:12;9177:18;9167:81;;9233:4;9225:6;9221:17;9211:27;;9167:81;9295:2;9287:6;9284:14;9264:18;9261:38;9258:84;;9314:18;;:::i;:::-;9258:84;9079:269;9028:320;;;:::o;9354:168::-;9437:11;9471:6;9466:3;9459:19;9511:4;9506:3;9502:14;9487:29;;9354:168;;;;:::o;9528:146::-;9625:6;9620:3;9615;9602:30;9666:1;9657:6;9652:3;9648:16;9641:27;9528:146;;;:::o;9702:314::-;9798:3;9819:70;9882:6;9877:3;9819:70;:::i;:::-;9812:77;;9899:56;9948:6;9943:3;9936:5;9899:56;:::i;:::-;9980:29;10002:6;9980:29;:::i;:::-;9975:3;9971:39;9964:46;;9702:314;;;;;:::o;10022:771::-;10255:4;10293:3;10282:9;10278:19;10270:27;;10307:71;10375:1;10364:9;10360:17;10351:6;10307:71;:::i;:::-;10388:72;10456:2;10445:9;10441:18;10432:6;10388:72;:::i;:::-;10470;10538:2;10527:9;10523:18;10514:6;10470:72;:::i;:::-;10552;10620:2;10609:9;10605:18;10596:6;10552:72;:::i;:::-;10672:9;10666:4;10662:20;10656:3;10645:9;10641:19;10634:49;10700:86;10781:4;10772:6;10764;10700:86;:::i;:::-;10692:94;;10022:771;;;;;;;;;:::o;10799:77::-;10836:7;10865:5;10854:16;;10799:77;;;:::o;10882:122::-;10955:24;10973:5;10955:24;:::i;:::-;10948:5;10945:35;10935:63;;10994:1;10991;10984:12;10935:63;10882:122;:::o;11010:143::-;11067:5;11098:6;11092:13;11083:22;;11114:33;11141:5;11114:33;:::i;:::-;11010:143;;;;:::o;11159:351::-;11229:6;11278:2;11266:9;11257:7;11253:23;11249:32;11246:119;;;11284:79;;:::i;:::-;11246:119;11404:1;11429:64;11485:7;11476:6;11465:9;11461:22;11429:64;:::i;:::-;11419:74;;11375:128;11159:351;;;;:::o;11516:180::-;11564:77;11561:1;11554:88;11661:4;11658:1;11651:15;11685:4;11682:1;11675:15;11702:191;11742:3;11761:20;11779:1;11761:20;:::i;:::-;11756:25;;11795:20;11813:1;11795:20;:::i;:::-;11790:25;;11838:1;11835;11831:9;11824:16;;11859:3;11856:1;11853:10;11850:36;;;11866:18;;:::i;:::-;11850:36;11702:191;;;;:::o;11899:194::-;11939:4;11959:20;11977:1;11959:20;:::i;:::-;11954:25;;11993:20;12011:1;11993:20;:::i;:::-;11988:25;;12037:1;12034;12030:9;12022:17;;12061:1;12055:4;12052:11;12049:37;;;12066:18;;:::i;:::-;12049:37;11899:194;;;;:::o;12099:442::-;12248:4;12286:2;12275:9;12271:18;12263:26;;12299:71;12367:1;12356:9;12352:17;12343:6;12299:71;:::i;:::-;12380:72;12448:2;12437:9;12433:18;12424:6;12380:72;:::i;:::-;12462;12530:2;12519:9;12515:18;12506:6;12462:72;:::i;:::-;12099:442;;;;;;:::o
Swarm Source
ipfs://9640b8d224e4d20b3890738d8b669d45fc1a3d84eda7ed0f790d5ee352702831
[ 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.