ERC-20
Overview
Max Total Supply
100,000,000 2PAW
Holders
171
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.293401065609375 2PAWValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PawToken
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol"; import "../interfaces/IERC721A.sol"; // https://twitter.com/TwoPawsDefi // https://twopaws.io/ //TOKENOMIC TOKEN 2PAW. //Total supply 100M //Add uniswap 75% supply token / 4 ETH, 25% team . //LP token Burn (0) address. //Tax: buy and sales of 2PAW over 80k are taxed at 20%; transfers over 80k are taxed at 1%. //No tax on buy and sales and transfer of < 80k 2PAW. //Auto-added Liquidity: 1.25% of tokens are auto-added to the pair if it has an overabundance of tokens. Liquidity not added from (number of sales NFTDAO * 30000) + 2.5m is used to buy back NFT. //All tax proceeds are allocated to the protocol for incentives. //TOKENOMIC PROTOCOL //The protocol collects 0.3% of the loan amount if it is taken. //The protocol distributes the 2PAW token from buy and sales of the token and NFT buy/sell itself, stimulating orders. //NFT Buy 40000 2PAW / Sell 30000 2PAW //Only NFT holders can place reward orders! //1 NFT = 1 Reward order ! //NFTDAO holders are entitled to all the proceeds of the protocol after the sale of 1650 NFTDAO. //The owner will change to the DAO contract address! //Reward Formula: Repayment date must be 21 days from now (repayment date + loan amount/ denominator)*(repayment date + loan amount/ denominator). //Only the DAO can add new denominator & tokens or change them. interface IProtocol { function exchangeFeePercent() external view returns (uint256); function protocolNFTSellPrice() external view returns (uint256); function protocolNFTBuyPrice() external view returns (uint256); } contract PawToken is ERC20, Ownable { string private _name = "2PAW Token"; string private _symbol = "2PAW"; uint8 private _decimals = 18; uint256 private _totalSupply = 100000000; uint256 public maxTxAmount = 250000 * 10 ** _decimals; uint256 public maxWalletAmount = 1000000 * 10 ** _decimals; uint256 public amountToLiquify = 2500000 * 10 ** _decimals; uint256 public fee = 1; address public protocolAddress; address public protocolNFT; address public devAddress; bool public devLocked = true; bool inSwapAndLiquify; IUniswapV2Router02 public immutable uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable uniswapV2Pair; mapping(address => bool) private _isExcludedFromFee; modifier devUnlock { require(!devLocked, "Locked by developer."); _; } modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address _devAddress) ERC20(_name, _symbol) { _mint(owner(), (75000000 * 10 ** _decimals)); _mint(_devAddress, (25000000 * 10 ** _decimals)); devAddress = _devAddress; uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH()); _approve(address(this), address(uniswapV2Router), type(uint256).max); _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[address(this)] = true; _isExcludedFromFee[devAddress] = true; _isExcludedFromFee[owner()] = true; } function _transfer(address from, address to, uint256 amount) internal override devUnlock { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance"); if ( (from == uniswapV2Pair || to == uniswapV2Pair) && amount > IProtocol(protocolAddress).protocolNFTBuyPrice() * 2 && !inSwapAndLiquify) { if (from != uniswapV2Pair) { uint256 contractBalance = balanceOf(protocolAddress); uint256 lockedNFT = IERC721A(protocolNFT).totalSupply() - IERC721(protocolNFT).balanceOf(protocolAddress); uint256 lockedTokens = (IProtocol(protocolAddress).protocolNFTSellPrice() * lockedNFT) + amountToLiquify; if (contractBalance > lockedTokens + amountToLiquify) { super._transfer(protocolAddress, address(this), amountToLiquify); _swapAndLiquify(amountToLiquify); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount"); if (from == uniswapV2Pair) { require((amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit"); } uint256 protocolAmount = (amount * IProtocol(protocolAddress).exchangeFeePercent() / 100); if (protocolAmount != 0) { transferAmount = amount - protocolAmount; super._transfer(from, protocolAddress, protocolAmount); } else { transferAmount = amount; } } super._transfer(from, to, transferAmount); } else { if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { super._transfer(from, to, amount); } else if (amount > IProtocol(protocolAddress).protocolNFTBuyPrice() * 2) { uint256 protocolAmount = (amount * fee / 100); uint256 transferAmount = amount - protocolAmount; super._transfer(from, protocolAddress, protocolAmount); super._transfer(from, to, transferAmount); }else { super._transfer(from, to, amount); } } } function _swapAndLiquify(uint256 _tokenAmount) private lockTheSwap { uint256 half = (_tokenAmount / 2); uint256 otherHalf = (_tokenAmount - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); } function _swapTokensForEth(uint256 _tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( _tokenAmount, 0, path, address(this), (block.timestamp + 300) ); } function _addLiquidity(uint256 _tokenAmount, uint256 _ethAmount) private lockTheSwap { uniswapV2Router.addLiquidityETH{value : _ethAmount}( address(this), _tokenAmount, 0, 0, address(this), (block.timestamp + 300) ); } function setProtocolAndNFTAddresses(address _protocolAddress, address _NFTToken) public onlyOwner { protocolAddress = _protocolAddress; protocolNFT = _NFTToken; _isExcludedFromFee[protocolAddress] = true; } function setMaxTxAmount() public onlyOwner { maxTxAmount = type(uint256).max; } function setMaxWalletAmount() public onlyOwner { maxWalletAmount = type(uint256).max; } function toggleLock() public onlyOwner { devLocked = false; } function withdraw() public returns(bytes memory){ (, bytes memory resp) = devAddress.call{value: address(this).balance}(""); return resp; } receive() external payable { } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../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. * * By default, the owner account will be the one that deploys the contract. 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; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @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 { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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 { require(newOwner != address(0), "Ownable: new owner is the zero address"); _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 v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * 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]. * * 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. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 value {ERC20} uses, unless this function is * 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 override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override 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 `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` 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 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); 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 `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `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. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` 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. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ 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 v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @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 amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` 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 amount) 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 `amount` 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 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` 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 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT 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; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
// SPDX-License-Identifier: MIT 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); }
// SPDX-License-Identifier: MIT 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; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.16; interface IERC721A { function totalSupply() external view returns (uint256); function tokenByIndex(uint256 index) external view returns (uint256); function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); function supportsInterface(bytes4 interfaceId) external view returns (bool); function balanceOf(address owner) external view returns (uint256); function ownerOf(uint256 tokenId) external view returns (address); function name() external view returns (string memory); function symbol() external view returns (string memory); function tokenURI(uint256 tokenId) external view returns (string memory); function approve(address to, uint256 tokenId) external; function getApproved(uint256 tokenId) external view returns (address); function setApprovalForAll(address operator, bool approved) external; function isApprovedForAll(address owner, address operator) external view returns (bool); function transferFrom(address from, address to, uint256 tokenId) external; function safeTransferFrom(address from, address to, uint256 tokenId) external; function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) external; }
{ "optimizer": { "enabled": true, "runs": 1000 }, "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":"_devAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[],"name":"amountToLiquify","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolNFT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_protocolAddress","type":"address"},{"internalType":"address","name":"_NFTToken","type":"address"}],"name":"setProtocolAndNFTAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLock","outputs":[],"stateMutability":"nonpayable","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":"amount","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
610100604052600a60c090815269192820ab902a37b5b2b760b11b60e0526006906200002c908262000822565b506040805180820190915260048152633250415760e01b602082015260079062000057908262000822565b506008805460ff191660129081179091556305f5e1006009556200007d90600a62000a03565b6200008c906203d09062000a1b565b600a908155600854620000a59160ff9091169062000a03565b620000b490620f424062000a1b565b600b55600854620000ca9060ff16600a62000a03565b620000d990622625a062000a1b565b600c556001600d556010805460ff60a01b1916600160a01b179055737a250d5630b4cf539739df2c5dacb4c659f2488d6080523480156200011957600080fd5b50604051620026ff380380620026ff8339810160408190526200013c9162000a3d565b600680546200014b9062000794565b80601f0160208091040260200160405190810160405280929190818152602001828054620001799062000794565b8015620001ca5780601f106200019e57610100808354040283529160200191620001ca565b820191906000526020600020905b815481529060010190602001808311620001ac57829003601f168201915b505050505060078054620001de9062000794565b80601f01602080910402602001604051908101604052809291908181526020018280546200020c9062000794565b80156200025d5780601f1062000231576101008083540402835291602001916200025d565b820191906000526020600020905b8154815290600101906020018083116200023f57829003601f168201915b5050505050816003908162000273919062000822565b50600462000282828262000822565b5050506200029f620002996200053460201b60201c565b62000538565b620002df620002b66005546001600160a01b031690565b600854620002c99060ff16600a62000a03565b620002d99063047868c062000a1b565b6200058a565b60085462000309908290620002f99060ff16600a62000a03565b620002d99063017d784062000a1b565b80601060006101000a8154816001600160a01b0302191690836001600160a01b031602179055506080516001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000371573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000397919062000a3d565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003e7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200040d919062000a3d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200045b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000481919062000a3d565b6001600160a01b031660a052608051620004a090309060001962000651565b6080516001600160a01b0390811660009081526011602081905260408083208054600160ff199182168117909255308552828520805482168317905560105490951684529083208054909416811790935590620005056005546001600160a01b031690565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555062000a7e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005fa919062000a68565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620006b55760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401620005dd565b6001600160a01b038216620007185760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620005dd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007a957607f821691505b602082108103620007ca57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200077957600081815260208120601f850160051c81016020861015620007f95750805b601f850160051c820191505b818110156200081a5782815560010162000805565b505050505050565b81516001600160401b038111156200083e576200083e6200077e565b62000856816200084f845462000794565b84620007d0565b602080601f8311600181146200088e5760008415620008755750858301515b600019600386901b1c1916600185901b1785556200081a565b600085815260208120601f198616915b82811015620008bf578886015182559484019460019091019084016200089e565b5085821015620008de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000945578160001904821115620009295762000929620008ee565b808516156200093757918102915b93841c939080029062000909565b509250929050565b6000826200095e57506001620009fd565b816200096d57506000620009fd565b81600181146200098657600281146200099157620009b1565b6001915050620009fd565b60ff841115620009a557620009a5620008ee565b50506001821b620009fd565b5060208310610133831016604e8410600b8410161715620009d6575081810a620009fd565b620009e2838362000904565b8060001904821115620009f957620009f9620008ee565b0290505b92915050565b600062000a1460ff8416836200094d565b9392505050565b600081600019048311821515161562000a385762000a38620008ee565b500290565b60006020828403121562000a5057600080fd5b81516001600160a01b038116811462000a1457600080fd5b80820180821115620009fd57620009fd620008ee565b60805160a051611c2a62000ad56000396000818161039201528181610cb501528181610cf001528181610dcd01526110c8015260008181610297015281816116d70152818161178201526118380152611c2a6000f3fe6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461050a578063ddca3f4314610550578063f2fde38b14610566578063ff9413d81461058657600080fd5b8063a9059cbb1461049f578063aa4bde28146104bf578063cc8f60d9146104d5578063d46b82b9146104ea57600080fd5b80638c0b5e22116100d15780638c0b5e22146104365780638da5cb5b1461044c57806395d89b411461046a578063a457c2d71461047f57600080fd5b806370a08231146103d6578063715018a61461040c57806376cdf25c1461042157600080fd5b8063313ce567116101645780633ad10ef61161013e5780633ad10ef61461034b5780633ccfd60b1461036b57806349bd5a5e1461038057806353e4efc5146103b457600080fd5b8063313ce567146102ee5780633764863c1461030a578063395093511461032b57600080fd5b806310194de3116101a057806310194de3146102615780631694505e1461028557806318160ddd146102b957806323b872dd146102ce57600080fd5b80630676c1b7146101d257806306fdde031461020f578063095ea7b31461023157600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b50600e546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021b57600080fd5b5061022461059b565b6040516102069190611960565b34801561023d57600080fd5b5061025161024c36600461198f565b61062d565b6040519015158152602001610206565b34801561026d57600080fd5b50610277600c5481565b604051908152602001610206565b34801561029157600080fd5b506101f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156102c557600080fd5b50600254610277565b3480156102da57600080fd5b506102516102e93660046119bb565b610647565b3480156102fa57600080fd5b5060405160128152602001610206565b34801561031657600080fd5b5060105461025190600160a01b900460ff1681565b34801561033757600080fd5b5061025161034636600461198f565b61066b565b34801561035757600080fd5b506010546101f2906001600160a01b031681565b34801561037757600080fd5b506102246106aa565b34801561038c57600080fd5b506101f27f000000000000000000000000000000000000000000000000000000000000000081565b3480156103c057600080fd5b506103d46103cf3660046119fc565b610709565b005b3480156103e257600080fd5b506102776103f1366004611a35565b6001600160a01b031660009081526020819052604090205490565b34801561041857600080fd5b506103d461076a565b34801561042d57600080fd5b506103d461077e565b34801561044257600080fd5b50610277600a5481565b34801561045857600080fd5b506005546001600160a01b03166101f2565b34801561047657600080fd5b5061022461078e565b34801561048b57600080fd5b5061025161049a36600461198f565b61079d565b3480156104ab57600080fd5b506102516104ba36600461198f565b61084c565b3480156104cb57600080fd5b50610277600b5481565b3480156104e157600080fd5b506103d461085a565b3480156104f657600080fd5b50600f546101f2906001600160a01b031681565b34801561051657600080fd5b506102776105253660046119fc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561055c57600080fd5b50610277600d5481565b34801561057257600080fd5b506103d4610581366004611a35565b61086a565b34801561059257600080fd5b506103d46108fa565b6060600380546105aa90611a52565b80601f01602080910402602001604051908101604052809291908181526020018280546105d690611a52565b80156106235780601f106105f857610100808354040283529160200191610623565b820191906000526020600020905b81548152906001019060200180831161060657829003601f168201915b5050505050905090565b60003361063b81858561092c565b60019150505b92915050565b600033610655858285610a84565b610660858585610b16565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061063b90829086906106a5908790611aa2565b61092c565b6010546040516060916000916001600160a01b039091169047908381818185875af1925050503d80600081146106fc576040519150601f19603f3d011682016040523d82523d6000602084013e610701565b606091505b509392505050565b6107116113aa565b600e80546001600160a01b0393841673ffffffffffffffffffffffffffffffffffffffff199182168117909255600f8054939094169216919091179091556000908152601160205260409020805460ff19166001179055565b6107726113aa565b61077c6000611404565b565b6107866113aa565b600019600b55565b6060600480546105aa90611a52565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561083f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610660828686840361092c565b60003361063b818585610b16565b6108626113aa565b600019600a55565b6108726113aa565b6001600160a01b0381166108ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610836565b6108f781611404565b50565b6109026113aa565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b6001600160a01b0383166109a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b038216610a235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b105781811015610b035760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610836565b610b10848484840361092c565b50505050565b601054600160a01b900460ff1615610b705760405162461bcd60e51b815260206004820152601460248201527f4c6f636b656420627920646576656c6f7065722e0000000000000000000000006044820152606401610836565b6001600160a01b038316610bd45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b038216610c365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b80610c56846001600160a01b031660009081526020819052604090205490565b1015610cb35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480610d2457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b8015610db05750600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da29190611ab5565b610dad906002611ace565b81115b8015610dc65750601054600160a81b900460ff16155b1561126b577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161461100357600e546001600160a01b0316600090815260208190526040812054600f54600e546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201529293506000929116906370a0823190602401602060405180830381865afa158015610e8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eae9190611ab5565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190611ab5565b610f2f9190611aed565b90506000600c5482600e60009054906101000a90046001600160a01b03166001600160a01b031663b01f3c5f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fae9190611ab5565b610fb89190611ace565b610fc29190611aa2565b9050600c5481610fd29190611aa2565b831115610fff57600e54600c54610ff4916001600160a01b0316903090611463565b610fff600c54611607565b5050505b6001600160a01b03831660009081526011602052604081205460ff168061104257506001600160a01b03831660009081526011602052604090205460ff165b1561104e575080611260565b600a548211156110c65760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610836565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b03160361119957600b546001600160a01b0384166000908152602081905260409020546111259084611aa2565b11156111995760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d6974000000000000000000006064820152608401610836565b60006064600e60009054906101000a90046001600160a01b03166001600160a01b031663f2884e666040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112149190611ab5565b61121e9085611ace565b6112289190611b00565b9050801561125a5761123a8184611aed565b600e549092506112559086906001600160a01b031683611463565b61125e565b8291505b505b610b10848483611463565b6001600160a01b03831660009081526011602052604090205460ff16806112aa57506001600160a01b03821660009081526011602052604090205460ff165b156112bf576112ba838383611463565b505050565b600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015611312573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113369190611ab5565b611341906002611ace565b81111561139f5760006064600d548361135a9190611ace565b6113649190611b00565b905060006113728284611aed565b600e5490915061138d9086906001600160a01b031684611463565b611398858583611463565b5050505050565b6112ba838383611463565b6005546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610836565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114c75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b0382166115295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b6001600160a01b038316600090815260208190526040902054818110156115a15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b10565b6010805460ff60a81b1916600160a81b1790556000611627600283611b00565b905060006116358284611aed565b9050476116418361166d565b600061164d8247611aed565b9050611659838261181b565b50506010805460ff60a81b19169055505050565b6010805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106116b5576116b5611b22565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611733573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117579190611b38565b8160018151811061176a5761176a611b22565b6001600160a01b0392831660209182029290920101527f00000000000000000000000000000000000000000000000000000000000000001663791ac94783600084306117b84261012c611aa2565b6040518663ffffffff1660e01b81526004016117d8959493929190611b55565b600060405180830381600087803b1580156117f257600080fd5b505af1158015611806573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b6010805460ff60a81b1916600160a81b1790556001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001663f305d719823085600080836118704261012c611aa2565b60405160e089901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156118f5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116599190611bc6565b6000815180845260005b8181101561194057602081850181015186830182015201611924565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611973602083018461191a565b9392505050565b6001600160a01b03811681146108f757600080fd5b600080604083850312156119a257600080fd5b82356119ad8161197a565b946020939093013593505050565b6000806000606084860312156119d057600080fd5b83356119db8161197a565b925060208401356119eb8161197a565b929592945050506040919091013590565b60008060408385031215611a0f57600080fd5b8235611a1a8161197a565b91506020830135611a2a8161197a565b809150509250929050565b600060208284031215611a4757600080fd5b81356119738161197a565b600181811c90821680611a6657607f821691505b602082108103611a8657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561064157610641611a8c565b600060208284031215611ac757600080fd5b5051919050565b6000816000190483118215151615611ae857611ae8611a8c565b500290565b8181038181111561064157610641611a8c565b600082611b1d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b4a57600080fd5b81516119738161197a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ba55784516001600160a01b031683529383019391830191600101611b80565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611bdb57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122023f39414178b4b0fd1c164d39fcbe87410d34b883d8597c15a79e68092f1510564736f6c634300081000330000000000000000000000001bfef8075cf668db249ab4b81e58f9608f7383df
Deployed Bytecode
0x6080604052600436106101c65760003560e01c806370a08231116100f7578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e1461050a578063ddca3f4314610550578063f2fde38b14610566578063ff9413d81461058657600080fd5b8063a9059cbb1461049f578063aa4bde28146104bf578063cc8f60d9146104d5578063d46b82b9146104ea57600080fd5b80638c0b5e22116100d15780638c0b5e22146104365780638da5cb5b1461044c57806395d89b411461046a578063a457c2d71461047f57600080fd5b806370a08231146103d6578063715018a61461040c57806376cdf25c1461042157600080fd5b8063313ce567116101645780633ad10ef61161013e5780633ad10ef61461034b5780633ccfd60b1461036b57806349bd5a5e1461038057806353e4efc5146103b457600080fd5b8063313ce567146102ee5780633764863c1461030a578063395093511461032b57600080fd5b806310194de3116101a057806310194de3146102615780631694505e1461028557806318160ddd146102b957806323b872dd146102ce57600080fd5b80630676c1b7146101d257806306fdde031461020f578063095ea7b31461023157600080fd5b366101cd57005b600080fd5b3480156101de57600080fd5b50600e546101f2906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561021b57600080fd5b5061022461059b565b6040516102069190611960565b34801561023d57600080fd5b5061025161024c36600461198f565b61062d565b6040519015158152602001610206565b34801561026d57600080fd5b50610277600c5481565b604051908152602001610206565b34801561029157600080fd5b506101f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156102c557600080fd5b50600254610277565b3480156102da57600080fd5b506102516102e93660046119bb565b610647565b3480156102fa57600080fd5b5060405160128152602001610206565b34801561031657600080fd5b5060105461025190600160a01b900460ff1681565b34801561033757600080fd5b5061025161034636600461198f565b61066b565b34801561035757600080fd5b506010546101f2906001600160a01b031681565b34801561037757600080fd5b506102246106aa565b34801561038c57600080fd5b506101f27f000000000000000000000000eabc01a029e8a920c69a028b23795408ccca127f81565b3480156103c057600080fd5b506103d46103cf3660046119fc565b610709565b005b3480156103e257600080fd5b506102776103f1366004611a35565b6001600160a01b031660009081526020819052604090205490565b34801561041857600080fd5b506103d461076a565b34801561042d57600080fd5b506103d461077e565b34801561044257600080fd5b50610277600a5481565b34801561045857600080fd5b506005546001600160a01b03166101f2565b34801561047657600080fd5b5061022461078e565b34801561048b57600080fd5b5061025161049a36600461198f565b61079d565b3480156104ab57600080fd5b506102516104ba36600461198f565b61084c565b3480156104cb57600080fd5b50610277600b5481565b3480156104e157600080fd5b506103d461085a565b3480156104f657600080fd5b50600f546101f2906001600160a01b031681565b34801561051657600080fd5b506102776105253660046119fc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561055c57600080fd5b50610277600d5481565b34801561057257600080fd5b506103d4610581366004611a35565b61086a565b34801561059257600080fd5b506103d46108fa565b6060600380546105aa90611a52565b80601f01602080910402602001604051908101604052809291908181526020018280546105d690611a52565b80156106235780601f106105f857610100808354040283529160200191610623565b820191906000526020600020905b81548152906001019060200180831161060657829003601f168201915b5050505050905090565b60003361063b81858561092c565b60019150505b92915050565b600033610655858285610a84565b610660858585610b16565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061063b90829086906106a5908790611aa2565b61092c565b6010546040516060916000916001600160a01b039091169047908381818185875af1925050503d80600081146106fc576040519150601f19603f3d011682016040523d82523d6000602084013e610701565b606091505b509392505050565b6107116113aa565b600e80546001600160a01b0393841673ffffffffffffffffffffffffffffffffffffffff199182168117909255600f8054939094169216919091179091556000908152601160205260409020805460ff19166001179055565b6107726113aa565b61077c6000611404565b565b6107866113aa565b600019600b55565b6060600480546105aa90611a52565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091908381101561083f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610660828686840361092c565b60003361063b818585610b16565b6108626113aa565b600019600a55565b6108726113aa565b6001600160a01b0381166108ee5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610836565b6108f781611404565b50565b6109026113aa565b601080547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff169055565b6001600160a01b0383166109a75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b038216610a235760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610836565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381166000908152600160209081526040808320938616835292905220546000198114610b105781811015610b035760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610836565b610b10848484840361092c565b50505050565b601054600160a01b900460ff1615610b705760405162461bcd60e51b815260206004820152601460248201527f4c6f636b656420627920646576656c6f7065722e0000000000000000000000006044820152606401610836565b6001600160a01b038316610bd45760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b038216610c365760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b80610c56846001600160a01b031660009081526020819052604090205490565b1015610cb35760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b7f000000000000000000000000eabc01a029e8a920c69a028b23795408ccca127f6001600160a01b0316836001600160a01b03161480610d2457507f000000000000000000000000eabc01a029e8a920c69a028b23795408ccca127f6001600160a01b0316826001600160a01b0316145b8015610db05750600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da29190611ab5565b610dad906002611ace565b81115b8015610dc65750601054600160a81b900460ff16155b1561126b577f000000000000000000000000eabc01a029e8a920c69a028b23795408ccca127f6001600160a01b0316836001600160a01b03161461100357600e546001600160a01b0316600090815260208190526040812054600f54600e546040517f70a082310000000000000000000000000000000000000000000000000000000081526001600160a01b0391821660048201529293506000929116906370a0823190602401602060405180830381865afa158015610e8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eae9190611ab5565b600f60009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f259190611ab5565b610f2f9190611aed565b90506000600c5482600e60009054906101000a90046001600160a01b03166001600160a01b031663b01f3c5f6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f8a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fae9190611ab5565b610fb89190611ace565b610fc29190611aa2565b9050600c5481610fd29190611aa2565b831115610fff57600e54600c54610ff4916001600160a01b0316903090611463565b610fff600c54611607565b5050505b6001600160a01b03831660009081526011602052604081205460ff168061104257506001600160a01b03831660009081526011602052604090205460ff165b1561104e575080611260565b600a548211156110c65760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e74000000000000006064820152608401610836565b7f000000000000000000000000eabc01a029e8a920c69a028b23795408ccca127f6001600160a01b0316846001600160a01b03160361119957600b546001600160a01b0384166000908152602081905260409020546111259084611aa2565b11156111995760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60448201527f61782077616c6c657420616d6f756e74206c696d6974000000000000000000006064820152608401610836565b60006064600e60009054906101000a90046001600160a01b03166001600160a01b031663f2884e666040518163ffffffff1660e01b8152600401602060405180830381865afa1580156111f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112149190611ab5565b61121e9085611ace565b6112289190611b00565b9050801561125a5761123a8184611aed565b600e549092506112559086906001600160a01b031683611463565b61125e565b8291505b505b610b10848483611463565b6001600160a01b03831660009081526011602052604090205460ff16806112aa57506001600160a01b03821660009081526011602052604090205460ff165b156112bf576112ba838383611463565b505050565b600e60009054906101000a90046001600160a01b03166001600160a01b031663808c36336040518163ffffffff1660e01b8152600401602060405180830381865afa158015611312573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113369190611ab5565b611341906002611ace565b81111561139f5760006064600d548361135a9190611ace565b6113649190611b00565b905060006113728284611aed565b600e5490915061138d9086906001600160a01b031684611463565b611398858583611463565b5050505050565b6112ba838383611463565b6005546001600160a01b0316331461077c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610836565b600580546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114c75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610836565b6001600160a01b0382166115295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610836565b6001600160a01b038316600090815260208190526040902054818110156115a15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610836565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610b10565b6010805460ff60a81b1916600160a81b1790556000611627600283611b00565b905060006116358284611aed565b9050476116418361166d565b600061164d8247611aed565b9050611659838261181b565b50506010805460ff60a81b19169055505050565b6010805460ff60a81b1916600160a81b17905560408051600280825260608201835260009260208301908036833701905050905030816000815181106116b5576116b5611b22565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611733573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117579190611b38565b8160018151811061176a5761176a611b22565b6001600160a01b0392831660209182029290920101527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663791ac94783600084306117b84261012c611aa2565b6040518663ffffffff1660e01b81526004016117d8959493929190611b55565b600060405180830381600087803b1580156117f257600080fd5b505af1158015611806573d6000803e3d6000fd5b50506010805460ff60a81b1916905550505050565b6010805460ff60a81b1916600160a81b1790556001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d1663f305d719823085600080836118704261012c611aa2565b60405160e089901b7fffffffff000000000000000000000000000000000000000000000000000000001681526001600160a01b039687166004820152602481019590955260448501939093526064840191909152909216608482015260a481019190915260c40160606040518083038185885af11580156118f5573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116599190611bc6565b6000815180845260005b8181101561194057602081850181015186830182015201611924565b506000602082860101526020601f19601f83011685010191505092915050565b602081526000611973602083018461191a565b9392505050565b6001600160a01b03811681146108f757600080fd5b600080604083850312156119a257600080fd5b82356119ad8161197a565b946020939093013593505050565b6000806000606084860312156119d057600080fd5b83356119db8161197a565b925060208401356119eb8161197a565b929592945050506040919091013590565b60008060408385031215611a0f57600080fd5b8235611a1a8161197a565b91506020830135611a2a8161197a565b809150509250929050565b600060208284031215611a4757600080fd5b81356119738161197a565b600181811c90821680611a6657607f821691505b602082108103611a8657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561064157610641611a8c565b600060208284031215611ac757600080fd5b5051919050565b6000816000190483118215151615611ae857611ae8611a8c565b500290565b8181038181111561064157610641611a8c565b600082611b1d57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611b4a57600080fd5b81516119738161197a565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ba55784516001600160a01b031683529383019391830191600101611b80565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611bdb57600080fd5b835192506020840151915060408401519050925092509256fea264697066735822122023f39414178b4b0fd1c164d39fcbe87410d34b883d8597c15a79e68092f1510564736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000001bfef8075cf668db249ab4b81e58f9608f7383df
-----Decoded View---------------
Arg [0] : _devAddress (address): 0x1bfef8075Cf668DB249ab4b81E58f9608F7383DF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000001bfef8075cf668db249ab4b81e58f9608f7383df
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.