ERC-20
Overview
Max Total Supply
100,000,000,000 AF
Holders
49
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
474,017,760.735661908654958417 AFValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Token
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
No with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// Website : https://albart.football // Telegram : https://t.me/Albart_Football // X : https://x.com/Albart_Football // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } } // File @openzeppelin/contracts/access/Ownable.sol // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; /** * @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); } } // File @openzeppelin/contracts/interfaces/draft-IERC6093.sol // Original license: 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); } // File @openzeppelin/contracts/token/ERC20/IERC20.sol // Original license: 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); } // File @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.20; /** * @dev Interface for the optional metadata functions from the ERC20 standard. */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/ERC20.sol // Original license: SPDX_License_Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. */ abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors { mapping(address account => uint256) private _balances; mapping(address account => mapping(address spender => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @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); } } } } // File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function swapTokensForExactETH( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactTokensForETH( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapETHForExactTokens( uint amountOut, address[] calldata path, address to, uint deadline ) external payable returns (uint[] memory amounts); function quote( uint amountA, uint reserveA, uint reserveB ) external pure returns (uint amountB); function getAmountOut( uint amountIn, uint reserveIn, uint reserveOut ) external pure returns (uint amountOut); function getAmountIn( uint amountOut, uint reserveIn, uint reserveOut ) external pure returns (uint amountIn); function getAmountsOut( uint amountIn, address[] calldata path ) external view returns (uint[] memory amounts); function getAmountsIn( uint amountOut, address[] calldata path ) external view returns (uint[] memory amounts); } // File @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } pragma solidity ^0.8.23; contract Token is Ownable, ERC20 { event OpenTrading(); event DisableMaxWallet(); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 private constant _tax = 5; bool private _isOpenTrading; uint256 private constant SUPPLY = 100000000000 ether; address public immutable pair; address public feesAddress; bool private limit = true; bool private _swaping = false; uint256 private _maxWallet = SUPPLY / 200; mapping(address => bool) private _isExcludedFromFees; constructor() ERC20("AlbartFootball", "AF") Ownable(_msgSender()) { feesAddress = _msgSender(); pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _isExcludedFromFees[_msgSender()] = true; _isExcludedFromFees[address(this)] = true; _isExcludedFromFees[address(router)] = true; _mint(_msgSender(), SUPPLY); _approve(_msgSender(), address(router), type(uint256).max); } modifier toggle() { _swaping = true; _; _swaping = false; } function openTrading() external onlyOwner { require(!_isOpenTrading, "enabled!"); _isOpenTrading = true; emit OpenTrading(); } function removeLimit() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = SUPPLY; emit DisableMaxWallet(); } function _update( address from, address to, uint256 amount ) internal override { if ( _isExcludedFromFees[from] || _isExcludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._update(from, to, amount); return; } require(_isOpenTrading, "Trading is not open"); if (limit && to != pair) { require(balanceOf(to) + amount < _maxWallet, "Max Wallet"); } if (to == pair && balanceOf(address(this)) >= amount) { swapTokenForETH(amount); } uint256 _totalFees = (amount * _tax) / 100; if (_totalFees > 0) { super._update(from, address(this), _totalFees); amount = amount - _totalFees; } super._update(from, to, amount); } function setFeeAddress(address newAddress) external onlyOwner { feesAddress = newAddress; } function swapTokenForETH(uint256 amount) private toggle { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), amount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, feesAddress, block.timestamp ); } receive() external payable {} }
{ "evmVersion": "paris", "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[],"name":"DisableMaxWallet","type":"event"},{"anonymous":false,"inputs":[],"name":"OpenTrading","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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setFeeAddress","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
60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506001600660156101000a81548160ff0219169083151502179055506000600660166101000a81548160ff02191690831515021790555060c86c01431e0fae6d7217caa00000006200009d919062001104565b600755348015620000ad57600080fd5b506040518060400160405280600e81526020017f416c62617274466f6f7462616c6c0000000000000000000000000000000000008152506040518060400160405280600281526020017f41460000000000000000000000000000000000000000000000000000000000008152506200012a6200055460201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200019f5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000196919062001181565b60405180910390fd5b620001b0816200055c60201b60201c565b508160049081620001c291906200140e565b508060059081620001d491906200140e565b505050620001e76200055460201b60201c565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029b91906200152b565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000305573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032b91906200152b565b6040518363ffffffff1660e01b81526004016200034a9291906200155d565b6020604051808303816000875af11580156200036a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039091906200152b565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160086000620003d96200055460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016008600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200050a620004f06200055460201b60201c565b6c01431e0fae6d7217caa00000006200062060201b60201c565b6200054e6200051e6200055460201b60201c565b6080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620006ad60201b60201c565b6200194f565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006955760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200068c919062001181565b60405180910390fd5b620006a960008383620006c760201b60201c565b5050565b620006c28383836001620009ec60201b60201c565b505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620007695750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80620007de575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015620007dd575060a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620007f65750600660169054906101000a900460ff165b1562000815576200080f83838362000bcc60201b60201c565b620009e7565b600660009054906101000a900460ff1662000867576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085e90620015eb565b60405180910390fd5b600660159054906101000a900460ff168015620008b2575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156200091d5760075481620008cd8462000dff60201b60201c565b620008d991906200160d565b106200091c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009139062001698565b60405180910390fd5b5b60a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156200096b575080620009683062000dff60201b60201c565b10155b156200098357620009828162000e4860201b60201c565b5b60006064600583620009969190620016ba565b620009a2919062001104565b90506000811115620009d257620009c184308362000bcc60201b60201c565b8082620009cf919062001705565b91505b620009e584848462000bcc60201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000a615760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000a58919062001181565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000ad65760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000acd919062001181565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000bc6578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000bbd919062001751565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000c2257806003600082825462000c1591906200160d565b9250508190555062000cfa565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000cb2578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000ca9939291906200176e565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000d45578060036000828254039250508190555062000d93565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000df2919062001751565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001600660166101000a81548160ff0219169083151502179055506000600267ffffffffffffffff81111562000e835762000e82620011a9565b5b60405190808252806020026020018201604052801562000eb25781602001602082028036833780820191505090505b509050308160008151811062000ecd5762000ecc620017ab565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000f55573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000f7b91906200152b565b8160018151811062000f925762000f91620017ab565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505062000fe13060805184620006ad60201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b815260040162001049959493929190620018eb565b600060405180830381600087803b1580156200106457600080fd5b505af115801562001079573d6000803e3d6000fd5b50505050506000600660166101000a81548160ff02191690831515021790555050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001111826200109c565b91506200111e836200109c565b925082620011315762001130620010a6565b5b828204905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062001169826200113c565b9050919050565b6200117b816200115c565b82525050565b600060208201905062001198600083018462001170565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200122057607f821691505b602082108103620012365762001235620011d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620012a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001261565b620012ac868362001261565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620012ef620012e9620012e3846200109c565b620012c4565b6200109c565b9050919050565b6000819050919050565b6200130b83620012ce565b620013236200131a82620012f6565b8484546200126e565b825550505050565b600090565b6200133a6200132b565b6200134781848462001300565b505050565b5b818110156200136f576200136360008262001330565b6001810190506200134d565b5050565b601f821115620013be5762001388816200123c565b620013938462001251565b81016020851015620013a3578190505b620013bb620013b28562001251565b8301826200134c565b50505b505050565b600082821c905092915050565b6000620013e360001984600802620013c3565b1980831691505092915050565b6000620013fe8383620013d0565b9150826002028217905092915050565b62001419826200119e565b67ffffffffffffffff811115620014355762001434620011a9565b5b62001441825462001207565b6200144e82828562001373565b600060209050601f83116001811462001486576000841562001471578287015190505b6200147d8582620013f0565b865550620014ed565b601f19841662001496866200123c565b60005b82811015620014c05784890151825560018201915060208501945060208101905062001499565b86831015620014e05784890151620014dc601f891682620013d0565b8355505b6001600288020188555050505b505050505050565b600080fd5b62001505816200115c565b81146200151157600080fd5b50565b6000815190506200152581620014fa565b92915050565b600060208284031215620015445762001543620014f5565b5b6000620015548482850162001514565b91505092915050565b600060408201905062001574600083018562001170565b62001583602083018462001170565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000620015d36013836200158a565b9150620015e0826200159b565b602082019050919050565b600060208201905081810360008301526200160681620015c4565b9050919050565b60006200161a826200109c565b915062001627836200109c565b9250828201905080821115620016425762001641620010d5565b5b92915050565b7f4d61782057616c6c657400000000000000000000000000000000000000000000600082015250565b600062001680600a836200158a565b91506200168d8262001648565b602082019050919050565b60006020820190508181036000830152620016b38162001671565b9050919050565b6000620016c7826200109c565b9150620016d4836200109c565b9250828202620016e4816200109c565b91508282048414831517620016fe57620016fd620010d5565b5b5092915050565b600062001712826200109c565b91506200171f836200109c565b92508282039050818111156200173a5762001739620010d5565b5b92915050565b6200174b816200109c565b82525050565b600060208201905062001768600083018462001740565b92915050565b600060608201905062001785600083018662001170565b62001794602083018562001740565b620017a3604083018462001740565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600062001805620017ff620017f984620017da565b620012c4565b6200109c565b9050919050565b6200181781620017e4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001854816200115c565b82525050565b600062001868838362001849565b60208301905092915050565b6000602082019050919050565b60006200188e826200181d565b6200189a818562001828565b9350620018a78362001839565b8060005b83811015620018de578151620018c288826200185a565b9750620018cf8362001874565b925050600181019050620018ab565b5085935050505092915050565b600060a08201905062001902600083018862001740565b6200191160208301876200180c565b818103604083015262001925818662001881565b905062001936606083018562001170565b62001945608083018462001740565b9695505050505050565b60805160a051611ec16200199f6000396000818161073a01528181610e9a01528181610ef101528181610fd5015261108301526000818161142701528181611508015261152f0152611ec16000f3fe6080604052600436106101025760003560e01c80638705fcd411610095578063a8aa1b3111610064578063a8aa1b311461031e578063a9059cbb14610349578063c9567bf914610386578063dd62ed3e1461039d578063f2fde38b146103da57610109565b80638705fcd4146102745780638da5cb5b1461029d57806391dd75e7146102c857806395d89b41146102f357610109565b8063313ce567116100d1578063313ce567146101de578063622565891461020957806370a0823114610220578063715018a61461025d57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610403565b6040516101309190611692565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b919061174d565b610495565b60405161016d91906117a8565b60405180910390f35b34801561018257600080fd5b5061018b6104b8565b60405161019891906117d2565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c391906117ed565b6104c2565b6040516101d591906117a8565b60405180910390f35b3480156101ea57600080fd5b506101f36104f1565b604051610200919061185c565b60405180910390f35b34801561021557600080fd5b5061021e6104fa565b005b34801561022c57600080fd5b5061024760048036038101906102429190611877565b6105ae565b60405161025491906117d2565b60405180910390f35b34801561026957600080fd5b506102726105f7565b005b34801561028057600080fd5b5061029b60048036038101906102969190611877565b61060b565b005b3480156102a957600080fd5b506102b2610657565b6040516102bf91906118b3565b60405180910390f35b3480156102d457600080fd5b506102dd610680565b6040516102ea91906118b3565b60405180910390f35b3480156102ff57600080fd5b506103086106a6565b6040516103159190611692565b60405180910390f35b34801561032a57600080fd5b50610333610738565b60405161034091906118b3565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061174d565b61075c565b60405161037d91906117a8565b60405180910390f35b34801561039257600080fd5b5061039b61077f565b005b3480156103a957600080fd5b506103c460048036038101906103bf91906118ce565b610820565b6040516103d191906117d2565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190611877565b6108a7565b005b6060600480546104129061193d565b80601f016020809104026020016040519081016040528092919081815260200182805461043e9061193d565b801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b5050505050905090565b6000806104a061092d565b90506104ad818585610935565b600191505092915050565b6000600354905090565b6000806104cd61092d565b90506104da858285610947565b6104e58585856109db565b60019150509392505050565b60006012905090565b610502610acf565b600660159054906101000a900460ff16610551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610548906119ba565b60405180910390fd5b6000600660156101000a81548160ff0219169083151502179055506c01431e0fae6d7217caa00000006007819055507f87b9d824278d29a8487bd08543f7f1a702d1cb4dc5f9b761434b5e45d525160360405160405180910390a1565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ff610acf565b6106096000610b56565b565b610613610acf565b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546106b59061193d565b80601f01602080910402602001604051908101604052809291908181526020018280546106e19061193d565b801561072e5780601f106107035761010080835404028352916020019161072e565b820191906000526020600020905b81548152906001019060200180831161071157829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008061076761092d565b90506107748185856109db565b600191505092915050565b610787610acf565b600660009054906101000a900460ff16156107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90611a26565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108af610acf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109215760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161091891906118b3565b60405180910390fd5b61092a81610b56565b50565b600033905090565b6109428383836001610c1a565b505050565b60006109538484610820565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109d557818110156109c5578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016109bc93929190611a46565b60405180910390fd5b6109d484848484036000610c1a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4d5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a4491906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abf5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ab691906118b3565b60405180910390fd5b610aca838383610df1565b505050565b610ad761092d565b73ffffffffffffffffffffffffffffffffffffffff16610af5610657565b73ffffffffffffffffffffffffffffffffffffffff1614610b5457610b1861092d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b4b91906118b3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c8c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c8391906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfe5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610cf591906118b3565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610deb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610de291906117d2565b60405180910390a35b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e925750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610f4157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610f4057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80610f585750600660169054906101000a900460ff165b15610f6d57610f68838383611145565b611140565b600660009054906101000a900460ff16610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390611ac9565b60405180910390fd5b600660159054906101000a900460ff16801561102457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110815760075481611036846105ae565b6110409190611b18565b10611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790611b98565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156110e45750806110e1306105ae565b10155b156110f3576110f28161136d565b5b600060646005836111049190611bb8565b61110e9190611c29565b9050600081111561113357611124843083611145565b80826111309190611c5a565b91505b61113e848484611145565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119757806003600082825461118b9190611b18565b9250508190555061126c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611224578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161121b93929190611a46565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b55780600360008282540392505081905550611303565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161136091906117d2565b60405180910390a3505050565b6001600660166101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156113a5576113a4611c8e565b5b6040519080825280602002602001820160405280156113d35781602001602082028036833780820191505090505b50905030816000815181106113eb576113ea611cbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611490573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b49190611d01565b816001815181106114c8576114c7611cbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061152d307f000000000000000000000000000000000000000000000000000000000000000084610935565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016115b1959493929190611e31565b600060405180830381600087803b1580156115cb57600080fd5b505af11580156115df573d6000803e3d6000fd5b50505050506000600660166101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561163c578082015181840152602081019050611621565b60008484015250505050565b6000601f19601f8301169050919050565b600061166482611602565b61166e818561160d565b935061167e81856020860161161e565b61168781611648565b840191505092915050565b600060208201905081810360008301526116ac8184611659565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116e4826116b9565b9050919050565b6116f4816116d9565b81146116ff57600080fd5b50565b600081359050611711816116eb565b92915050565b6000819050919050565b61172a81611717565b811461173557600080fd5b50565b60008135905061174781611721565b92915050565b60008060408385031215611764576117636116b4565b5b600061177285828601611702565b925050602061178385828601611738565b9150509250929050565b60008115159050919050565b6117a28161178d565b82525050565b60006020820190506117bd6000830184611799565b92915050565b6117cc81611717565b82525050565b60006020820190506117e760008301846117c3565b92915050565b600080600060608486031215611806576118056116b4565b5b600061181486828701611702565b935050602061182586828701611702565b925050604061183686828701611738565b9150509250925092565b600060ff82169050919050565b61185681611840565b82525050565b6000602082019050611871600083018461184d565b92915050565b60006020828403121561188d5761188c6116b4565b5b600061189b84828501611702565b91505092915050565b6118ad816116d9565b82525050565b60006020820190506118c860008301846118a4565b92915050565b600080604083850312156118e5576118e46116b4565b5b60006118f385828601611702565b925050602061190485828601611702565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061195557607f821691505b6020821081036119685761196761190e565b5b50919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b60006119a460168361160d565b91506119af8261196e565b602082019050919050565b600060208201905081810360008301526119d381611997565b9050919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b6000611a1060088361160d565b9150611a1b826119da565b602082019050919050565b60006020820190508181036000830152611a3f81611a03565b9050919050565b6000606082019050611a5b60008301866118a4565b611a6860208301856117c3565b611a7560408301846117c3565b949350505050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000611ab360138361160d565b9150611abe82611a7d565b602082019050919050565b60006020820190508181036000830152611ae281611aa6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b2382611717565b9150611b2e83611717565b9250828201905080821115611b4657611b45611ae9565b5b92915050565b7f4d61782057616c6c657400000000000000000000000000000000000000000000600082015250565b6000611b82600a8361160d565b9150611b8d82611b4c565b602082019050919050565b60006020820190508181036000830152611bb181611b75565b9050919050565b6000611bc382611717565b9150611bce83611717565b9250828202611bdc81611717565b91508282048414831517611bf357611bf2611ae9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c3482611717565b9150611c3f83611717565b925082611c4f57611c4e611bfa565b5b828204905092915050565b6000611c6582611717565b9150611c7083611717565b9250828203905081811115611c8857611c87611ae9565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611cfb816116eb565b92915050565b600060208284031215611d1757611d166116b4565b5b6000611d2584828501611cec565b91505092915050565b6000819050919050565b6000819050919050565b6000611d5d611d58611d5384611d2e565b611d38565b611717565b9050919050565b611d6d81611d42565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611da8816116d9565b82525050565b6000611dba8383611d9f565b60208301905092915050565b6000602082019050919050565b6000611dde82611d73565b611de88185611d7e565b9350611df383611d8f565b8060005b83811015611e24578151611e0b8882611dae565b9750611e1683611dc6565b925050600181019050611df7565b5085935050505092915050565b600060a082019050611e4660008301886117c3565b611e536020830187611d64565b8181036040830152611e658186611dd3565b9050611e7460608301856118a4565b611e8160808301846117c3565b969550505050505056fea2646970667358221220999d80a08f153722468d3bc94fdf6eb7d77d5b778cd5ec23a147eba450c0bbf364736f6c63430008170033
Deployed Bytecode
0x6080604052600436106101025760003560e01c80638705fcd411610095578063a8aa1b3111610064578063a8aa1b311461031e578063a9059cbb14610349578063c9567bf914610386578063dd62ed3e1461039d578063f2fde38b146103da57610109565b80638705fcd4146102745780638da5cb5b1461029d57806391dd75e7146102c857806395d89b41146102f357610109565b8063313ce567116100d1578063313ce567146101de578063622565891461020957806370a0823114610220578063715018a61461025d57610109565b806306fdde031461010e578063095ea7b31461013957806318160ddd1461017657806323b872dd146101a157610109565b3661010957005b600080fd5b34801561011a57600080fd5b50610123610403565b6040516101309190611692565b60405180910390f35b34801561014557600080fd5b50610160600480360381019061015b919061174d565b610495565b60405161016d91906117a8565b60405180910390f35b34801561018257600080fd5b5061018b6104b8565b60405161019891906117d2565b60405180910390f35b3480156101ad57600080fd5b506101c860048036038101906101c391906117ed565b6104c2565b6040516101d591906117a8565b60405180910390f35b3480156101ea57600080fd5b506101f36104f1565b604051610200919061185c565b60405180910390f35b34801561021557600080fd5b5061021e6104fa565b005b34801561022c57600080fd5b5061024760048036038101906102429190611877565b6105ae565b60405161025491906117d2565b60405180910390f35b34801561026957600080fd5b506102726105f7565b005b34801561028057600080fd5b5061029b60048036038101906102969190611877565b61060b565b005b3480156102a957600080fd5b506102b2610657565b6040516102bf91906118b3565b60405180910390f35b3480156102d457600080fd5b506102dd610680565b6040516102ea91906118b3565b60405180910390f35b3480156102ff57600080fd5b506103086106a6565b6040516103159190611692565b60405180910390f35b34801561032a57600080fd5b50610333610738565b60405161034091906118b3565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b919061174d565b61075c565b60405161037d91906117a8565b60405180910390f35b34801561039257600080fd5b5061039b61077f565b005b3480156103a957600080fd5b506103c460048036038101906103bf91906118ce565b610820565b6040516103d191906117d2565b60405180910390f35b3480156103e657600080fd5b5061040160048036038101906103fc9190611877565b6108a7565b005b6060600480546104129061193d565b80601f016020809104026020016040519081016040528092919081815260200182805461043e9061193d565b801561048b5780601f106104605761010080835404028352916020019161048b565b820191906000526020600020905b81548152906001019060200180831161046e57829003601f168201915b5050505050905090565b6000806104a061092d565b90506104ad818585610935565b600191505092915050565b6000600354905090565b6000806104cd61092d565b90506104da858285610947565b6104e58585856109db565b60019150509392505050565b60006012905090565b610502610acf565b600660159054906101000a900460ff16610551576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610548906119ba565b60405180910390fd5b6000600660156101000a81548160ff0219169083151502179055506c01431e0fae6d7217caa00000006007819055507f87b9d824278d29a8487bd08543f7f1a702d1cb4dc5f9b761434b5e45d525160360405160405180910390a1565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ff610acf565b6106096000610b56565b565b610613610acf565b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600580546106b59061193d565b80601f01602080910402602001604051908101604052809291908181526020018280546106e19061193d565b801561072e5780601f106107035761010080835404028352916020019161072e565b820191906000526020600020905b81548152906001019060200180831161071157829003601f168201915b5050505050905090565b7f00000000000000000000000012aebed9b1b776882e5a910faa5ba1b78b03f6fc81565b60008061076761092d565b90506107748185856109db565b600191505092915050565b610787610acf565b600660009054906101000a900460ff16156107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90611a26565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f51cd7cc33235a1c89f708fecec535bf7cca0f94ed05216751befb052ca83e67960405160405180910390a1565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108af610acf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109215760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161091891906118b3565b60405180910390fd5b61092a81610b56565b50565b600033905090565b6109428383836001610c1a565b505050565b60006109538484610820565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109d557818110156109c5578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016109bc93929190611a46565b60405180910390fd5b6109d484848484036000610c1a565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a4d5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610a4491906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610abf5760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610ab691906118b3565b60405180910390fd5b610aca838383610df1565b505050565b610ad761092d565b73ffffffffffffffffffffffffffffffffffffffff16610af5610657565b73ffffffffffffffffffffffffffffffffffffffff1614610b5457610b1861092d565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610b4b91906118b3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610c8c5760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610c8391906118b3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cfe5760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610cf591906118b3565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610deb578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610de291906117d2565b60405180910390a35b50505050565b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680610e925750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80610f4157507f00000000000000000000000012aebed9b1b776882e5a910faa5ba1b78b03f6fc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015610f4057507f00000000000000000000000012aebed9b1b776882e5a910faa5ba1b78b03f6fc73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80610f585750600660169054906101000a900460ff165b15610f6d57610f68838383611145565b611140565b600660009054906101000a900460ff16610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb390611ac9565b60405180910390fd5b600660159054906101000a900460ff16801561102457507f00000000000000000000000012aebed9b1b776882e5a910faa5ba1b78b03f6fc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156110815760075481611036846105ae565b6110409190611b18565b10611080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107790611b98565b60405180910390fd5b5b7f00000000000000000000000012aebed9b1b776882e5a910faa5ba1b78b03f6fc73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480156110e45750806110e1306105ae565b10155b156110f3576110f28161136d565b5b600060646005836111049190611bb8565b61110e9190611c29565b9050600081111561113357611124843083611145565b80826111309190611c5a565b91505b61113e848484611145565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361119757806003600082825461118b9190611b18565b9250508190555061126c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611224578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040161121b93929190611a46565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112b55780600360008282540392505081905550611303565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161136091906117d2565b60405180910390a3505050565b6001600660166101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156113a5576113a4611c8e565b5b6040519080825280602002602001820160405280156113d35781602001602082028036833780820191505090505b50905030816000815181106113eb576113ea611cbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611490573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114b49190611d01565b816001815181106114c8576114c7611cbd565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061152d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610935565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016115b1959493929190611e31565b600060405180830381600087803b1580156115cb57600080fd5b505af11580156115df573d6000803e3d6000fd5b50505050506000600660166101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561163c578082015181840152602081019050611621565b60008484015250505050565b6000601f19601f8301169050919050565b600061166482611602565b61166e818561160d565b935061167e81856020860161161e565b61168781611648565b840191505092915050565b600060208201905081810360008301526116ac8184611659565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006116e4826116b9565b9050919050565b6116f4816116d9565b81146116ff57600080fd5b50565b600081359050611711816116eb565b92915050565b6000819050919050565b61172a81611717565b811461173557600080fd5b50565b60008135905061174781611721565b92915050565b60008060408385031215611764576117636116b4565b5b600061177285828601611702565b925050602061178385828601611738565b9150509250929050565b60008115159050919050565b6117a28161178d565b82525050565b60006020820190506117bd6000830184611799565b92915050565b6117cc81611717565b82525050565b60006020820190506117e760008301846117c3565b92915050565b600080600060608486031215611806576118056116b4565b5b600061181486828701611702565b935050602061182586828701611702565b925050604061183686828701611738565b9150509250925092565b600060ff82169050919050565b61185681611840565b82525050565b6000602082019050611871600083018461184d565b92915050565b60006020828403121561188d5761188c6116b4565b5b600061189b84828501611702565b91505092915050565b6118ad816116d9565b82525050565b60006020820190506118c860008301846118a4565b92915050565b600080604083850312156118e5576118e46116b4565b5b60006118f385828601611702565b925050602061190485828601611702565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061195557607f821691505b6020821081036119685761196761190e565b5b50919050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b60006119a460168361160d565b91506119af8261196e565b602082019050919050565b600060208201905081810360008301526119d381611997565b9050919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b6000611a1060088361160d565b9150611a1b826119da565b602082019050919050565b60006020820190508181036000830152611a3f81611a03565b9050919050565b6000606082019050611a5b60008301866118a4565b611a6860208301856117c3565b611a7560408301846117c3565b949350505050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000611ab360138361160d565b9150611abe82611a7d565b602082019050919050565b60006020820190508181036000830152611ae281611aa6565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b2382611717565b9150611b2e83611717565b9250828201905080821115611b4657611b45611ae9565b5b92915050565b7f4d61782057616c6c657400000000000000000000000000000000000000000000600082015250565b6000611b82600a8361160d565b9150611b8d82611b4c565b602082019050919050565b60006020820190508181036000830152611bb181611b75565b9050919050565b6000611bc382611717565b9150611bce83611717565b9250828202611bdc81611717565b91508282048414831517611bf357611bf2611ae9565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611c3482611717565b9150611c3f83611717565b925082611c4f57611c4e611bfa565b5b828204905092915050565b6000611c6582611717565b9150611c7083611717565b9250828203905081811115611c8857611c87611ae9565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050611cfb816116eb565b92915050565b600060208284031215611d1757611d166116b4565b5b6000611d2584828501611cec565b91505092915050565b6000819050919050565b6000819050919050565b6000611d5d611d58611d5384611d2e565b611d38565b611717565b9050919050565b611d6d81611d42565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b611da8816116d9565b82525050565b6000611dba8383611d9f565b60208301905092915050565b6000602082019050919050565b6000611dde82611d73565b611de88185611d7e565b9350611df383611d8f565b8060005b83811015611e24578151611e0b8882611dae565b9750611e1683611dc6565b925050600181019050611df7565b5085935050505092915050565b600060a082019050611e4660008301886117c3565b611e536020830187611d64565b8181036040830152611e658186611dd3565b9050611e7460608301856118a4565b611e8160808301846117c3565b969550505050505056fea2646970667358221220999d80a08f153722468d3bc94fdf6eb7d77d5b778cd5ec23a147eba450c0bbf364736f6c63430008170033
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.