Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 RDT
Holders
234
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
RuneData
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)
// Runes Protocol Explorer // Website : https://runedata.io // Twitter : https://twitter.com/RuneData_io // SPDX-License-Identifier: MIT pragma solidity ^0.8.23; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import {IUniswapV2Router02} from "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import {IUniswapV2Factory} from "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; contract RuneData is Ownable, ERC20 { event EnableTrading(); event DisableLimits(); event SwapBack(uint256 amount); event UpdateFeesWL(address newAddress); event ExcludedFromFees(address wallet); IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 private constant ANTI_BOT_TAX = 25; uint256 private constant TAX = 5; uint256 private _reduceTaxAtBlock; uint256 private constant _totalSupply = 100_000_000 * 10 ** 18; address public immutable pair; address public feesWallet; bool private limit = true; bool private _swaping = false; uint256 private _maxWallet = _totalSupply / 200; mapping(address => bool) private _excludedFromFees; mapping(uint256 => uint256) private _swapBlock; address public initOwner = 0x4c9DB2ea09f7731190FA42B184c8D2ec7289AC97; constructor( address _feesWallet ) ERC20("RuneData", "RDT") Ownable(initOwner) { feesWallet = _feesWallet; pair = IUniswapV2Factory(router.factory()).createPair( address(this), router.WETH() ); _excludedFromFees[initOwner] = true; _excludedFromFees[address(this)] = true; _excludedFromFees[address(router)] = true; _mint(0xE3891562B339BA8D99A450005e3e71823598C092, _totalSupply); _approve(initOwner, address(router), type(uint256).max); } modifier onSwap() { _swaping = true; _; _swaping = false; } function burn(uint256 value) external { _burn(_msgSender(), value); } function enableTrading() external onlyOwner { require(_reduceTaxAtBlock == 0, "enabled!"); _reduceTaxAtBlock = block.number + 10; emit EnableTrading(); } function disableLimits() external onlyOwner { require(limit, "Limits already removed"); limit = false; _maxWallet = _totalSupply; emit DisableLimits(); } function _update( address from, address to, uint256 amount ) internal override { if ( _excludedFromFees[from] || _excludedFromFees[to] || (to != pair && from != pair) || _swaping ) { super._update(from, to, amount); return; } require(_reduceTaxAtBlock > 0, "Trading is not open"); if (limit && to != pair) { require(balanceOf(to) + amount < _maxWallet, "MAX AMOUNT !!!"); } if (to == pair && balanceOf(address(this)) >= amount) { _swapTokenForETH(amount); } uint256 _totalFees = (amount * TAX) / 100; if (block.number < _reduceTaxAtBlock) { _totalFees = (amount * ANTI_BOT_TAX) / 100; } if (_totalFees > 0) { super._update(from, address(this), _totalFees); amount = amount - _totalFees; } super._update(from, to, amount); } function _swapTokenForETH(uint256 amount) private onSwap { if (_swapBlock[block.number] > 2) { return; } _swapBlock[block.number]++; address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); if (amount > _totalSupply / 200) { amount = _totalSupply / 200; } _approve(address(this), address(router), amount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( amount, 0, path, feesWallet, block.timestamp ); emit SwapBack(amount); } function _transferEther(uint256 amount, address to) internal { (bool success, ) = to.call{value: amount}(""); require(success, "transfer ethers failed"); } function updateFeesWallet(address newAddress) external onlyOwner { feesWallet = newAddress; emit UpdateFeesWL(newAddress); } function isExcludedFromFees(address wallet) external view returns (bool) { return _excludedFromFees[wallet]; } function excludedFromFees(address wallet, bool value) external onlyOwner { _excludedFromFees[wallet] = value; emit ExcludedFromFees(wallet); } }
// 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) (interfaces/draft-IERC6093.sol) pragma solidity ^0.8.20; /** * @dev Standard ERC20 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens. */ interface IERC20Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC20InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC20InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers. * @param spender Address that may be allowed to operate on tokens without being their owner. * @param allowance Amount of tokens a `spender` is allowed to operate with. * @param needed Minimum amount required to perform a transfer. */ error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC20InvalidApprover(address approver); /** * @dev Indicates a failure with the `spender` to be approved. Used in approvals. * @param spender Address that may be allowed to operate on tokens without being their owner. */ error ERC20InvalidSpender(address spender); } /** * @dev Standard ERC721 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens. */ interface IERC721Errors { /** * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20. * Used in balance queries. * @param owner Address of the current owner of a token. */ error ERC721InvalidOwner(address owner); /** * @dev Indicates a `tokenId` whose `owner` is the zero address. * @param tokenId Identifier number of a token. */ error ERC721NonexistentToken(uint256 tokenId); /** * @dev Indicates an error related to the ownership over a particular token. Used in transfers. * @param sender Address whose tokens are being transferred. * @param tokenId Identifier number of a token. * @param owner Address of the current owner of a token. */ error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC721InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC721InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param tokenId Identifier number of a token. */ error ERC721InsufficientApproval(address operator, uint256 tokenId); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC721InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC721InvalidOperator(address operator); } /** * @dev Standard ERC1155 Errors * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens. */ interface IERC1155Errors { /** * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. * @param balance Current balance for the interacting account. * @param needed Minimum amount required to perform a transfer. * @param tokenId Identifier number of a token. */ error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId); /** * @dev Indicates a failure with the token `sender`. Used in transfers. * @param sender Address whose tokens are being transferred. */ error ERC1155InvalidSender(address sender); /** * @dev Indicates a failure with the token `receiver`. Used in transfers. * @param receiver Address to which tokens are being transferred. */ error ERC1155InvalidReceiver(address receiver); /** * @dev Indicates a failure with the `operator`’s approval. Used in transfers. * @param operator Address that may be allowed to operate on tokens without being their owner. * @param owner Address of the current owner of a token. */ error ERC1155MissingApprovalForAll(address operator, address owner); /** * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals. * @param approver Address initiating an approval operation. */ error ERC1155InvalidApprover(address approver); /** * @dev Indicates a failure with the `operator` to be approved. Used in approvals. * @param operator Address that may be allowed to operate on tokens without being their owner. */ error ERC1155InvalidOperator(address operator); /** * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation. * Used in batch transfers. * @param idsLength Length of the array of token identifiers * @param valuesLength Length of the array of token amounts */ error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "./IERC20.sol"; import {IERC20Metadata} from "./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.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); }
// 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; } }
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.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); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; 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; }
{ "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":[{"internalType":"address","name":"_feesWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"DisableLimits","type":"event"},{"anonymous":false,"inputs":[],"name":"EnableTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"wallet","type":"address"}],"name":"ExcludedFromFees","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":"uint256","name":"amount","type":"uint256"}],"name":"SwapBack","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":"newAddress","type":"address"}],"name":"UpdateFeesWL","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"excludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"updateFeesWallet","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff168152506001600760146101000a81548160ff0219169083151502179055506000600760156101000a81548160ff02191690831515021790555060c86a52b7d2dcc80cd2e40000006200009b919062001283565b600855734c9db2ea09f7731190fa42b184c8d2ec7289ac97600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010057600080fd5b5060405162003d8438038062003d84833981810160405281019062000126919062001325565b6040518060400160405280600881526020017f52756e65446174610000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f5244540000000000000000000000000000000000000000000000000000000000815250600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200022a5760006040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040162000221919062001368565b60405180910390fd5b6200023b81620005fa60201b60201c565b5081600490816200024d9190620015f5565b5080600590816200025f9190620015f5565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060805173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000317919062001325565b73ffffffffffffffffffffffffffffffffffffffff1663c9c653963060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000381573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a7919062001325565b6040518363ffffffff1660e01b8152600401620003c6929190620016dc565b6020604051808303816000875af1158015620003e6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040c919062001325565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050600160096000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600960003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016009600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200059c73e3891562b339ba8d99a450005e3e71823598c0926a52b7d2dcc80cd2e4000000620006be60201b60201c565b620005f3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6200074b60201b60201c565b5062001b1b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007335760006040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200072a919062001368565b60405180910390fd5b62000747600083836200076560201b60201c565b5050565b62000760838383600162000aab60201b60201c565b505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620008075750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806200087c575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156200087b575060a05173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b80620008945750600760159054906101000a900460ff165b15620008b357620008ad83838362000c8b60201b60201c565b62000aa6565b600060065411620008fb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008f2906200176a565b60405180910390fd5b600760149054906101000a900460ff16801562000946575060a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15620009b15760085481620009618462000ebe60201b60201c565b6200096d91906200178c565b10620009b0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a79062001817565b60405180910390fd5b5b60a05173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16148015620009ff575080620009fc3062000ebe60201b60201c565b10155b1562000a175762000a168162000f0760201b60201c565b5b6000606460058362000a2a919062001839565b62000a36919062001283565b905060065443101562000a6357606460198362000a54919062001839565b62000a60919062001283565b90505b600081111562000a915762000a8084308362000c8b60201b60201c565b808262000a8e919062001884565b91505b62000aa484848462000c8b60201b60201c565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000b205760006040517fe602df0500000000000000000000000000000000000000000000000000000000815260040162000b17919062001368565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000b955760006040517f94280d6200000000000000000000000000000000000000000000000000000000815260040162000b8c919062001368565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550801562000c85578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405162000c7c9190620018d0565b60405180910390a35b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000ce157806003600082825462000cd491906200178c565b9250508190555062000db9565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101562000d71578381836040517fe450d38c00000000000000000000000000000000000000000000000000000000815260040162000d6893929190620018ed565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000e04578060036000828254039250508190555062000e52565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000eb19190620018d0565b60405180910390a3505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6001600760156101000a81548160ff0219169083151502179055506002600a60004381526020019081526020016000205411620011fd57600a6000438152602001908152602001600020600081548092919062000f64906200192a565b91905055506000600267ffffffffffffffff81111562000f895762000f8862001390565b5b60405190808252806020026020018201604052801562000fb85781602001602082028036833780820191505090505b509050308160008151811062000fd35762000fd262001977565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060805173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200105b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062001081919062001325565b8160018151811062001098576200109762001977565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c86a52b7d2dcc80cd2e4000000620010ec919062001283565b821115620011115760c86a52b7d2dcc80cd2e40000006200110e919062001283565b91505b6200112630608051846200074b60201b60201c565b60805173ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016200118e95949392919062001ab7565b600060405180830381600087803b158015620011a957600080fd5b505af1158015620011be573d6000803e3d6000fd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee0582604051620011f39190620018d0565b60405180910390a1505b6000600760156101000a81548160ff02191690831515021790555050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062001290826200121b565b91506200129d836200121b565b925082620012b057620012af62001225565b5b828204905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620012ed82620012c0565b9050919050565b620012ff81620012e0565b81146200130b57600080fd5b50565b6000815190506200131f81620012f4565b92915050565b6000602082840312156200133e576200133d620012bb565b5b60006200134e848285016200130e565b91505092915050565b6200136281620012e0565b82525050565b60006020820190506200137f600083018462001357565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200140757607f821691505b6020821081036200141d576200141c620013bf565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620014877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262001448565b62001493868362001448565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620014d6620014d0620014ca846200121b565b620014ab565b6200121b565b9050919050565b6000819050919050565b620014f283620014b5565b6200150a6200150182620014dd565b84845462001455565b825550505050565b600090565b6200152162001512565b6200152e818484620014e7565b505050565b5b8181101562001556576200154a60008262001517565b60018101905062001534565b5050565b601f821115620015a5576200156f8162001423565b6200157a8462001438565b810160208510156200158a578190505b620015a2620015998562001438565b83018262001533565b50505b505050565b600082821c905092915050565b6000620015ca60001984600802620015aa565b1980831691505092915050565b6000620015e58383620015b7565b9150826002028217905092915050565b620016008262001385565b67ffffffffffffffff8111156200161c576200161b62001390565b5b620016288254620013ee565b620016358282856200155a565b600060209050601f8311600181146200166d576000841562001658578287015190505b620016648582620015d7565b865550620016d4565b601f1984166200167d8662001423565b60005b82811015620016a75784890151825560018201915060208501945060208101905062001680565b86831015620016c75784890151620016c3601f891682620015b7565b8355505b6001600288020188555050505b505050505050565b6000604082019050620016f3600083018562001357565b62001702602083018462001357565b9392505050565b600082825260208201905092915050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b60006200175260138362001709565b91506200175f826200171a565b602082019050919050565b60006020820190508181036000830152620017858162001743565b9050919050565b600062001799826200121b565b9150620017a6836200121b565b9250828201905080821115620017c157620017c062001254565b5b92915050565b7f4d415820414d4f554e5420212121000000000000000000000000000000000000600082015250565b6000620017ff600e8362001709565b91506200180c82620017c7565b602082019050919050565b600060208201905081810360008301526200183281620017f0565b9050919050565b600062001846826200121b565b915062001853836200121b565b925082820262001863816200121b565b915082820484148315176200187d576200187c62001254565b5b5092915050565b600062001891826200121b565b91506200189e836200121b565b9250828203905081811115620018b957620018b862001254565b5b92915050565b620018ca816200121b565b82525050565b6000602082019050620018e76000830184620018bf565b92915050565b600060608201905062001904600083018662001357565b620019136020830185620018bf565b620019226040830184620018bf565b949350505050565b600062001937826200121b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036200196c576200196b62001254565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000620019d1620019cb620019c584620019a6565b620014ab565b6200121b565b9050919050565b620019e381620019b0565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b62001a2081620012e0565b82525050565b600062001a34838362001a15565b60208301905092915050565b6000602082019050919050565b600062001a5a82620019e9565b62001a668185620019f4565b935062001a738362001a05565b8060005b8381101562001aaa57815162001a8e888262001a26565b975062001a9b8362001a40565b92505060018101905062001a77565b5085935050505092915050565b600060a08201905062001ace6000830188620018bf565b62001add6020830187620019d8565b818103604083015262001af1818662001a4d565b905062001b02606083018562001357565b62001b116080830184620018bf565b9695505050505050565b60805160a05161221962001b6b600039600081816108260152818161103f0152818161109601528181611170015261121e01526000818161162c01528181611747015261176e01526122196000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80637491a0b3116100b8578063a8aa1b311161007c578063a8aa1b3114610318578063a9059cbb14610336578063c2d53eb414610366578063dd62ed3e14610384578063f2fde38b146103b4578063f928364c146103d057610137565b80637491a0b3146102985780637e44d2cc146102b45780638a8c523c146102d25780638da5cb5b146102dc57806395d89b41146102fa57610137565b8063313ce567116100ff578063313ce567146101f457806342966c68146102125780634fbee1931461022e57806370a082311461025e578063715018a61461028e57610137565b806306fdde031461013c578063095ea7b31461015a57806316697fc51461018a57806318160ddd146101a657806323b872dd146101c4575b600080fd5b6101446103da565b6040516101519190611909565b60405180910390f35b610174600480360381019061016f91906119c4565b61046c565b6040516101819190611a1f565b60405180910390f35b6101a4600480360381019061019f9190611a66565b61048f565b005b6101ae610529565b6040516101bb9190611ab5565b60405180910390f35b6101de60048036038101906101d99190611ad0565b610533565b6040516101eb9190611a1f565b60405180910390f35b6101fc610562565b6040516102099190611b3f565b60405180910390f35b61022c60048036038101906102279190611b5a565b61056b565b005b61024860048036038101906102439190611b87565b61057f565b6040516102559190611a1f565b60405180910390f35b61027860048036038101906102739190611b87565b6105d5565b6040516102859190611ab5565b60405180910390f35b61029661061e565b005b6102b260048036038101906102ad9190611b87565b610632565b005b6102bc6106b5565b6040516102c99190611bc3565b60405180910390f35b6102da6106db565b005b6102e4610769565b6040516102f19190611bc3565b60405180910390f35b610302610792565b60405161030f9190611909565b60405180910390f35b610320610824565b60405161032d9190611bc3565b60405180910390f35b610350600480360381019061034b91906119c4565b610848565b60405161035d9190611a1f565b60405180910390f35b61036e61086b565b60405161037b9190611bc3565b60405180910390f35b61039e60048036038101906103999190611bde565b610891565b6040516103ab9190611ab5565b60405180910390f35b6103ce60048036038101906103c99190611b87565b610918565b005b6103d861099e565b005b6060600480546103e990611c4d565b80601f016020809104026020016040519081016040528092919081815260200182805461041590611c4d565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b600080610477610a50565b9050610484818585610a58565b600191505092915050565b610497610a6a565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1e743d18ee757088c78546c6b0a43fb84f878ae18ee230eb2ec2c4624e991e398260405161051d9190611bc3565b60405180910390a15050565b6000600354905090565b60008061053e610a50565b905061054b858285610af1565b610556858585610b85565b60019150509392505050565b60006012905090565b61057c610576610a50565b82610c79565b50565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610626610a6a565b6106306000610cfb565b565b61063a610a6a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f72a9ab19df434db5c30afb2f81f7b22c9f70d53d6e92fc2ace3c9ce877ebabec816040516106aa9190611bc3565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106e3610a6a565b600060065414610728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071f90611cca565b60405180910390fd5b600a436107359190611d19565b6006819055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107a190611c4d565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90611c4d565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b5050505050905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080610853610a50565b9050610860818585610b85565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610920610a6a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109925760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109899190611bc3565b60405180910390fd5b61099b81610cfb565b50565b6109a6610a6a565b600760149054906101000a900460ff166109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611d99565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e40000006008819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b600033905090565b610a658383836001610dbf565b505050565b610a72610a50565b73ffffffffffffffffffffffffffffffffffffffff16610a90610769565b73ffffffffffffffffffffffffffffffffffffffff1614610aef57610ab3610a50565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ae69190611bc3565b60405180910390fd5b565b6000610afd8484610891565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b7f5781811015610b6f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b6693929190611db9565b60405180910390fd5b610b7e84848484036000610dbf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf75760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bee9190611bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c695760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c609190611bc3565b60405180910390fd5b610c74838383610f96565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ceb5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ce29190611bc3565b60405180910390fd5b610cf782600083610f96565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e315760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e289190611bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea35760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e9a9190611bc3565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f90578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f879190611ab5565b60405180910390a35b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110375750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110e657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156110e557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806110fd5750600760159054906101000a900460ff165b156111125761110d838383611306565b611301565b600060065411611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90611e3c565b60405180910390fd5b600760149054906101000a900460ff1680156111bf57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561121c57600854816111d1846105d5565b6111db9190611d19565b1061121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290611ea8565b60405180910390fd5b5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561127f57508061127c306105d5565b10155b1561128e5761128d8161152e565b5b6000606460058361129f9190611ec8565b6112a99190611f39565b90506006544310156112d15760646019836112c49190611ec8565b6112ce9190611f39565b90505b60008111156112f4576112e5843083611306565b80826112f19190611f6a565b91505b6112ff848484611306565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361135857806003600082825461134c9190611d19565b9250508190555061142d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113e5578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113dc93929190611db9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147657806003600082825403925050819055506114c4565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115219190611ab5565b60405180910390a3505050565b6001600760156101000a81548160ff0219169083151502179055506002600a6000438152602001908152602001600020541161185b57600a6000438152602001908152602001600020600081548092919061158890611f9e565b91905055506000600267ffffffffffffffff8111156115aa576115a9611fe6565b5b6040519080825280602002602001820160405280156115d85781602001602082028036833780820191505090505b50905030816000815181106115f0576115ef612015565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b99190612059565b816001815181106116cd576116cc612015565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c86a52b7d2dcc80cd2e400000061171f9190611f39565b8211156117415760c86a52b7d2dcc80cd2e400000061173e9190611f39565b91505b61176c307f000000000000000000000000000000000000000000000000000000000000000084610a58565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016117f0959493929190612189565b600060405180830381600087803b15801561180a57600080fd5b505af115801561181e573d6000803e3d6000fd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05826040516118519190611ab5565b60405180910390a1505b6000600760156101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118b3578082015181840152602081019050611898565b60008484015250505050565b6000601f19601f8301169050919050565b60006118db82611879565b6118e58185611884565b93506118f5818560208601611895565b6118fe816118bf565b840191505092915050565b6000602082019050818103600083015261192381846118d0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061195b82611930565b9050919050565b61196b81611950565b811461197657600080fd5b50565b60008135905061198881611962565b92915050565b6000819050919050565b6119a18161198e565b81146119ac57600080fd5b50565b6000813590506119be81611998565b92915050565b600080604083850312156119db576119da61192b565b5b60006119e985828601611979565b92505060206119fa858286016119af565b9150509250929050565b60008115159050919050565b611a1981611a04565b82525050565b6000602082019050611a346000830184611a10565b92915050565b611a4381611a04565b8114611a4e57600080fd5b50565b600081359050611a6081611a3a565b92915050565b60008060408385031215611a7d57611a7c61192b565b5b6000611a8b85828601611979565b9250506020611a9c85828601611a51565b9150509250929050565b611aaf8161198e565b82525050565b6000602082019050611aca6000830184611aa6565b92915050565b600080600060608486031215611ae957611ae861192b565b5b6000611af786828701611979565b9350506020611b0886828701611979565b9250506040611b19868287016119af565b9150509250925092565b600060ff82169050919050565b611b3981611b23565b82525050565b6000602082019050611b546000830184611b30565b92915050565b600060208284031215611b7057611b6f61192b565b5b6000611b7e848285016119af565b91505092915050565b600060208284031215611b9d57611b9c61192b565b5b6000611bab84828501611979565b91505092915050565b611bbd81611950565b82525050565b6000602082019050611bd86000830184611bb4565b92915050565b60008060408385031215611bf557611bf461192b565b5b6000611c0385828601611979565b9250506020611c1485828601611979565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c6557607f821691505b602082108103611c7857611c77611c1e565b5b50919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b6000611cb4600883611884565b9150611cbf82611c7e565b602082019050919050565b60006020820190508181036000830152611ce381611ca7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d248261198e565b9150611d2f8361198e565b9250828201905080821115611d4757611d46611cea565b5b92915050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000611d83601683611884565b9150611d8e82611d4d565b602082019050919050565b60006020820190508181036000830152611db281611d76565b9050919050565b6000606082019050611dce6000830186611bb4565b611ddb6020830185611aa6565b611de86040830184611aa6565b949350505050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000611e26601383611884565b9150611e3182611df0565b602082019050919050565b60006020820190508181036000830152611e5581611e19565b9050919050565b7f4d415820414d4f554e5420212121000000000000000000000000000000000000600082015250565b6000611e92600e83611884565b9150611e9d82611e5c565b602082019050919050565b60006020820190508181036000830152611ec181611e85565b9050919050565b6000611ed38261198e565b9150611ede8361198e565b9250828202611eec8161198e565b91508282048414831517611f0357611f02611cea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f448261198e565b9150611f4f8361198e565b925082611f5f57611f5e611f0a565b5b828204905092915050565b6000611f758261198e565b9150611f808361198e565b9250828203905081811115611f9857611f97611cea565b5b92915050565b6000611fa98261198e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fdb57611fda611cea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061205381611962565b92915050565b60006020828403121561206f5761206e61192b565b5b600061207d84828501612044565b91505092915050565b6000819050919050565b6000819050919050565b60006120b56120b06120ab84612086565b612090565b61198e565b9050919050565b6120c58161209a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61210081611950565b82525050565b600061211283836120f7565b60208301905092915050565b6000602082019050919050565b6000612136826120cb565b61214081856120d6565b935061214b836120e7565b8060005b8381101561217c5781516121638882612106565b975061216e8361211e565b92505060018101905061214f565b5085935050505092915050565b600060a08201905061219e6000830188611aa6565b6121ab60208301876120bc565b81810360408301526121bd818661212b565b90506121cc6060830185611bb4565b6121d96080830184611aa6565b969550505050505056fea2646970667358221220bb1835259f13cdb7fb82c698ce4299df89de19d780df88ae2c6f785ef0bfe6eb64736f6c634300081700330000000000000000000000005ae18fd33f49905adb5a3fe6f84c92012967c4a6
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80637491a0b3116100b8578063a8aa1b311161007c578063a8aa1b3114610318578063a9059cbb14610336578063c2d53eb414610366578063dd62ed3e14610384578063f2fde38b146103b4578063f928364c146103d057610137565b80637491a0b3146102985780637e44d2cc146102b45780638a8c523c146102d25780638da5cb5b146102dc57806395d89b41146102fa57610137565b8063313ce567116100ff578063313ce567146101f457806342966c68146102125780634fbee1931461022e57806370a082311461025e578063715018a61461028e57610137565b806306fdde031461013c578063095ea7b31461015a57806316697fc51461018a57806318160ddd146101a657806323b872dd146101c4575b600080fd5b6101446103da565b6040516101519190611909565b60405180910390f35b610174600480360381019061016f91906119c4565b61046c565b6040516101819190611a1f565b60405180910390f35b6101a4600480360381019061019f9190611a66565b61048f565b005b6101ae610529565b6040516101bb9190611ab5565b60405180910390f35b6101de60048036038101906101d99190611ad0565b610533565b6040516101eb9190611a1f565b60405180910390f35b6101fc610562565b6040516102099190611b3f565b60405180910390f35b61022c60048036038101906102279190611b5a565b61056b565b005b61024860048036038101906102439190611b87565b61057f565b6040516102559190611a1f565b60405180910390f35b61027860048036038101906102739190611b87565b6105d5565b6040516102859190611ab5565b60405180910390f35b61029661061e565b005b6102b260048036038101906102ad9190611b87565b610632565b005b6102bc6106b5565b6040516102c99190611bc3565b60405180910390f35b6102da6106db565b005b6102e4610769565b6040516102f19190611bc3565b60405180910390f35b610302610792565b60405161030f9190611909565b60405180910390f35b610320610824565b60405161032d9190611bc3565b60405180910390f35b610350600480360381019061034b91906119c4565b610848565b60405161035d9190611a1f565b60405180910390f35b61036e61086b565b60405161037b9190611bc3565b60405180910390f35b61039e60048036038101906103999190611bde565b610891565b6040516103ab9190611ab5565b60405180910390f35b6103ce60048036038101906103c99190611b87565b610918565b005b6103d861099e565b005b6060600480546103e990611c4d565b80601f016020809104026020016040519081016040528092919081815260200182805461041590611c4d565b80156104625780601f1061043757610100808354040283529160200191610462565b820191906000526020600020905b81548152906001019060200180831161044557829003601f168201915b5050505050905090565b600080610477610a50565b9050610484818585610a58565b600191505092915050565b610497610a6a565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1e743d18ee757088c78546c6b0a43fb84f878ae18ee230eb2ec2c4624e991e398260405161051d9190611bc3565b60405180910390a15050565b6000600354905090565b60008061053e610a50565b905061054b858285610af1565b610556858585610b85565b60019150509392505050565b60006012905090565b61057c610576610a50565b82610c79565b50565b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610626610a6a565b6106306000610cfb565b565b61063a610a6a565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f72a9ab19df434db5c30afb2f81f7b22c9f70d53d6e92fc2ace3c9ce877ebabec816040516106aa9190611bc3565b60405180910390a150565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6106e3610a6a565b600060065414610728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071f90611cca565b60405180910390fd5b600a436107359190611d19565b6006819055507f1d97b7cdf6b6f3405cbe398b69512e5419a0ce78232b6e9c6ffbf1466774bd8d60405160405180910390a1565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546107a190611c4d565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90611c4d565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b5050505050905090565b7f0000000000000000000000002cf2d7daca39f55d17993ec28938e5bb115f7e1b81565b600080610853610a50565b9050610860818585610b85565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610920610a6a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109925760006040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016109899190611bc3565b60405180910390fd5b61099b81610cfb565b50565b6109a6610a6a565b600760149054906101000a900460ff166109f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ec90611d99565b60405180910390fd5b6000600760146101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e40000006008819055507fe9070d302280cd857033f56893647494c1410643fe239daabee29e9292199b3d60405160405180910390a1565b600033905090565b610a658383836001610dbf565b505050565b610a72610a50565b73ffffffffffffffffffffffffffffffffffffffff16610a90610769565b73ffffffffffffffffffffffffffffffffffffffff1614610aef57610ab3610a50565b6040517f118cdaa7000000000000000000000000000000000000000000000000000000008152600401610ae69190611bc3565b60405180910390fd5b565b6000610afd8484610891565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b7f5781811015610b6f578281836040517ffb8f41b2000000000000000000000000000000000000000000000000000000008152600401610b6693929190611db9565b60405180910390fd5b610b7e84848484036000610dbf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf75760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610bee9190611bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c695760006040517fec442f05000000000000000000000000000000000000000000000000000000008152600401610c609190611bc3565b60405180910390fd5b610c74838383610f96565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ceb5760006040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401610ce29190611bc3565b60405180910390fd5b610cf782600083610f96565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610e315760006040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610e289190611bc3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610ea35760006040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610e9a9190611bc3565b60405180910390fd5b81600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508015610f90578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610f879190611ab5565b60405180910390a35b50505050565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110375750600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b806110e657507f0000000000000000000000002cf2d7daca39f55d17993ec28938e5bb115f7e1b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156110e557507f0000000000000000000000002cf2d7daca39f55d17993ec28938e5bb115f7e1b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b5b806110fd5750600760159054906101000a900460ff165b156111125761110d838383611306565b611301565b600060065411611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90611e3c565b60405180910390fd5b600760149054906101000a900460ff1680156111bf57507f0000000000000000000000002cf2d7daca39f55d17993ec28938e5bb115f7e1b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561121c57600854816111d1846105d5565b6111db9190611d19565b1061121b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121290611ea8565b60405180910390fd5b5b7f0000000000000000000000002cf2d7daca39f55d17993ec28938e5bb115f7e1b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561127f57508061127c306105d5565b10155b1561128e5761128d8161152e565b5b6000606460058361129f9190611ec8565b6112a99190611f39565b90506006544310156112d15760646019836112c49190611ec8565b6112ce9190611f39565b90505b60008111156112f4576112e5843083611306565b80826112f19190611f6a565b91505b6112ff848484611306565b505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361135857806003600082825461134c9190611d19565b9250508190555061142d565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113e5578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016113dc93929190611db9565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361147657806003600082825403925050819055506114c4565b80600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115219190611ab5565b60405180910390a3505050565b6001600760156101000a81548160ff0219169083151502179055506002600a6000438152602001908152602001600020541161185b57600a6000438152602001908152602001600020600081548092919061158890611f9e565b91905055506000600267ffffffffffffffff8111156115aa576115a9611fe6565b5b6040519080825280602002602001820160405280156115d85781602001602082028036833780820191505090505b50905030816000815181106115f0576115ef612015565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611695573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116b99190612059565b816001815181106116cd576116cc612015565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060c86a52b7d2dcc80cd2e400000061171f9190611f39565b8211156117415760c86a52b7d2dcc80cd2e400000061173e9190611f39565b91505b61176c307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610a58565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016117f0959493929190612189565b600060405180830381600087803b15801561180a57600080fd5b505af115801561181e573d6000803e3d6000fd5b505050507fd851aeb8e2074b285cc12da5e2fbf79e642e38f62ef8e59590790c157491ee05826040516118519190611ab5565b60405180910390a1505b6000600760156101000a81548160ff02191690831515021790555050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118b3578082015181840152602081019050611898565b60008484015250505050565b6000601f19601f8301169050919050565b60006118db82611879565b6118e58185611884565b93506118f5818560208601611895565b6118fe816118bf565b840191505092915050565b6000602082019050818103600083015261192381846118d0565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061195b82611930565b9050919050565b61196b81611950565b811461197657600080fd5b50565b60008135905061198881611962565b92915050565b6000819050919050565b6119a18161198e565b81146119ac57600080fd5b50565b6000813590506119be81611998565b92915050565b600080604083850312156119db576119da61192b565b5b60006119e985828601611979565b92505060206119fa858286016119af565b9150509250929050565b60008115159050919050565b611a1981611a04565b82525050565b6000602082019050611a346000830184611a10565b92915050565b611a4381611a04565b8114611a4e57600080fd5b50565b600081359050611a6081611a3a565b92915050565b60008060408385031215611a7d57611a7c61192b565b5b6000611a8b85828601611979565b9250506020611a9c85828601611a51565b9150509250929050565b611aaf8161198e565b82525050565b6000602082019050611aca6000830184611aa6565b92915050565b600080600060608486031215611ae957611ae861192b565b5b6000611af786828701611979565b9350506020611b0886828701611979565b9250506040611b19868287016119af565b9150509250925092565b600060ff82169050919050565b611b3981611b23565b82525050565b6000602082019050611b546000830184611b30565b92915050565b600060208284031215611b7057611b6f61192b565b5b6000611b7e848285016119af565b91505092915050565b600060208284031215611b9d57611b9c61192b565b5b6000611bab84828501611979565b91505092915050565b611bbd81611950565b82525050565b6000602082019050611bd86000830184611bb4565b92915050565b60008060408385031215611bf557611bf461192b565b5b6000611c0385828601611979565b9250506020611c1485828601611979565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611c6557607f821691505b602082108103611c7857611c77611c1e565b5b50919050565b7f656e61626c656421000000000000000000000000000000000000000000000000600082015250565b6000611cb4600883611884565b9150611cbf82611c7e565b602082019050919050565b60006020820190508181036000830152611ce381611ca7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611d248261198e565b9150611d2f8361198e565b9250828201905080821115611d4757611d46611cea565b5b92915050565b7f4c696d69747320616c72656164792072656d6f76656400000000000000000000600082015250565b6000611d83601683611884565b9150611d8e82611d4d565b602082019050919050565b60006020820190508181036000830152611db281611d76565b9050919050565b6000606082019050611dce6000830186611bb4565b611ddb6020830185611aa6565b611de86040830184611aa6565b949350505050565b7f54726164696e67206973206e6f74206f70656e00000000000000000000000000600082015250565b6000611e26601383611884565b9150611e3182611df0565b602082019050919050565b60006020820190508181036000830152611e5581611e19565b9050919050565b7f4d415820414d4f554e5420212121000000000000000000000000000000000000600082015250565b6000611e92600e83611884565b9150611e9d82611e5c565b602082019050919050565b60006020820190508181036000830152611ec181611e85565b9050919050565b6000611ed38261198e565b9150611ede8361198e565b9250828202611eec8161198e565b91508282048414831517611f0357611f02611cea565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611f448261198e565b9150611f4f8361198e565b925082611f5f57611f5e611f0a565b5b828204905092915050565b6000611f758261198e565b9150611f808361198e565b9250828203905081811115611f9857611f97611cea565b5b92915050565b6000611fa98261198e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611fdb57611fda611cea565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061205381611962565b92915050565b60006020828403121561206f5761206e61192b565b5b600061207d84828501612044565b91505092915050565b6000819050919050565b6000819050919050565b60006120b56120b06120ab84612086565b612090565b61198e565b9050919050565b6120c58161209a565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61210081611950565b82525050565b600061211283836120f7565b60208301905092915050565b6000602082019050919050565b6000612136826120cb565b61214081856120d6565b935061214b836120e7565b8060005b8381101561217c5781516121638882612106565b975061216e8361211e565b92505060018101905061214f565b5085935050505092915050565b600060a08201905061219e6000830188611aa6565b6121ab60208301876120bc565b81810360408301526121bd818661212b565b90506121cc6060830185611bb4565b6121d96080830184611aa6565b969550505050505056fea2646970667358221220bb1835259f13cdb7fb82c698ce4299df89de19d780df88ae2c6f785ef0bfe6eb64736f6c63430008170033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005ae18fd33f49905adb5a3fe6f84c92012967c4a6
-----Decoded View---------------
Arg [0] : _feesWallet (address): 0x5AE18fD33f49905aDB5a3fe6f84c92012967C4A6
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000005ae18fd33f49905adb5a3fe6f84c92012967c4a6
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.