ERC-20
Overview
Max Total Supply
9,372,200,000,000 ETF
Holders
154
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
4,563,153,533.209758065769099936 ETFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.22+commit.4fc1097e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {Pausable} from "@openzeppelin/contracts/utils/Pausable.sol"; interface IUniswapV2Factory { function createPair( address tokenA, address tokenB ) external returns (address pair); } interface IUniswapV2Router { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); } contract Token is ERC20, Ownable, Pausable { address public immutable ADDR_TEAM1 = 0x4F6C335c334a569966838E748EC4037e27Be8686; uint256 public PREALLOC_TEAM1 = 5; address public immutable ADDR_TEAM2 = 0x31e966784d32C301cF7545df7288eFA386aD0C33; uint256 public PREALLOC_TEAM2 = 5; // TODO address public immutable ADDR_INFLUENCER = 0x56fE47B53e8975DAF48bbB4D16CE110e85D2F742; uint256 public PREALLOC_INFLUENCER = 5; address public immutable ADDR_STAKING = 0xEA24922F66871994AE7C5a50302744f7C0EfF6a7; uint256 public PREALLOC_STAKING = 5; address public immutable ADDR_CEX = 0xa0388403F81F4D0CE7B0869B10e91A68D62f5969; uint256 public PREALLOC_CEX = 5; uint256 public PREALLOC_LP = 60; uint256 public PREALLOC_AIRDROP = 10; uint256 public PREALLOC_BURN = 5; uint8 public remainingBurnCount = 2; // Tax System address public taxWallet = 0x43A5d37Dc152C2dd5C5588d2F7D03cd81A7c9259; uint256 public buyTax = 4; uint256 public sellTax = 4; uint256 public reservedTaxAmount; uint256 public totalTaxAmount; // Tax will be distributed if reserved amount is bigger than maxTaxReserveAmount uint256 public maxTaxReserveAmount = 50 * 10 ** decimals(); uint256 public totalAirdropped; // Uniswap IUniswapV2Router public swapRouter; address public swapPair; uint256 public pairCreated; uint256 public MAX_SUPPLY = uint248(1e13 ether); bool public initialized; constructor() payable ERC20("ETFBULLRUN", "ETF") Ownable(msg.sender) { uint256 totalAllocation = PREALLOC_TEAM1 + PREALLOC_TEAM2 + PREALLOC_INFLUENCER + PREALLOC_STAKING + PREALLOC_CEX + PREALLOC_BURN + PREALLOC_AIRDROP + PREALLOC_LP; require(totalAllocation == 100, "Invalid Allocation"); } function initialize() external payable onlyOwner { require(!initialized, "Alreay initialized"); initialized = true; swapRouter = IUniswapV2Router( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); swapPair = IUniswapV2Factory(swapRouter.factory()).createPair( address(this), swapRouter.WETH() ); pairCreated = block.timestamp; _mint(ADDR_TEAM1, (MAX_SUPPLY * PREALLOC_TEAM1) / 100); _mint(ADDR_TEAM2, (MAX_SUPPLY * PREALLOC_TEAM2) / 100); _mint(ADDR_INFLUENCER, (MAX_SUPPLY * PREALLOC_INFLUENCER) / 100); _mint( address(this), (MAX_SUPPLY * (PREALLOC_BURN + PREALLOC_AIRDROP + PREALLOC_LP)) / 100 ); _approve(msg.sender, address(swapRouter), type(uint256).max); _approve(address(this), address(swapRouter), type(uint256).max); // Create pool with 8% and 2 Ethers require(msg.value == 2 ether, "Invalid fund"); _addLiquidity((MAX_SUPPLY * 8) / 100, 2 ether); } function _update( address from, address to, uint256 amount ) internal override whenNotPaused { uint256 taxAmount = 0; if (to == swapPair) { taxAmount = (amount * _getSellTax()) / 100; } else if (from == swapPair) { taxAmount = (amount * _getBuyTax()) / 100; } else if (from == address(0)) { // Revert if totalSupply is bigger than MAX_SUPPLY require(totalSupply() + amount < MAX_SUPPLY, "Exceeds MAX SUPPLY"); } super._update(from, to, amount - taxAmount); if (taxAmount > 0) { _reserveTax(from, taxAmount); } } function _getBuyTax() private view returns (uint256) { // If current block timestamp is less than 10 after pair creation, then tax is 90% if (block.timestamp < pairCreated + 10 minutes) { return 90; } // After 10 minutes apply 6% tax if (block.timestamp < pairCreated + 20 minutes) { return 6; } // After 20 minutes apply 0% tax if (block.timestamp < pairCreated + 40 minutes) { return 0; } return buyTax; } function _getSellTax() private view returns (uint256) { // If current block timestamp is less than 10 after pair creation, then tax is 90% if (block.timestamp < pairCreated + 10 minutes) { return 90; } // After 10 minutes apply 6% tax if (block.timestamp < pairCreated + 20 minutes) { return 45; } // After 20 minutes apply 0% tax if (block.timestamp < pairCreated + 40 minutes) { return 25; } return sellTax; } function _reserveTax(address from, uint256 taxAmount) private { reservedTaxAmount += taxAmount; totalTaxAmount += taxAmount; super._update(from, address(this), taxAmount); if (reservedTaxAmount >= maxTaxReserveAmount) { _distributeTax(); } } function _distributeTax() private { super._transfer(address(this), taxWallet, reservedTaxAmount); reservedTaxAmount = 0; } function _swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = swapRouter.WETH(); swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), (block.timestamp) ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { swapRouter.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function changeTax(uint256 _buyTax, uint256 _sellTax) external onlyOwner { buyTax = _buyTax; sellTax = _sellTax; } function changeTaxWallet(address _taxWallet) external onlyOwner { taxWallet = _taxWallet; } function claimTax() external onlyOwner { _distributeTax(); } function unlockAllocation() external onlyOwner { require(block.timestamp > pairCreated + 30 days, "Wait 30 days"); _mint(ADDR_STAKING, (MAX_SUPPLY * PREALLOC_STAKING) / 100); _mint(ADDR_CEX, (MAX_SUPPLY * PREALLOC_CEX) / 100); } function addLiquidity(uint256 tokenAmount) external payable onlyOwner { _addLiquidity(tokenAmount, msg.value); } // First burn 50% and later burn the rest function burn() external onlyOwner { require(remainingBurnCount > 0, "Alreay burned"); remainingBurnCount--; _burn(address(this), (MAX_SUPPLY * (PREALLOC_BURN)) / 100 / 2); } function airdrop( address[] memory addresses, uint256[] memory amounts ) external onlyOwner { require(addresses.length == amounts.length, "Invalid data"); uint256 i = 0; uint256 total = 0; for (i = 0; i < addresses.length; i++) { total += amounts[i]; } require( totalAirdropped + total <= (MAX_SUPPLY * PREALLOC_AIRDROP) / 100, "Exceeds airdrop allocation" ); totalAirdropped += total; for (i = 0; i < addresses.length; i++) { _mint(addresses[i], amounts[i]); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/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()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/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) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./extensions/IERC20Metadata.sol"; import {Context} from "../../utils/Context.sol"; import {IERC20Errors} from "../../interfaces/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.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
// 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/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) (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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":[],"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":[],"name":"ADDR_CEX","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_INFLUENCER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_STAKING","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_TEAM1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDR_TEAM2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_AIRDROP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_BURN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_CEX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_INFLUENCER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_LP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_STAKING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_TEAM1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PREALLOC_TEAM2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"addLiquidity","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"airdrop","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":[],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"},{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"changeTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxWallet","type":"address"}],"name":"changeTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialize","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTaxReserveAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairCreated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remainingBurnCount","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedTaxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapRouter","outputs":[{"internalType":"contract IUniswapV2Router","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalAirdropped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTaxAmount","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":"unlockAllocation","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610120604052734f6c335c334a569966838e748ec4037e27be8686608052600560068190557331e966784d32c301cf7545df7288efa386ad0c3360a05260078190557356fe47b53e8975daf48bbb4d16ce110e85d2f74260c052600881905573ea24922f66871994ae7c5a50302744f7c0eff6a760e052600981905573a0388403f81f4d0ce7b0869b10e91a68d62f596961010052600a818155603c600b55600c55600d55600e80546001600160a81b0319167443a5d37dc152c2dd5c5588d2f7d03cd81a7c9259021790556004600f819055601055620000de601290565b620000eb90600a620003e3565b620000f8906032620003fa565b6013556c7e37be2022c0914b26800000006001600160f81b0316601855336040518060400160405280600a81526020016922aa23212aa626292aa760b11b8152506040518060400160405280600381526020016222aa2360e91b8152508160039081620001669190620004b2565b506004620001758282620004b2565b5050506001600160a01b038116620001a757604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620001b28162000283565b506005805460ff60a01b19169055600b54600c54600d54600a546009546008546007546006545f97969594939291620001eb916200057e565b620001f791906200057e565b6200020391906200057e565b6200020f91906200057e565b6200021b91906200057e565b6200022791906200057e565b6200023391906200057e565b9050806064146200027c5760405162461bcd60e51b815260206004820152601260248201527124b73b30b634b21020b63637b1b0ba34b7b760711b60448201526064016200019e565b5062000594565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200032857815f19048211156200030c576200030c620002d4565b808516156200031a57918102915b93841c9390800290620002ed565b509250929050565b5f826200034057506001620003dd565b816200034e57505f620003dd565b8160018114620003675760028114620003725762000392565b6001915050620003dd565b60ff841115620003865762000386620002d4565b50506001821b620003dd565b5060208310610133831016604e8410600b8410161715620003b7575081810a620003dd565b620003c38383620002e8565b805f1904821115620003d957620003d9620002d4565b0290505b92915050565b5f620003f360ff84168362000330565b9392505050565b8082028115828204841417620003dd57620003dd620002d4565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200043d57607f821691505b6020821081036200045c57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620004ad57805f5260205f20601f840160051c81016020851015620004895750805b601f840160051c820191505b81811015620004aa575f815560010162000495565b50505b505050565b81516001600160401b03811115620004ce57620004ce62000414565b620004e681620004df845462000428565b8462000462565b602080601f8311600181146200051c575f8415620005045750858301515b5f19600386901b1c1916600185901b17855562000576565b5f85815260208120601f198616915b828110156200054c578886015182559484019460019091019084016200052b565b50858210156200056a57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b80820180821115620003dd57620003dd620002d4565b60805160a05160c05160e05161010051611b03620005f55f395f818161076b0152610f9401525f81816105650152610f5e01525f81816104cb0152610da001525f818161079e0152610d6a01525f81816105980152610d2a0152611b035ff3fe608060405260043610610280575f3560e01c8063715018a611610155578063c31c9c07116100be578063dfa7649011610078578063dfa7649014610745578063eed822a81461075a578063f237b7e61461078d578063f28520ac146107c0578063f2fde38b146107d5578063fad95c33146107f4575f80fd5b8063c31c9c0714610685578063cb711595146106a4578063cc1776d3146106c3578063ce678580146106d8578063d81688e3146106ed578063dd62ed3e14610701575f80fd5b80639036ed4d1161010f5780639036ed4d146105f457806395d89b4114610613578063a9059cbb14610627578063b023c24e14610646578063b794b8591461065b578063beb8724d14610670575f80fd5b8063715018a61461054057806375df1d7c146105545780637868323f146105875780638129fc1c146105ba5780638367e322146105c25780638da5cb5b146105d7575f80fd5b806332cb6b0c116101f75780635420b4b1116101b15780635420b4b11461047257806358eb4c66146104875780635c975abb1461049c578063657df2c5146104ba57806367243482146104ed57806370a082311461050c575f80fd5b806332cb6b0c146103f657806337c81fa41461040b578063448883d71461042057806344df8e70146104365780634f7041a51461044a57806351c6590a1461045f575f80fd5b8063158ef93e11610248578063158ef93e1461033c57806318160ddd1461035557806323b872dd1461036957806326991cc8146103885780632dc0562d146103bf578063313ce567146103e3575f80fd5b80630317f1c71461028457806306fdde03146102ac578063095ea7b3146102cd57806312f1c1b4146102fc57806314e8d7d214610311575b5f80fd5b34801561028f575f80fd5b5061029960095481565b6040519081526020015b60405180910390f35b3480156102b7575f80fd5b506102c0610809565b6040516102a391906116c8565b3480156102d8575f80fd5b506102ec6102e7366004611728565b610899565b60405190151581526020016102a3565b348015610307575f80fd5b5061029960115481565b34801561031c575f80fd5b50600e5461032a9060ff1681565b60405160ff90911681526020016102a3565b348015610347575f80fd5b506019546102ec9060ff1681565b348015610360575f80fd5b50600254610299565b348015610374575f80fd5b506102ec610383366004611752565b6108b2565b348015610393575f80fd5b506016546103a7906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156103ca575f80fd5b50600e546103a79061010090046001600160a01b031681565b3480156103ee575f80fd5b50601261032a565b348015610401575f80fd5b5061029960185481565b348015610416575f80fd5b50610299600b5481565b34801561042b575f80fd5b506104346108d5565b005b348015610441575f80fd5b506104346108e7565b348015610455575f80fd5b50610299600f5481565b61043461046d366004611790565b610992565b34801561047d575f80fd5b5061029960125481565b348015610492575f80fd5b50610299600a5481565b3480156104a7575f80fd5b50600554600160a01b900460ff166102ec565b3480156104c5575f80fd5b506103a77f000000000000000000000000000000000000000000000000000000000000000081565b3480156104f8575f80fd5b5061043461050736600461187b565b6109a7565b348015610517575f80fd5b50610299610526366004611937565b6001600160a01b03165f9081526020819052604090205490565b34801561054b575f80fd5b50610434610b15565b34801561055f575f80fd5b506103a77f000000000000000000000000000000000000000000000000000000000000000081565b348015610592575f80fd5b506103a77f000000000000000000000000000000000000000000000000000000000000000081565b610434610b26565b3480156105cd575f80fd5b5061029960085481565b3480156105e2575f80fd5b506005546001600160a01b03166103a7565b3480156105ff575f80fd5b5061043461060e366004611959565b610ea5565b34801561061e575f80fd5b506102c0610eb8565b348015610632575f80fd5b506102ec610641366004611728565b610ec7565b348015610651575f80fd5b50610299600c5481565b348015610666575f80fd5b5061029960065481565b34801561067b575f80fd5b5061029960135481565b348015610690575f80fd5b506015546103a7906001600160a01b031681565b3480156106af575f80fd5b506104346106be366004611937565b610ed4565b3480156106ce575f80fd5b5061029960105481565b3480156106e3575f80fd5b5061029960145481565b3480156106f8575f80fd5b50610434610f04565b34801561070c575f80fd5b5061029961071b366004611979565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610750575f80fd5b5061029960175481565b348015610765575f80fd5b506103a77f000000000000000000000000000000000000000000000000000000000000000081565b348015610798575f80fd5b506103a77f000000000000000000000000000000000000000000000000000000000000000081565b3480156107cb575f80fd5b50610299600d5481565b3480156107e0575f80fd5b506104346107ef366004611937565b610fc5565b3480156107ff575f80fd5b5061029960075481565b606060038054610818906119b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610844906119b0565b801561088f5780601f106108665761010080835404028352916020019161088f565b820191905f5260205f20905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b5f336108a6818585610fff565b60019150505b92915050565b5f336108bf858285611011565b6108ca858585611086565b506001949350505050565b6108dd6110e3565b6108e5611110565b565b6108ef6110e3565b600e5460ff166109365760405162461bcd60e51b815260206004820152600d60248201526c105b1c99585e48189d5c9b9959609a1b60448201526064015b60405180910390fd5b600e805460ff16905f610948836119fc565b91906101000a81548160ff021916908360ff160217905550506108e53060026064600d546018546109799190611a17565b6109839190611a2e565b61098d9190611a2e565b611138565b61099a6110e3565b6109a48134611170565b50565b6109af6110e3565b80518251146109ef5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206461746160a01b604482015260640161092d565b5f805b8351821015610a2d57828281518110610a0d57610a0d611a4d565b602002602001015181610a209190611a61565b60019092019190506109f2565b6064600c54601854610a3f9190611a17565b610a499190611a2e565b81601454610a579190611a61565b1115610aa55760405162461bcd60e51b815260206004820152601a60248201527f457863656564732061697264726f7020616c6c6f636174696f6e000000000000604482015260640161092d565b8060145f828254610ab69190611a61565b909155505f9250505b8351821015610b0f57610b04848381518110610add57610add611a4d565b6020026020010151848481518110610af757610af7611a4d565b602002602001015161122a565b600190910190610abf565b50505050565b610b1d6110e3565b6108e55f61125e565b610b2e6110e3565b60195460ff1615610b765760405162461bcd60e51b8152602060048201526012602482015271105b1c99585e481a5b9a5d1a585b1a5e995960721b604482015260640161092d565b6019805460ff19166001179055601580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004818101926020929091908290030181865afa158015610be5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c099190611a74565b6001600160a01b031663c9c653963060155f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8c9190611a74565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610cd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfa9190611a74565b601680546001600160a01b0319166001600160a01b039290921691909117905542601755600654601854610d65917f000000000000000000000000000000000000000000000000000000000000000091606491610d5691611a17565b610d609190611a2e565b61122a565b610d9b7f00000000000000000000000000000000000000000000000000000000000000006064600754601854610d569190611a17565b610dd17f00000000000000000000000000000000000000000000000000000000000000006064600854601854610d569190611a17565b610e01306064600b54600c54600d54610dea9190611a61565b610df49190611a61565b601854610d569190611a17565b601554610e1a9033906001600160a01b03165f19610fff565b601554610e339030906001600160a01b03165f19610fff565b34671bc16d674ec8000014610e795760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908199d5b9960a21b604482015260640161092d565b6108e560646018546008610e8d9190611a17565b610e979190611a2e565b671bc16d674ec80000611170565b610ead6110e3565b600f91909155601055565b606060048054610818906119b0565b5f336108a6818585611086565b610edc6110e3565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610f0c6110e3565b601754610f1c9062278d00611a61565b4211610f595760405162461bcd60e51b815260206004820152600c60248201526b57616974203330206461797360a01b604482015260640161092d565b610f8f7f00000000000000000000000000000000000000000000000000000000000000006064600954601854610d569190611a17565b6108e57f00000000000000000000000000000000000000000000000000000000000000006064600a54601854610d569190611a17565b610fcd6110e3565b6001600160a01b038116610ff657604051631e4fbdf760e01b81525f600482015260240161092d565b6109a48161125e565b61100c83838360016112af565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b0f578181101561107857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161092d565b610b0f84848484035f6112af565b6001600160a01b0383166110af57604051634b637e8f60e11b81525f600482015260240161092d565b6001600160a01b0382166110d85760405163ec442f0560e01b81525f600482015260240161092d565b61100c838383611381565b6005546001600160a01b031633146108e55760405163118cdaa760e01b815233600482015260240161092d565b61113230600e60019054906101000a90046001600160a01b0316601154611086565b5f601155565b6001600160a01b03821661116157604051634b637e8f60e11b81525f600482015260240161092d565b61116c825f83611381565b5050565b6015546001600160a01b031663f305d7198230855f806111986005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156111fe573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906112239190611a8f565b5050505050565b6001600160a01b0382166112535760405163ec442f0560e01b81525f600482015260240161092d565b61116c5f8383611381565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166112d85760405163e602df0560e01b81525f600482015260240161092d565b6001600160a01b03831661130157604051634a1406b160e11b81525f600482015260240161092d565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b0f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161137391815260200190565b60405180910390a350505050565b611389611471565b6016545f906001600160a01b03908116908416036113c65760646113ab61149c565b6113b59084611a17565b6113bf9190611a2e565b905061144d565b6016546001600160a01b03908116908516036113e65760646113ab6114f9565b6001600160a01b03841661144d576018548261140160025490565b61140b9190611a61565b1061144d5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d415820535550504c5960701b604482015260640161092d565b611461848461145c8486611aba565b611555565b8015610b0f57610b0f848261167b565b600554600160a01b900460ff16156108e55760405163d93c066560e01b815260040160405180910390fd5b5f6017546102586114ad9190611a61565b4210156114ba5750605a90565b6017546114c9906104b0611a61565b4210156114d65750602d90565b6017546114e590610960611a61565b4210156114f25750601990565b5060105490565b5f60175461025861150a9190611a61565b4210156115175750605a90565b601754611526906104b0611a61565b4210156115335750600690565b60175461154290610960611a61565b42101561154e57505f90565b50600f5490565b6001600160a01b03831661157f578060025f8282546115749190611a61565b909155506115ef9050565b6001600160a01b0383165f90815260208190526040902054818110156115d15760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161092d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661160b57600280548290039055611629565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161166e91815260200190565b60405180910390a3505050565b8060115f82825461168c9190611a61565b925050819055508060125f8282546116a49190611a61565b909155506116b59050823083611555565b6013546011541061116c5761116c611110565b5f602080835283518060208501525f5b818110156116f4578581018301518582016040015282016116d8565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109a4575f80fd5b5f8060408385031215611739575f80fd5b823561174481611714565b946020939093013593505050565b5f805f60608486031215611764575f80fd5b833561176f81611714565b9250602084013561177f81611714565b929592945050506040919091013590565b5f602082840312156117a0575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117e4576117e46117a7565b604052919050565b5f67ffffffffffffffff821115611805576118056117a7565b5060051b60200190565b5f82601f83011261181e575f80fd5b8135602061183361182e836117ec565b6117bb565b8083825260208201915060208460051b870101935086841115611854575f80fd5b602086015b848110156118705780358352918301918301611859565b509695505050505050565b5f806040838503121561188c575f80fd5b823567ffffffffffffffff808211156118a3575f80fd5b818501915085601f8301126118b6575f80fd5b813560206118c661182e836117ec565b82815260059290921b840181019181810190898411156118e4575f80fd5b948201945b8386101561190b5785356118fc81611714565b825294820194908201906118e9565b96505086013592505080821115611920575f80fd5b5061192d8582860161180f565b9150509250929050565b5f60208284031215611947575f80fd5b813561195281611714565b9392505050565b5f806040838503121561196a575f80fd5b50508035926020909101359150565b5f806040838503121561198a575f80fd5b823561199581611714565b915060208301356119a581611714565b809150509250929050565b600181811c908216806119c457607f821691505b6020821081036119e257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f60ff821680611a0e57611a0e6119e8565b5f190192915050565b80820281158282048414176108ac576108ac6119e8565b5f82611a4857634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b808201808211156108ac576108ac6119e8565b5f60208284031215611a84575f80fd5b815161195281611714565b5f805f60608486031215611aa1575f80fd5b8351925060208401519150604084015190509250925092565b818103818111156108ac576108ac6119e856fea26469706673582212200ced2f864dd63fc461b272a38d021f601fe9ae72708a7cf1d4122a511e3a368b64736f6c63430008160033
Deployed Bytecode
0x608060405260043610610280575f3560e01c8063715018a611610155578063c31c9c07116100be578063dfa7649011610078578063dfa7649014610745578063eed822a81461075a578063f237b7e61461078d578063f28520ac146107c0578063f2fde38b146107d5578063fad95c33146107f4575f80fd5b8063c31c9c0714610685578063cb711595146106a4578063cc1776d3146106c3578063ce678580146106d8578063d81688e3146106ed578063dd62ed3e14610701575f80fd5b80639036ed4d1161010f5780639036ed4d146105f457806395d89b4114610613578063a9059cbb14610627578063b023c24e14610646578063b794b8591461065b578063beb8724d14610670575f80fd5b8063715018a61461054057806375df1d7c146105545780637868323f146105875780638129fc1c146105ba5780638367e322146105c25780638da5cb5b146105d7575f80fd5b806332cb6b0c116101f75780635420b4b1116101b15780635420b4b11461047257806358eb4c66146104875780635c975abb1461049c578063657df2c5146104ba57806367243482146104ed57806370a082311461050c575f80fd5b806332cb6b0c146103f657806337c81fa41461040b578063448883d71461042057806344df8e70146104365780634f7041a51461044a57806351c6590a1461045f575f80fd5b8063158ef93e11610248578063158ef93e1461033c57806318160ddd1461035557806323b872dd1461036957806326991cc8146103885780632dc0562d146103bf578063313ce567146103e3575f80fd5b80630317f1c71461028457806306fdde03146102ac578063095ea7b3146102cd57806312f1c1b4146102fc57806314e8d7d214610311575b5f80fd5b34801561028f575f80fd5b5061029960095481565b6040519081526020015b60405180910390f35b3480156102b7575f80fd5b506102c0610809565b6040516102a391906116c8565b3480156102d8575f80fd5b506102ec6102e7366004611728565b610899565b60405190151581526020016102a3565b348015610307575f80fd5b5061029960115481565b34801561031c575f80fd5b50600e5461032a9060ff1681565b60405160ff90911681526020016102a3565b348015610347575f80fd5b506019546102ec9060ff1681565b348015610360575f80fd5b50600254610299565b348015610374575f80fd5b506102ec610383366004611752565b6108b2565b348015610393575f80fd5b506016546103a7906001600160a01b031681565b6040516001600160a01b0390911681526020016102a3565b3480156103ca575f80fd5b50600e546103a79061010090046001600160a01b031681565b3480156103ee575f80fd5b50601261032a565b348015610401575f80fd5b5061029960185481565b348015610416575f80fd5b50610299600b5481565b34801561042b575f80fd5b506104346108d5565b005b348015610441575f80fd5b506104346108e7565b348015610455575f80fd5b50610299600f5481565b61043461046d366004611790565b610992565b34801561047d575f80fd5b5061029960125481565b348015610492575f80fd5b50610299600a5481565b3480156104a7575f80fd5b50600554600160a01b900460ff166102ec565b3480156104c5575f80fd5b506103a77f00000000000000000000000056fe47b53e8975daf48bbb4d16ce110e85d2f74281565b3480156104f8575f80fd5b5061043461050736600461187b565b6109a7565b348015610517575f80fd5b50610299610526366004611937565b6001600160a01b03165f9081526020819052604090205490565b34801561054b575f80fd5b50610434610b15565b34801561055f575f80fd5b506103a77f000000000000000000000000ea24922f66871994ae7c5a50302744f7c0eff6a781565b348015610592575f80fd5b506103a77f0000000000000000000000004f6c335c334a569966838e748ec4037e27be868681565b610434610b26565b3480156105cd575f80fd5b5061029960085481565b3480156105e2575f80fd5b506005546001600160a01b03166103a7565b3480156105ff575f80fd5b5061043461060e366004611959565b610ea5565b34801561061e575f80fd5b506102c0610eb8565b348015610632575f80fd5b506102ec610641366004611728565b610ec7565b348015610651575f80fd5b50610299600c5481565b348015610666575f80fd5b5061029960065481565b34801561067b575f80fd5b5061029960135481565b348015610690575f80fd5b506015546103a7906001600160a01b031681565b3480156106af575f80fd5b506104346106be366004611937565b610ed4565b3480156106ce575f80fd5b5061029960105481565b3480156106e3575f80fd5b5061029960145481565b3480156106f8575f80fd5b50610434610f04565b34801561070c575f80fd5b5061029961071b366004611979565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b348015610750575f80fd5b5061029960175481565b348015610765575f80fd5b506103a77f000000000000000000000000a0388403f81f4d0ce7b0869b10e91a68d62f596981565b348015610798575f80fd5b506103a77f00000000000000000000000031e966784d32c301cf7545df7288efa386ad0c3381565b3480156107cb575f80fd5b50610299600d5481565b3480156107e0575f80fd5b506104346107ef366004611937565b610fc5565b3480156107ff575f80fd5b5061029960075481565b606060038054610818906119b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610844906119b0565b801561088f5780601f106108665761010080835404028352916020019161088f565b820191905f5260205f20905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b5f336108a6818585610fff565b60019150505b92915050565b5f336108bf858285611011565b6108ca858585611086565b506001949350505050565b6108dd6110e3565b6108e5611110565b565b6108ef6110e3565b600e5460ff166109365760405162461bcd60e51b815260206004820152600d60248201526c105b1c99585e48189d5c9b9959609a1b60448201526064015b60405180910390fd5b600e805460ff16905f610948836119fc565b91906101000a81548160ff021916908360ff160217905550506108e53060026064600d546018546109799190611a17565b6109839190611a2e565b61098d9190611a2e565b611138565b61099a6110e3565b6109a48134611170565b50565b6109af6110e3565b80518251146109ef5760405162461bcd60e51b815260206004820152600c60248201526b496e76616c6964206461746160a01b604482015260640161092d565b5f805b8351821015610a2d57828281518110610a0d57610a0d611a4d565b602002602001015181610a209190611a61565b60019092019190506109f2565b6064600c54601854610a3f9190611a17565b610a499190611a2e565b81601454610a579190611a61565b1115610aa55760405162461bcd60e51b815260206004820152601a60248201527f457863656564732061697264726f7020616c6c6f636174696f6e000000000000604482015260640161092d565b8060145f828254610ab69190611a61565b909155505f9250505b8351821015610b0f57610b04848381518110610add57610add611a4d565b6020026020010151848481518110610af757610af7611a4d565b602002602001015161122a565b600190910190610abf565b50505050565b610b1d6110e3565b6108e55f61125e565b610b2e6110e3565b60195460ff1615610b765760405162461bcd60e51b8152602060048201526012602482015271105b1c99585e481a5b9a5d1a585b1a5e995960721b604482015260640161092d565b6019805460ff19166001179055601580546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b8152905163c45a0155916004818101926020929091908290030181865afa158015610be5573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c099190611a74565b6001600160a01b031663c9c653963060155f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c68573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c8c9190611a74565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610cd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cfa9190611a74565b601680546001600160a01b0319166001600160a01b039290921691909117905542601755600654601854610d65917f0000000000000000000000004f6c335c334a569966838e748ec4037e27be868691606491610d5691611a17565b610d609190611a2e565b61122a565b610d9b7f00000000000000000000000031e966784d32c301cf7545df7288efa386ad0c336064600754601854610d569190611a17565b610dd17f00000000000000000000000056fe47b53e8975daf48bbb4d16ce110e85d2f7426064600854601854610d569190611a17565b610e01306064600b54600c54600d54610dea9190611a61565b610df49190611a61565b601854610d569190611a17565b601554610e1a9033906001600160a01b03165f19610fff565b601554610e339030906001600160a01b03165f19610fff565b34671bc16d674ec8000014610e795760405162461bcd60e51b815260206004820152600c60248201526b125b9d985b1a5908199d5b9960a21b604482015260640161092d565b6108e560646018546008610e8d9190611a17565b610e979190611a2e565b671bc16d674ec80000611170565b610ead6110e3565b600f91909155601055565b606060048054610818906119b0565b5f336108a6818585611086565b610edc6110e3565b600e80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b610f0c6110e3565b601754610f1c9062278d00611a61565b4211610f595760405162461bcd60e51b815260206004820152600c60248201526b57616974203330206461797360a01b604482015260640161092d565b610f8f7f000000000000000000000000ea24922f66871994ae7c5a50302744f7c0eff6a76064600954601854610d569190611a17565b6108e57f000000000000000000000000a0388403f81f4d0ce7b0869b10e91a68d62f59696064600a54601854610d569190611a17565b610fcd6110e3565b6001600160a01b038116610ff657604051631e4fbdf760e01b81525f600482015260240161092d565b6109a48161125e565b61100c83838360016112af565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f198114610b0f578181101561107857604051637dc7a0d960e11b81526001600160a01b0384166004820152602481018290526044810183905260640161092d565b610b0f84848484035f6112af565b6001600160a01b0383166110af57604051634b637e8f60e11b81525f600482015260240161092d565b6001600160a01b0382166110d85760405163ec442f0560e01b81525f600482015260240161092d565b61100c838383611381565b6005546001600160a01b031633146108e55760405163118cdaa760e01b815233600482015260240161092d565b61113230600e60019054906101000a90046001600160a01b0316601154611086565b5f601155565b6001600160a01b03821661116157604051634b637e8f60e11b81525f600482015260240161092d565b61116c825f83611381565b5050565b6015546001600160a01b031663f305d7198230855f806111986005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af11580156111fe573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906112239190611a8f565b5050505050565b6001600160a01b0382166112535760405163ec442f0560e01b81525f600482015260240161092d565b61116c5f8383611381565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0384166112d85760405163e602df0560e01b81525f600482015260240161092d565b6001600160a01b03831661130157604051634a1406b160e11b81525f600482015260240161092d565b6001600160a01b038085165f9081526001602090815260408083209387168352929052208290558015610b0f57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161137391815260200190565b60405180910390a350505050565b611389611471565b6016545f906001600160a01b03908116908416036113c65760646113ab61149c565b6113b59084611a17565b6113bf9190611a2e565b905061144d565b6016546001600160a01b03908116908516036113e65760646113ab6114f9565b6001600160a01b03841661144d576018548261140160025490565b61140b9190611a61565b1061144d5760405162461bcd60e51b815260206004820152601260248201527145786365656473204d415820535550504c5960701b604482015260640161092d565b611461848461145c8486611aba565b611555565b8015610b0f57610b0f848261167b565b600554600160a01b900460ff16156108e55760405163d93c066560e01b815260040160405180910390fd5b5f6017546102586114ad9190611a61565b4210156114ba5750605a90565b6017546114c9906104b0611a61565b4210156114d65750602d90565b6017546114e590610960611a61565b4210156114f25750601990565b5060105490565b5f60175461025861150a9190611a61565b4210156115175750605a90565b601754611526906104b0611a61565b4210156115335750600690565b60175461154290610960611a61565b42101561154e57505f90565b50600f5490565b6001600160a01b03831661157f578060025f8282546115749190611a61565b909155506115ef9050565b6001600160a01b0383165f90815260208190526040902054818110156115d15760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640161092d565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821661160b57600280548290039055611629565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161166e91815260200190565b60405180910390a3505050565b8060115f82825461168c9190611a61565b925050819055508060125f8282546116a49190611a61565b909155506116b59050823083611555565b6013546011541061116c5761116c611110565b5f602080835283518060208501525f5b818110156116f4578581018301518582016040015282016116d8565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109a4575f80fd5b5f8060408385031215611739575f80fd5b823561174481611714565b946020939093013593505050565b5f805f60608486031215611764575f80fd5b833561176f81611714565b9250602084013561177f81611714565b929592945050506040919091013590565b5f602082840312156117a0575f80fd5b5035919050565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f1916810167ffffffffffffffff811182821017156117e4576117e46117a7565b604052919050565b5f67ffffffffffffffff821115611805576118056117a7565b5060051b60200190565b5f82601f83011261181e575f80fd5b8135602061183361182e836117ec565b6117bb565b8083825260208201915060208460051b870101935086841115611854575f80fd5b602086015b848110156118705780358352918301918301611859565b509695505050505050565b5f806040838503121561188c575f80fd5b823567ffffffffffffffff808211156118a3575f80fd5b818501915085601f8301126118b6575f80fd5b813560206118c661182e836117ec565b82815260059290921b840181019181810190898411156118e4575f80fd5b948201945b8386101561190b5785356118fc81611714565b825294820194908201906118e9565b96505086013592505080821115611920575f80fd5b5061192d8582860161180f565b9150509250929050565b5f60208284031215611947575f80fd5b813561195281611714565b9392505050565b5f806040838503121561196a575f80fd5b50508035926020909101359150565b5f806040838503121561198a575f80fd5b823561199581611714565b915060208301356119a581611714565b809150509250929050565b600181811c908216806119c457607f821691505b6020821081036119e257634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b5f60ff821680611a0e57611a0e6119e8565b5f190192915050565b80820281158282048414176108ac576108ac6119e8565b5f82611a4857634e487b7160e01b5f52601260045260245ffd5b500490565b634e487b7160e01b5f52603260045260245ffd5b808201808211156108ac576108ac6119e8565b5f60208284031215611a84575f80fd5b815161195281611714565b5f805f60608486031215611aa1575f80fd5b8351925060208401519150604084015190509250925092565b818103818111156108ac576108ac6119e856fea26469706673582212200ced2f864dd63fc461b272a38d021f601fe9ae72708a7cf1d4122a511e3a368b64736f6c63430008160033
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.