ERC-20
Overview
Max Total Supply
1,000,000,000 FAIL
Holders
341
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FAIL
Compiler Version
v0.8.23+commit.f704f362
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-10-24 */ // SPDX-License-Identifier: UNLICENSE pragma solidity =0.8.23 ^0.8.20; // lib/openzeppelin-contracts/contracts/interfaces/draft-IERC6093.sol // OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol) /** * @dev Standard ERC-20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 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 ERC-721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-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 ERC-1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 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); } // lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC-20 standard as defined in the ERC. */ 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); } // lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) /** * @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; } } // lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.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); } } // lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC-20 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); } // lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.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 ERC-20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the ERC may not emit * these events, as it isn't required by the specification. */ abstract contract 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 ERC. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `value`. * - the caller must have allowance for ``from``'s tokens of at least * `value`. */ function transferFrom(address from, address to, uint256 value) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, value); _transfer(from, to, value); return true; } /** * @dev Moves a `value` amount of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _transfer(address from, address to, uint256 value) internal { if (from == address(0)) { revert ERC20InvalidSender(address(0)); } if (to == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(from, to, value); } /** * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from` * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding * this function. * * Emits a {Transfer} event. */ function _update(address from, address to, uint256 value) internal virtual { if (from == address(0)) { // Overflow check required: The rest of the code assumes that totalSupply never overflows _totalSupply += value; } else { uint256 fromBalance = _balances[from]; if (fromBalance < value) { revert ERC20InsufficientBalance(from, fromBalance, value); } unchecked { // Overflow not possible: value <= fromBalance <= totalSupply. _balances[from] = fromBalance - value; } } if (to == address(0)) { unchecked { // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply. _totalSupply -= value; } } else { unchecked { // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256. _balances[to] += value; } } emit Transfer(from, to, value); } /** * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0). * Relies on the `_update` mechanism * * Emits a {Transfer} event with `from` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead. */ function _mint(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidReceiver(address(0)); } _update(address(0), account, value); } /** * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply. * Relies on the `_update` mechanism. * * Emits a {Transfer} event with `to` set to the zero address. * * NOTE: This function is not virtual, {_update} should be overridden instead */ function _burn(address account, uint256 value) internal { if (account == address(0)) { revert ERC20InvalidSender(address(0)); } _update(account, address(0), value); } /** * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. * * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument. */ function _approve(address owner, address spender, uint256 value) internal { _approve(owner, spender, value, true); } /** * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event. * * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any * `Approval` event during `transferFrom` operations. * * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to * true using the following override: * ``` * function _approve(address owner, address spender, uint256 value, bool) internal virtual override { * super._approve(owner, spender, value, true); * } * ``` * * Requirements are the same as {_approve}. */ function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual { if (owner == address(0)) { revert ERC20InvalidApprover(address(0)); } if (spender == address(0)) { revert ERC20InvalidSpender(address(0)); } _allowances[owner][spender] = value; if (emitEvent) { emit Approval(owner, spender, value); } } /** * @dev Updates `owner` s allowance for `spender` based on spent `value`. * * Does not update the allowance value in case of infinite allowance. * Revert if not enough allowance is available. * * Does not emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 value) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { if (currentAllowance < value) { revert ERC20InsufficientAllowance(spender, currentAllowance, value); } unchecked { _approve(owner, spender, currentAllowance - value, false); } } } } // lib/openzeppelin-contracts/contracts/token/ERC20/extensions/ERC20Burnable.sol // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.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); } } // src/FAIL.sol interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } contract FAIL is Ownable, ERC20("FAIL Coin", "FAIL"), ERC20Burnable { IUniswapV2Router02 private immutable uniswapV2Router; uint8 private constant _decimals = 9; uint256 private constant _tTotal = 1_000_000_000 * 10 ** _decimals; address private uniswapV2Pair; bool private tradingOpen; mapping(address => bool) private whitelist; bool private whitelistEnabled = true; constructor(address router) Ownable(_msgSender()) { uniswapV2Router = IUniswapV2Router02(router); whitelist[address(0)] = true; whitelist[address(this)] = true; _mint(address(this), _tTotal); } receive() external payable {} function decimals() public pure override returns (uint8) { return _decimals; } function openTrading() external onlyOwner { require(!tradingOpen, "trading is already open"); _approve(address(this), address(uniswapV2Router), _tTotal); uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair( address(this), uniswapV2Router.WETH() ); whitelist[uniswapV2Pair] = true; uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); IERC20(uniswapV2Pair).approve(address(uniswapV2Router), type(uint).max); tradingOpen = true; } function rescueERC20(address _address, uint256 percent) external onlyOwner { uint256 _amount = (IERC20(_address).balanceOf(address(this)) * percent) / 100; bool success = IERC20(_address).transfer(owner(), _amount); require(success, "Transfer failed"); } function abortWhitelist() external onlyOwner { whitelistEnabled = false; } function addWhitelists(address[] calldata accounts) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { whitelist[accounts[i]] = true; } } function removeWhitelists(address[] calldata accounts) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { whitelist[accounts[i]] = false; } } function isWhitelist(address account) public view returns (bool) { return whitelist[account]; } function _update(address from, address to, uint256 value) internal override { super._update(from, to, value); if (whitelistEnabled) { require(isWhitelist(from) && isWhitelist(to), "Transfer not allowed"); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"abortWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"addWhitelists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeWhitelists","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"rescueERC20","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526008805460ff191660011790553480156200001e57600080fd5b5060405162001b2138038062001b218339810160408190526200004191620003e4565b604051806040016040528060098152602001682320a4a61021b7b4b760b91b815250604051806040016040528060048152602001631190525360e21b815250620000906200017260201b60201c565b6001600160a01b038116620000c057604051631e4fbdf760e01b8152600060048201526024015b60405180910390fd5b620000cb8162000176565b506004620000da8382620004bc565b506005620000e98282620004bc565b5050506001600160a01b03811660805260076020527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df8054600160ff19918216811790925530600081815260409020805490921690921790556200016b90620001556009600a6200069d565b6200016590633b9aca00620006ae565b620001c6565b50620006de565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001f25760405163ec442f0560e01b815260006004820152602401620000b7565b620002006000838362000204565b5050565b62000211838383620002b1565b60085460ff1615620002ac576001600160a01b03831660009081526007602052604090205460ff1680156200025e57506001600160a01b03821660009081526007602052604090205460ff165b620002ac5760405162461bcd60e51b815260206004820152601460248201527f5472616e73666572206e6f7420616c6c6f7765640000000000000000000000006044820152606401620000b7565b505050565b6001600160a01b038316620002e0578060036000828254620002d49190620006c8565b90915550620003549050565b6001600160a01b03831660009081526001602052604090205481811015620003355760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401620000b7565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b038216620003725760038054829003905562000391565b6001600160a01b03821660009081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d791815260200190565b60405180910390a3505050565b600060208284031215620003f757600080fd5b81516001600160a01b03811681146200040f57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200044157607f821691505b6020821081036200046257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ac576000816000526020600020601f850160051c81016020861015620004935750805b601f850160051c820191505b81811015620004b4578281556001016200049f565b505050505050565b81516001600160401b03811115620004d857620004d862000416565b620004f081620004e984546200042c565b8462000468565b602080601f8311600181146200052857600084156200050f5750858301515b600019600386901b1c1916600185901b178555620004b4565b600085815260208120601f198616915b82811015620005595788860151825594840194600190910190840162000538565b5085821015620005785787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620005df578160001904821115620005c357620005c362000588565b80851615620005d157918102915b93841c9390800290620005a3565b509250929050565b600082620005f85750600162000697565b81620006075750600062000697565b81600181146200062057600281146200062b576200064b565b600191505062000697565b60ff8411156200063f576200063f62000588565b50506001821b62000697565b5060208310610133831016604e8410600b841016171562000670575081810a62000697565b6200067c83836200059e565b806000190482111562000693576200069362000588565b0290505b92915050565b60006200040f60ff841683620005e7565b808202811582820484141762000697576200069762000588565b8082018082111562000697576200069762000588565b60805161140b62000716600039600081816107ee0152818161082e015281816108bf015281816109eb0152610aef015261140b6000f3fe6080604052600436106101235760003560e01c80638cd4426d116100a0578063c683630d11610064578063c683630d14610324578063c8eaf28f1461035d578063c9567bf91461037d578063dd62ed3e14610392578063f2fde38b146103d857600080fd5b80638cd4426d146102925780638da5cb5b146102b257806395d89b41146102da578063990f5b13146102ef578063a9059cbb1461030457600080fd5b8063313ce567116100e7578063313ce567146101eb57806342966c681461020757806370a0823114610227578063715018a61461025d57806379cc67901461027257600080fd5b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a9578063281bd798146101c957600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506101446103f8565b6040516101519190610fee565b60405180910390f35b34801561016657600080fd5b5061017a610175366004611052565b61048a565b6040519015158152602001610151565b34801561019657600080fd5b506003545b604051908152602001610151565b3480156101b557600080fd5b5061017a6101c436600461107e565b6104a4565b3480156101d557600080fd5b506101e96101e43660046110bf565b6104c8565b005b3480156101f757600080fd5b5060405160098152602001610151565b34801561021357600080fd5b506101e9610222366004611134565b61053d565b34801561023357600080fd5b5061019b61024236600461114d565b6001600160a01b031660009081526001602052604090205490565b34801561026957600080fd5b506101e961054a565b34801561027e57600080fd5b506101e961028d366004611052565b61055e565b34801561029e57600080fd5b506101e96102ad366004611052565b610577565b3480156102be57600080fd5b506000546040516001600160a01b039091168152602001610151565b3480156102e657600080fd5b506101446106e5565b3480156102fb57600080fd5b506101e96106f4565b34801561031057600080fd5b5061017a61031f366004611052565b610708565b34801561033057600080fd5b5061017a61033f36600461114d565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561036957600080fd5b506101e96103783660046110bf565b610716565b34801561038957600080fd5b506101e9610786565b34801561039e57600080fd5b5061019b6103ad366004611171565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156103e457600080fd5b506101e96103f336600461114d565b610b84565b606060048054610407906111aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610433906111aa565b80156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b600033610498818585610bbf565b60019150505b92915050565b6000336104b2858285610bcc565b6104bd858585610c44565b506001949350505050565b6104d0610ca3565b60005b81811015610538576000600760008585858181106104f3576104f36111e4565b9050602002016020810190610508919061114d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556001016104d3565b505050565b6105473382610cd0565b50565b610552610ca3565b61055c6000610d06565b565b610569823383610bcc565b6105738282610cd0565b5050565b61057f610ca3565b6040516370a0823160e01b815230600482015260009060649083906001600160a01b038616906370a0823190602401602060405180830381865afa1580156105cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ef91906111fa565b6105f99190611229565b6106039190611240565b90506000836001600160a01b031663a9059cbb6106286000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015610675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106999190611262565b9050806106df5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064015b60405180910390fd5b50505050565b606060058054610407906111aa565b6106fc610ca3565b6008805460ff19169055565b600033610498818585610c44565b61071e610ca3565b60005b8181101561053857600160076000858585818110610741576107416111e4565b9050602002016020810190610756919061114d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055600101610721565b61078e610ca3565b600654600160a01b900460ff16156107e85760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016106d6565b61082c307f00000000000000000000000000000000000000000000000000000000000000006108196009600a611368565b61082790633b9aca00611229565b610bbf565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561088a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ae9190611377565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093f9190611377565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561098c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b09190611377565b600680546001600160a01b039283166001600160a01b031990911681179091556000908152600760205260409020805460ff191660011790557f00000000000000000000000000000000000000000000000000000000000000001663f305d7194730610a31816001600160a01b031660009081526001602052604090205490565b600080610a466000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610aae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ad39190611394565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811660048301526000196024830152909116915063095ea7b3906044016020604051808303816000875af1158015610b4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6e9190611262565b506006805460ff60a01b1916600160a01b179055565b610b8c610ca3565b6001600160a01b038116610bb657604051631e4fbdf760e01b8152600060048201526024016106d6565b61054781610d06565b6105388383836001610d56565b6001600160a01b0383811660009081526002602090815260408083209386168352929052205460001981146106df5781811015610c3557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106d6565b6106df84848484036000610d56565b6001600160a01b038316610c6e57604051634b637e8f60e11b8152600060048201526024016106d6565b6001600160a01b038216610c985760405163ec442f0560e01b8152600060048201526024016106d6565b610538838383610e2b565b6000546001600160a01b0316331461055c5760405163118cdaa760e01b81523360048201526024016106d6565b6001600160a01b038216610cfa57604051634b637e8f60e11b8152600060048201526024016106d6565b61057382600083610e2b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038416610d805760405163e602df0560e01b8152600060048201526024016106d6565b6001600160a01b038316610daa57604051634a1406b160e11b8152600060048201526024016106d6565b6001600160a01b03808516600090815260026020908152604080832093871683529290522082905580156106df57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e1d91815260200190565b60405180910390a350505050565b610e36838383610ec4565b60085460ff1615610538576001600160a01b03831660009081526007602052604090205460ff168015610e8157506001600160a01b03821660009081526007602052604090205460ff165b6105385760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c881b9bdd08185b1b1bddd95960621b60448201526064016106d6565b6001600160a01b038316610eef578060036000828254610ee491906113c2565b90915550610f619050565b6001600160a01b03831660009081526001602052604090205481811015610f425760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106d6565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b038216610f7d57600380548290039055610f9c565b6001600160a01b03821660009081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fe191815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b8181101561101c57858101830151858201604001528201611000565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461054757600080fd5b6000806040838503121561106557600080fd5b82356110708161103d565b946020939093013593505050565b60008060006060848603121561109357600080fd5b833561109e8161103d565b925060208401356110ae8161103d565b929592945050506040919091013590565b600080602083850312156110d257600080fd5b823567ffffffffffffffff808211156110ea57600080fd5b818501915085601f8301126110fe57600080fd5b81358181111561110d57600080fd5b8660208260051b850101111561112257600080fd5b60209290920196919550909350505050565b60006020828403121561114657600080fd5b5035919050565b60006020828403121561115f57600080fd5b813561116a8161103d565b9392505050565b6000806040838503121561118457600080fd5b823561118f8161103d565b9150602083013561119f8161103d565b809150509250929050565b600181811c908216806111be57607f821691505b6020821081036111de57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561120c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761049e5761049e611213565b60008261125d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561127457600080fd5b8151801515811461116a57600080fd5b600181815b808511156112bf5781600019048211156112a5576112a5611213565b808516156112b257918102915b93841c9390800290611289565b509250929050565b6000826112d65750600161049e565b816112e35750600061049e565b81600181146112f957600281146113035761131f565b600191505061049e565b60ff84111561131457611314611213565b50506001821b61049e565b5060208310610133831016604e8410600b8410161715611342575081810a61049e565b61134c8383611284565b806000190482111561136057611360611213565b029392505050565b600061116a60ff8416836112c7565b60006020828403121561138957600080fd5b815161116a8161103d565b6000806000606084860312156113a957600080fd5b8351925060208401519150604084015190509250925092565b8082018082111561049e5761049e61121356fea26469706673582212203c319459b16b2a470247811e5fbcbbb0aea1ce23759b5e60621a377d789415cd64736f6c634300081700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode
0x6080604052600436106101235760003560e01c80638cd4426d116100a0578063c683630d11610064578063c683630d14610324578063c8eaf28f1461035d578063c9567bf91461037d578063dd62ed3e14610392578063f2fde38b146103d857600080fd5b80638cd4426d146102925780638da5cb5b146102b257806395d89b41146102da578063990f5b13146102ef578063a9059cbb1461030457600080fd5b8063313ce567116100e7578063313ce567146101eb57806342966c681461020757806370a0823114610227578063715018a61461025d57806379cc67901461027257600080fd5b806306fdde031461012f578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a9578063281bd798146101c957600080fd5b3661012a57005b600080fd5b34801561013b57600080fd5b506101446103f8565b6040516101519190610fee565b60405180910390f35b34801561016657600080fd5b5061017a610175366004611052565b61048a565b6040519015158152602001610151565b34801561019657600080fd5b506003545b604051908152602001610151565b3480156101b557600080fd5b5061017a6101c436600461107e565b6104a4565b3480156101d557600080fd5b506101e96101e43660046110bf565b6104c8565b005b3480156101f757600080fd5b5060405160098152602001610151565b34801561021357600080fd5b506101e9610222366004611134565b61053d565b34801561023357600080fd5b5061019b61024236600461114d565b6001600160a01b031660009081526001602052604090205490565b34801561026957600080fd5b506101e961054a565b34801561027e57600080fd5b506101e961028d366004611052565b61055e565b34801561029e57600080fd5b506101e96102ad366004611052565b610577565b3480156102be57600080fd5b506000546040516001600160a01b039091168152602001610151565b3480156102e657600080fd5b506101446106e5565b3480156102fb57600080fd5b506101e96106f4565b34801561031057600080fd5b5061017a61031f366004611052565b610708565b34801561033057600080fd5b5061017a61033f36600461114d565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561036957600080fd5b506101e96103783660046110bf565b610716565b34801561038957600080fd5b506101e9610786565b34801561039e57600080fd5b5061019b6103ad366004611171565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b3480156103e457600080fd5b506101e96103f336600461114d565b610b84565b606060048054610407906111aa565b80601f0160208091040260200160405190810160405280929190818152602001828054610433906111aa565b80156104805780601f1061045557610100808354040283529160200191610480565b820191906000526020600020905b81548152906001019060200180831161046357829003601f168201915b5050505050905090565b600033610498818585610bbf565b60019150505b92915050565b6000336104b2858285610bcc565b6104bd858585610c44565b506001949350505050565b6104d0610ca3565b60005b81811015610538576000600760008585858181106104f3576104f36111e4565b9050602002016020810190610508919061114d565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790556001016104d3565b505050565b6105473382610cd0565b50565b610552610ca3565b61055c6000610d06565b565b610569823383610bcc565b6105738282610cd0565b5050565b61057f610ca3565b6040516370a0823160e01b815230600482015260009060649083906001600160a01b038616906370a0823190602401602060405180830381865afa1580156105cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105ef91906111fa565b6105f99190611229565b6106039190611240565b90506000836001600160a01b031663a9059cbb6106286000546001600160a01b031690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018590526044016020604051808303816000875af1158015610675573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106999190611262565b9050806106df5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b60448201526064015b60405180910390fd5b50505050565b606060058054610407906111aa565b6106fc610ca3565b6008805460ff19169055565b600033610498818585610c44565b61071e610ca3565b60005b8181101561053857600160076000858585818110610741576107416111e4565b9050602002016020810190610756919061114d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055600101610721565b61078e610ca3565b600654600160a01b900460ff16156107e85760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e00000000000000000060448201526064016106d6565b61082c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6108196009600a611368565b61082790633b9aca00611229565b610bbf565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561088a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ae9190611377565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561091b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061093f9190611377565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561098c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b09190611377565b600680546001600160a01b039283166001600160a01b031990911681179091556000908152600760205260409020805460ff191660011790557f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d7194730610a31816001600160a01b031660009081526001602052604090205490565b600080610a466000546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610aae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ad39190611394565b505060065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811660048301526000196024830152909116915063095ea7b3906044016020604051808303816000875af1158015610b4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b6e9190611262565b506006805460ff60a01b1916600160a01b179055565b610b8c610ca3565b6001600160a01b038116610bb657604051631e4fbdf760e01b8152600060048201526024016106d6565b61054781610d06565b6105388383836001610d56565b6001600160a01b0383811660009081526002602090815260408083209386168352929052205460001981146106df5781811015610c3557604051637dc7a0d960e11b81526001600160a01b038416600482015260248101829052604481018390526064016106d6565b6106df84848484036000610d56565b6001600160a01b038316610c6e57604051634b637e8f60e11b8152600060048201526024016106d6565b6001600160a01b038216610c985760405163ec442f0560e01b8152600060048201526024016106d6565b610538838383610e2b565b6000546001600160a01b0316331461055c5760405163118cdaa760e01b81523360048201526024016106d6565b6001600160a01b038216610cfa57604051634b637e8f60e11b8152600060048201526024016106d6565b61057382600083610e2b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038416610d805760405163e602df0560e01b8152600060048201526024016106d6565b6001600160a01b038316610daa57604051634a1406b160e11b8152600060048201526024016106d6565b6001600160a01b03808516600090815260026020908152604080832093871683529290522082905580156106df57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610e1d91815260200190565b60405180910390a350505050565b610e36838383610ec4565b60085460ff1615610538576001600160a01b03831660009081526007602052604090205460ff168015610e8157506001600160a01b03821660009081526007602052604090205460ff165b6105385760405162461bcd60e51b8152602060048201526014602482015273151c985b9cd9995c881b9bdd08185b1b1bddd95960621b60448201526064016106d6565b6001600160a01b038316610eef578060036000828254610ee491906113c2565b90915550610f619050565b6001600160a01b03831660009081526001602052604090205481811015610f425760405163391434e360e21b81526001600160a01b038516600482015260248101829052604481018390526064016106d6565b6001600160a01b03841660009081526001602052604090209082900390555b6001600160a01b038216610f7d57600380548290039055610f9c565b6001600160a01b03821660009081526001602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610fe191815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b8181101561101c57858101830151858201604001528201611000565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461054757600080fd5b6000806040838503121561106557600080fd5b82356110708161103d565b946020939093013593505050565b60008060006060848603121561109357600080fd5b833561109e8161103d565b925060208401356110ae8161103d565b929592945050506040919091013590565b600080602083850312156110d257600080fd5b823567ffffffffffffffff808211156110ea57600080fd5b818501915085601f8301126110fe57600080fd5b81358181111561110d57600080fd5b8660208260051b850101111561112257600080fd5b60209290920196919550909350505050565b60006020828403121561114657600080fd5b5035919050565b60006020828403121561115f57600080fd5b813561116a8161103d565b9392505050565b6000806040838503121561118457600080fd5b823561118f8161103d565b9150602083013561119f8161103d565b809150509250929050565b600181811c908216806111be57607f821691505b6020821081036111de57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561120c57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b808202811582820484141761049e5761049e611213565b60008261125d57634e487b7160e01b600052601260045260246000fd5b500490565b60006020828403121561127457600080fd5b8151801515811461116a57600080fd5b600181815b808511156112bf5781600019048211156112a5576112a5611213565b808516156112b257918102915b93841c9390800290611289565b509250929050565b6000826112d65750600161049e565b816112e35750600061049e565b81600181146112f957600281146113035761131f565b600191505061049e565b60ff84111561131457611314611213565b50506001821b61049e565b5060208310610133831016604e8410600b8410161715611342575081810a61049e565b61134c8383611284565b806000190482111561136057611360611213565b029392505050565b600061116a60ff8416836112c7565b60006020828403121561138957600080fd5b815161116a8161103d565b6000806000606084860312156113a957600080fd5b8351925060208401519150604084015190509250925092565b8082018082111561049e5761049e61121356fea26469706673582212203c319459b16b2a470247811e5fbcbbb0aea1ce23759b5e60621a377d789415cd64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
-----Decoded View---------------
Arg [0] : router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Deployed Bytecode Sourcemap
27685:2700:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16414:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18707:190;;;;;;;;;;-1:-1:-1;18707:190:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;18707:190:0;1023:187:1;17516:99:0;;;;;;;;;;-1:-1:-1;17595:12:0;;17516:99;;;1361:25:1;;;1349:2;1334:18;17516:99:0;1215:177:1;19475:249:0;;;;;;;;;;-1:-1:-1;19475:249:0;;;;;:::i;:::-;;:::i;29807:195::-;;;;;;;;;;-1:-1:-1;29807:195:0;;;;;:::i;:::-;;:::i;:::-;;28387:92;;;;;;;;;;-1:-1:-1;28387:92:0;;27856:1;2620:36:1;;2608:2;2593:18;28387:92:0;2478:184:1;26312:89:0;;;;;;;;;;-1:-1:-1;26312:89:0;;;;;:::i;:::-;;:::i;17678:118::-;;;;;;;;;;-1:-1:-1;17678:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;17770:18:0;17743:7;17770:18;;;:9;:18;;;;;;;17678:118;12969:103;;;;;;;;;;;;;:::i;26730:161::-;;;;;;;;;;-1:-1:-1;26730:161:0;;;;;:::i;:::-;;:::i;29218:286::-;;;;;;;;;;-1:-1:-1;29218:286:0;;;;;:::i;:::-;;:::i;12294:87::-;;;;;;;;;;-1:-1:-1;12340:7:0;12367:6;12294:87;;-1:-1:-1;;;;;12367:6:0;;;3250:51:1;;3238:2;3223:18;12294:87:0;3104:203:1;16624:95:0;;;;;;;;;;;;;:::i;29512:88::-;;;;;;;;;;;;;:::i;18001:182::-;;;;;;;;;;-1:-1:-1;18001:182:0;;;;;:::i;:::-;;:::i;30010:109::-;;;;;;;;;;-1:-1:-1;30010:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;30093:18:0;30069:4;30093:18;;;:9;:18;;;;;;;;;30010:109;29608:191;;;;;;;;;;-1:-1:-1;29608:191:0;;;;;:::i;:::-;;:::i;28487:723::-;;;;;;;;;;;;;:::i;18246:142::-;;;;;;;;;;-1:-1:-1;18246:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;18353:18:0;;;18326:7;18353:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18246:142;13227:220;;;;;;;;;;-1:-1:-1;13227:220:0;;;;;:::i;:::-;;:::i;16414:91::-;16459:13;16492:5;16485:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16414:91;:::o;18707:190::-;18780:4;10408:10;18836:31;10408:10;18852:7;18861:5;18836:8;:31::i;:::-;18885:4;18878:11;;;18707:190;;;;;:::o;19475:249::-;19562:4;10408:10;19620:37;19636:4;10408:10;19651:5;19620:15;:37::i;:::-;19668:26;19678:4;19684:2;19688:5;19668:9;:26::i;:::-;-1:-1:-1;19712:4:0;;19475:249;-1:-1:-1;;;;19475:249:0:o;29807:195::-;12180:13;:11;:13::i;:::-;29897:9:::1;29892:103;29912:19:::0;;::::1;29892:103;;;29978:5;29953:9;:22;29963:8;;29972:1;29963:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29953:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29953:22:0;:30;;-1:-1:-1;;29953:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;29933:3:0::1;29892:103;;;;29807:195:::0;;:::o;26312:89::-;26367:26;10408:10;26387:5;26367;:26::i;:::-;26312:89;:::o;12969:103::-;12180:13;:11;:13::i;:::-;13034:30:::1;13061:1;13034:18;:30::i;:::-;12969:103::o:0;26730:161::-;26806:45;26822:7;10408:10;26845:5;26806:15;:45::i;:::-;26862:21;26868:7;26877:5;26862;:21::i;:::-;26730:161;;:::o;29218:286::-;12180:13;:11;:13::i;:::-;29323:41:::1;::::0;-1:-1:-1;;;29323:41:0;;29358:4:::1;29323:41;::::0;::::1;3250:51:1::0;29304:15:0::1;::::0;29378:3:::1;::::0;29367:7;;-1:-1:-1;;;;;29323:26:0;::::1;::::0;::::1;::::0;3223:18:1;;29323:41:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;;;;:::i;:::-;29322:59;;;;:::i;:::-;29304:77;;29392:12;29414:8;-1:-1:-1::0;;;;;29407:25:0::1;;29433:7;12340::::0;12367:6;-1:-1:-1;;;;;12367:6:0;;12294:87;29433:7:::1;29407:43;::::0;-1:-1:-1;;;;;;29407:43:0::1;::::0;;;;;;-1:-1:-1;;;;;5130:32:1;;;29407:43:0::1;::::0;::::1;5112:51:1::0;5179:18;;;5172:34;;;5085:18;;29407:43:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29392:58;;29469:7;29461:35;;;::::0;-1:-1:-1;;;29461:35:0;;5701:2:1;29461:35:0::1;::::0;::::1;5683:21:1::0;5740:2;5720:18;;;5713:30;-1:-1:-1;;;5759:18:1;;;5752:45;5814:18;;29461:35:0::1;;;;;;;;;29293:211;;29218:286:::0;;:::o;16624:95::-;16671:13;16704:7;16697:14;;;;;:::i;29512:88::-;12180:13;:11;:13::i;:::-;29568:16:::1;:24:::0;;-1:-1:-1;;29568:24:0::1;::::0;;29512:88::o;18001:182::-;18070:4;10408:10;18126:27;10408:10;18143:2;18147:5;18126:9;:27::i;29608:191::-;12180:13;:11;:13::i;:::-;29695:9:::1;29690:102;29710:19:::0;;::::1;29690:102;;;29776:4;29751:9;:22;29761:8;;29770:1;29761:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;29751:22:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;29751:22:0;:29;;-1:-1:-1;;29751:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;29731:3:0::1;29690:102;;28487:723:::0;12180:13;:11;:13::i;:::-;28549:11:::1;::::0;-1:-1:-1;;;28549:11:0;::::1;;;28548:12;28540:48;;;::::0;-1:-1:-1;;;28540:48:0;;6045:2:1;28540:48:0::1;::::0;::::1;6027:21:1::0;6084:2;6064:18;;;6057:30;6123:25;6103:18;;;6096:53;6166:18;;28540:48:0::1;5843:347:1::0;28540:48:0::1;28599:58;28616:4;28631:15;27917;27856:1;27917:2;:15;:::i;:::-;27901:31;::::0;:13:::1;:31;:::i;:::-;28599:8;:58::i;:::-;28702:15;-1:-1:-1::0;;;;;28702:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28684:55:0::1;;28762:4;28782:15;-1:-1:-1::0;;;;;28782:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28684:131;::::0;-1:-1:-1;;;;;;28684:131:0::1;::::0;;;;;;-1:-1:-1;;;;;8058:15:1;;;28684:131:0::1;::::0;::::1;8040:34:1::0;8110:15;;8090:18;;;8083:43;7975:18;;28684:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28668:13;:147:::0;;-1:-1:-1;;;;;28668:147:0;;::::1;-1:-1:-1::0;;;;;;28668:147:0;;::::1;::::0;::::1;::::0;;;:13:::1;28826:24:::0;;;:9:::1;:24;::::0;;;;:31;;-1:-1:-1;;28826:31:0::1;28668:147:::0;28826:31:::1;::::0;;28868:15:::1;:31;;28907:21;28952:4;28972:24;28952:4:::0;-1:-1:-1;;;;;17770:18:0;17743:7;17770:18;;;:9;:18;;;;;;;17678:118;28972:24:::1;29011:1;29027::::0;29043:7:::1;12340::::0;12367:6;-1:-1:-1;;;;;12367:6:0;;12294:87;29043:7:::1;28868:223;::::0;::::1;::::0;;;-1:-1:-1;;;;;;28868:223:0;;;-1:-1:-1;;;;;8496:15:1;;;28868:223:0::1;::::0;::::1;8478:34:1::0;8528:18;;;8521:34;;;;8571:18;;;8564:34;;;;8614:18;;;8607:34;8678:15;;;8657:19;;;8650:44;29065:15:0::1;8710:19:1::0;;;8703:35;8412:19;;28868:223:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;29109:13:0::1;::::0;29102:71:::1;::::0;-1:-1:-1;;;29102:71:0;;-1:-1:-1;;;;;29140:15:0::1;5130:32:1::0;;29102:71:0::1;::::0;::::1;5112:51:1::0;-1:-1:-1;;5179:18:1;;;5172:34;29109:13:0;;::::1;::::0;-1:-1:-1;29102:29:0::1;::::0;5085:18:1;;29102:71:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;29184:11:0::1;:18:::0;;-1:-1:-1;;;;29184:18:0::1;-1:-1:-1::0;;;29184:18:0::1;::::0;;28487:723::o;13227:220::-;12180:13;:11;:13::i;:::-;-1:-1:-1;;;;;13312:22:0;::::1;13308:93;;13358:31;::::0;-1:-1:-1;;;13358:31:0;;13386:1:::1;13358:31;::::0;::::1;3250:51:1::0;3223:18;;13358:31:0::1;3104:203:1::0;13308:93:0::1;13411:28;13430:8;13411:18;:28::i;23534:130::-:0;23619:37;23628:5;23635:7;23644:5;23651:4;23619:8;:37::i;25250:487::-;-1:-1:-1;;;;;18353:18:0;;;25350:24;18353:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;25417:37:0;;25413:317;;25494:5;25475:16;:24;25471:132;;;25527:60;;-1:-1:-1;;;25527:60:0;;-1:-1:-1;;;;;9280:32:1;;25527:60:0;;;9262:51:1;9329:18;;;9322:34;;;9372:18;;;9365:34;;;9235:18;;25527:60:0;9060:345:1;25471:132:0;25646:57;25655:5;25662:7;25690:5;25671:16;:24;25697:5;25646:8;:57::i;20109:308::-;-1:-1:-1;;;;;20193:18:0;;20189:88;;20235:30;;-1:-1:-1;;;20235:30:0;;20262:1;20235:30;;;3250:51:1;3223:18;;20235:30:0;3104:203:1;20189:88:0;-1:-1:-1;;;;;20291:16:0;;20287:88;;20331:32;;-1:-1:-1;;;20331:32:0;;20360:1;20331:32;;;3250:51:1;3223:18;;20331:32:0;3104:203:1;20287:88:0;20385:24;20393:4;20399:2;20403:5;20385:7;:24::i;12459:166::-;12340:7;12367:6;-1:-1:-1;;;;;12367:6:0;10408:10;12519:23;12515:103;;12566:40;;-1:-1:-1;;;12566:40:0;;10408:10;12566:40;;;3250:51:1;3223:18;;12566:40:0;3104:203:1;22770:211:0;-1:-1:-1;;;;;22841:21:0;;22837:91;;22886:30;;-1:-1:-1;;;22886:30:0;;22913:1;22886:30;;;3250:51:1;3223:18;;22886:30:0;3104:203:1;22837:91:0;22938:35;22946:7;22963:1;22967:5;22938:7;:35::i;13607:191::-;13681:16;13700:6;;-1:-1:-1;;;;;13717:17:0;;;-1:-1:-1;;;;;;13717:17:0;;;;;;13750:40;;13700:6;;;;;;;13750:40;;13681:16;13750:40;13670:128;13607:191;:::o;24515:443::-;-1:-1:-1;;;;;24628:19:0;;24624:91;;24671:32;;-1:-1:-1;;;24671:32:0;;24700:1;24671:32;;;3250:51:1;3223:18;;24671:32:0;3104:203:1;24624:91:0;-1:-1:-1;;;;;24729:21:0;;24725:92;;24774:31;;-1:-1:-1;;;24774:31:0;;24802:1;24774:31;;;3250:51:1;3223:18;;24774:31:0;3104:203:1;24725:92:0;-1:-1:-1;;;;;24827:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;24873:78;;;;24924:7;-1:-1:-1;;;;;24908:31:0;24917:5;-1:-1:-1;;;;;24908:31:0;;24933:5;24908:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;24908:31:0;;;;;;;;24515:443;;;;:::o;30127:255::-;30214:30;30228:4;30234:2;30238:5;30214:13;:30::i;:::-;30261:16;;;;30257:118;;;-1:-1:-1;;;;;30093:18:0;;30069:4;30093:18;;;:9;:18;;;;;;;;30302:36;;;;-1:-1:-1;;;;;;30093:18:0;;30069:4;30093:18;;;:9;:18;;;;;;;;30323:15;30294:69;;;;-1:-1:-1;;;30294:69:0;;9612:2:1;30294:69:0;;;9594:21:1;9651:2;9631:18;;;9624:30;-1:-1:-1;;;9670:18:1;;;9663:50;9730:18;;30294:69:0;9410:344:1;20741:1135:0;-1:-1:-1;;;;;20831:18:0;;20827:552;;20985:5;20969:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;20827:552:0;;-1:-1:-1;20827:552:0;;-1:-1:-1;;;;;21045:15:0;;21023:19;21045:15;;;:9;:15;;;;;;21079:19;;;21075:117;;;21126:50;;-1:-1:-1;;;21126:50:0;;-1:-1:-1;;;;;9280:32:1;;21126:50:0;;;9262:51:1;9329:18;;;9322:34;;;9372:18;;;9365:34;;;9235:18;;21126:50:0;9060:345:1;21075:117:0;-1:-1:-1;;;;;21315:15:0;;;;;;:9;:15;;;;;21333:19;;;;21315:37;;20827:552;-1:-1:-1;;;;;21395:16:0;;21391:435;;21561:12;:21;;;;;;;21391:435;;;-1:-1:-1;;;;;21777:13:0;;;;;;:9;:13;;;;;:22;;;;;;21391:435;21858:2;-1:-1:-1;;;;;21843:25:0;21852:4;-1:-1:-1;;;;;21843:25:0;;21862:5;21843:25;;;;1361::1;;1349:2;1334:18;;1215:177;21843:25:0;;;;;;;;20741:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;1858:615::-;1944:6;1952;2005:2;1993:9;1984:7;1980:23;1976:32;1973:52;;;2021:1;2018;2011:12;1973:52;2061:9;2048:23;2090:18;2131:2;2123:6;2120:14;2117:34;;;2147:1;2144;2137:12;2117:34;2185:6;2174:9;2170:22;2160:32;;2230:7;2223:4;2219:2;2215:13;2211:27;2201:55;;2252:1;2249;2242:12;2201:55;2292:2;2279:16;2318:2;2310:6;2307:14;2304:34;;;2334:1;2331;2324:12;2304:34;2387:7;2382:2;2372:6;2369:1;2365:14;2361:2;2357:23;2353:32;2350:45;2347:65;;;2408:1;2405;2398:12;2347:65;2439:2;2431:11;;;;;2461:6;;-1:-1:-1;1858:615:1;;-1:-1:-1;;;;1858:615:1:o;2667:180::-;2726:6;2779:2;2767:9;2758:7;2754:23;2750:32;2747:52;;;2795:1;2792;2785:12;2747:52;-1:-1:-1;2818:23:1;;2667:180;-1:-1:-1;2667:180:1:o;2852:247::-;2911:6;2964:2;2952:9;2943:7;2939:23;2935:32;2932:52;;;2980:1;2977;2970:12;2932:52;3019:9;3006:23;3038:31;3063:5;3038:31;:::i;:::-;3088:5;2852:247;-1:-1:-1;;;2852:247:1:o;3312:388::-;3380:6;3388;3441:2;3429:9;3420:7;3416:23;3412:32;3409:52;;;3457:1;3454;3447:12;3409:52;3496:9;3483:23;3515:31;3540:5;3515:31;:::i;:::-;3565:5;-1:-1:-1;3622:2:1;3607:18;;3594:32;3635:33;3594:32;3635:33;:::i;:::-;3687:7;3677:17;;;3312:388;;;;;:::o;3705:380::-;3784:1;3780:12;;;;3827;;;3848:61;;3902:4;3894:6;3890:17;3880:27;;3848:61;3955:2;3947:6;3944:14;3924:18;3921:38;3918:161;;4001:10;3996:3;3992:20;3989:1;3982:31;4036:4;4033:1;4026:15;4064:4;4061:1;4054:15;3918:161;;3705:380;;;:::o;4090:127::-;4151:10;4146:3;4142:20;4139:1;4132:31;4182:4;4179:1;4172:15;4206:4;4203:1;4196:15;4222:184;4292:6;4345:2;4333:9;4324:7;4320:23;4316:32;4313:52;;;4361:1;4358;4351:12;4313:52;-1:-1:-1;4384:16:1;;4222:184;-1:-1:-1;4222:184:1:o;4411:127::-;4472:10;4467:3;4463:20;4460:1;4453:31;4503:4;4500:1;4493:15;4527:4;4524:1;4517:15;4543:168;4616:9;;;4647;;4664:15;;;4658:22;;4644:37;4634:71;;4685:18;;:::i;4716:217::-;4756:1;4782;4772:132;;4826:10;4821:3;4817:20;4814:1;4807:31;4861:4;4858:1;4851:15;4889:4;4886:1;4879:15;4772:132;-1:-1:-1;4918:9:1;;4716:217::o;5217:277::-;5284:6;5337:2;5325:9;5316:7;5312:23;5308:32;5305:52;;;5353:1;5350;5343:12;5305:52;5385:9;5379:16;5438:5;5431:13;5424:21;5417:5;5414:32;5404:60;;5460:1;5457;5450:12;6195:416;6284:1;6321:5;6284:1;6335:270;6356:7;6346:8;6343:21;6335:270;;;6415:4;6411:1;6407:6;6403:17;6397:4;6394:27;6391:53;;;6424:18;;:::i;:::-;6474:7;6464:8;6460:22;6457:55;;;6494:16;;;;6457:55;6573:22;;;;6533:15;;;;6335:270;;;6339:3;6195:416;;;;;:::o;6616:806::-;6665:5;6695:8;6685:80;;-1:-1:-1;6736:1:1;6750:5;;6685:80;6784:4;6774:76;;-1:-1:-1;6821:1:1;6835:5;;6774:76;6866:4;6884:1;6879:59;;;;6952:1;6947:130;;;;6859:218;;6879:59;6909:1;6900:10;;6923:5;;;6947:130;6984:3;6974:8;6971:17;6968:43;;;6991:18;;:::i;:::-;-1:-1:-1;;7047:1:1;7033:16;;7062:5;;6859:218;;7161:2;7151:8;7148:16;7142:3;7136:4;7133:13;7129:36;7123:2;7113:8;7110:16;7105:2;7099:4;7096:12;7092:35;7089:77;7086:159;;;-1:-1:-1;7198:19:1;;;7230:5;;7086:159;7277:34;7302:8;7296:4;7277:34;:::i;:::-;7347:6;7343:1;7339:6;7335:19;7326:7;7323:32;7320:58;;;7358:18;;:::i;:::-;7396:20;;6616:806;-1:-1:-1;;;6616:806:1:o;7427:140::-;7485:5;7514:47;7555:4;7545:8;7541:19;7535:4;7514:47;:::i;7572:251::-;7642:6;7695:2;7683:9;7674:7;7670:23;7666:32;7663:52;;;7711:1;7708;7701:12;7663:52;7743:9;7737:16;7762:31;7787:5;7762:31;:::i;8749:306::-;8837:6;8845;8853;8906:2;8894:9;8885:7;8881:23;8877:32;8874:52;;;8922:1;8919;8912:12;8874:52;8951:9;8945:16;8935:26;;9001:2;8990:9;8986:18;8980:25;8970:35;;9045:2;9034:9;9030:18;9024:25;9014:35;;8749:306;;;;;:::o;9759:125::-;9824:9;;;9845:10;;;9842:36;;;9858:18;;:::i
Swarm Source
ipfs://3c319459b16b2a470247811e5fbcbbb0aea1ce23759b5e60621a377d789415cd
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.