ERC-20
MEME
Overview
Max Total Supply
469,000,000 PAN
Holders
831 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
39,847.096698461410194427 PANValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PeterPan
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // 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); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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 {} } // File: peterpan.sol pragma solidity ^0.8.0; contract PeterPan is ERC20, Ownable { address payable public devWallet; // 0x2a2982864042FE3cB20ee0b79A114139F628FB90 uint256 public maxBuy; uint256 public taxRate = 0; // 0% tax rate uint256 public burnRate = 0; // 0% burn rate uint256 public tokensPerETH = 0; // default rate is 1000 PAN per ETH uint256 public maxTransferAmount = 10000000 * 10 ** decimals(); mapping(address => bool) public whitelist; IUniswapV2Router02 public uniswapV2Router; constructor() ERC20("Peter Pan", "PAN") { devWallet = payable(msg.sender); maxBuy = 500000000000000000; // 0.5 ETH max buy limit _mint(msg.sender, 469000000 * 10 ** decimals()); } function setUniswapV2Router(address _router) external onlyOwner { uniswapV2Router = IUniswapV2Router02(_router); } function buy() public payable { require(msg.value <= maxBuy, "Exceeds max buy limit"); require(whitelist[msg.sender], "Buyer not in whitelist"); uint256 tokens = (msg.value * tokensPerETH) / (10 ** decimals()); _transfer(address(this), msg.sender, tokens); uint256 taxAmount = (tokens * taxRate) / 100; uint256 burnAmount = (tokens * burnRate) / 100; super._transfer(address(this), devWallet, taxAmount); _burn(address(this), burnAmount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { require(amount <= maxTransferAmount, "Exceeds maximum transfer amount"); if (sender != address(0) && recipient != address(0) && recipient != address(this)) { if (recipient != address(uniswapV2Router)) { uint256 taxAmount = (amount * taxRate) / 100; uint256 burnAmount = (amount * burnRate) / 100; super._transfer(sender, devWallet, taxAmount); super._transfer(sender, address(this), burnAmount); amount -= taxAmount + burnAmount; super._transfer(sender, recipient, amount); } else { // Transfer tokens to the Uniswap V2 router super._transfer(sender, recipient, amount); // Convert PAN tokens to ETH and send the ETH to the devWallet address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); uint256 taxAmount = (amount * taxRate) / 100; super.approve(address(uniswapV2Router), taxAmount); uniswapV2Router.swapExactTokensForETH(taxAmount, 0, path, devWallet, block.timestamp); } } } function burn(uint256 amount) public { _burn(msg.sender, amount); } function setMaxTransferAmount(uint256 _maxTransferAmount) public onlyOwner { maxTransferAmount = _maxTransferAmount; } function setMaxBuy(uint256 _maxBuy) public onlyOwner { maxBuy = _maxBuy; } function setTaxRate(uint256 _taxRate) public onlyOwner { taxRate = _taxRate; } function setBurnRate(uint256 _burnRate) public onlyOwner { burnRate = _burnRate; } function setWhitelist(address[] memory buyers, bool status) public onlyOwner { for (uint256 i = 0; i < buyers.length; i++) { whitelist[buyers[i]] = status; } } function renounceOwnership() public override onlyOwner { super.renounceOwnership(); } function setTokensPerETH(uint256 rate) public onlyOwner { tokensPerETH = rate; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":[{"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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","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":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"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":"maxBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnRate","type":"uint256"}],"name":"setBurnRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuy","type":"uint256"}],"name":"setMaxBuy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTransferAmount","type":"uint256"}],"name":"setMaxTransferAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxRate","type":"uint256"}],"name":"setTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"name":"setTokensPerETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"buyers","type":"address[]"},{"internalType":"bool","name":"status","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensPerETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600060085560006009556000600a55620000236200019a60201b60201c565b600a62000031919062000582565b62989680620000419190620005d3565b600b553480156200005157600080fd5b506040518060400160405280600981526020017f50657465722050616e00000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f50414e00000000000000000000000000000000000000000000000000000000008152508160039081620000cf91906200088e565b508060049081620000e191906200088e565b50505062000104620000f8620001a360201b60201c565b620001ab60201b60201c565b33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506706f05b59d3b200006007819055506200019433620001696200019a60201b60201c565b600a62000177919062000582565b631bf45f40620001889190620005d3565b6200027160201b60201c565b62000a61565b60006012905090565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002e3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002da90620009d6565b60405180910390fd5b620002f760008383620003de60201b60201c565b80600260008282546200030b9190620009f8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003be919062000a44565b60405180910390a3620003da60008383620003e360201b60201c565b5050565b505050565b505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000476578086048111156200044e576200044d620003e8565b5b60018516156200045e5780820291505b80810290506200046e8562000417565b94506200042e565b94509492505050565b60008262000491576001905062000564565b81620004a1576000905062000564565b8160018114620004ba5760028114620004c557620004fb565b600191505062000564565b60ff841115620004da57620004d9620003e8565b5b8360020a915084821115620004f457620004f3620003e8565b5b5062000564565b5060208310610133831016604e8410600b8410161715620005355782820a9050838111156200052f576200052e620003e8565b5b62000564565b62000544848484600162000424565b925090508184048111156200055e576200055d620003e8565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200058f826200056b565b91506200059c8362000575565b9250620005cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200047f565b905092915050565b6000620005e0826200056b565b9150620005ed836200056b565b9250828202620005fd816200056b565b91508282048414831517620006175762000616620003e8565b5b5092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006a057607f821691505b602082108103620006b657620006b562000658565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007207fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006e1565b6200072c8683620006e1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200076f6200076962000763846200056b565b62000744565b6200056b565b9050919050565b6000819050919050565b6200078b836200074e565b620007a36200079a8262000776565b848454620006ee565b825550505050565b600090565b620007ba620007ab565b620007c781848462000780565b505050565b5b81811015620007ef57620007e3600082620007b0565b600181019050620007cd565b5050565b601f8211156200083e576200080881620006bc565b6200081384620006d1565b8101602085101562000823578190505b6200083b6200083285620006d1565b830182620007cc565b50505b505050565b600082821c905092915050565b6000620008636000198460080262000843565b1980831691505092915050565b60006200087e838362000850565b9150826002028217905092915050565b62000899826200061e565b67ffffffffffffffff811115620008b557620008b462000629565b5b620008c1825462000687565b620008ce828285620007f3565b600060209050601f831160018114620009065760008415620008f1578287015190505b620008fd858262000870565b8655506200096d565b601f1984166200091686620006bc565b60005b82811015620009405784890151825560018201915060208501945060208101905062000919565b868310156200096057848901516200095c601f89168262000850565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009be601f8362000975565b9150620009cb8262000986565b602082019050919050565b60006020820190508181036000830152620009f181620009af565b9050919050565b600062000a05826200056b565b915062000a12836200056b565b925082820190508082111562000a2d5762000a2c620003e8565b5b92915050565b62000a3e816200056b565b82525050565b600060208201905062000a5b600083018462000a33565b92915050565b612ed48062000a716000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063a6f2ae3a11610095578063c6d69a3011610064578063c6d69a30146106a3578063dd62ed3e146106cc578063f2fde38b14610709578063f53bc83514610732576101d8565b8063a6f2ae3a14610606578063a9059cbb14610610578063a9e757231461064d578063bed9985014610678576101d8565b80638ea5220f116100d15780638ea5220f1461053657806395d89b41146105615780639b19251a1461058c578063a457c2d7146105c9576101d8565b8063715018a6146104a0578063771a3a1d146104b75780638bf55409146104e25780638da5cb5b1461050b576101d8565b806323b872dd1161017a5780633c271a05116101495780633c271a05146103e657806342966c681461040f57806370a082311461043857806370db69d614610475576101d8565b806323b872dd146103165780632456274714610353578063313ce5671461037e57806339509351146103a9576101d8565b80631419841d116101b65780631419841d1461026e5780631694505e1461029757806318160ddd146102c2578063189d165e146102ed576101d8565b806306fdde03146101dd578063095ea7b314610208578063116fb2a814610245575b600080fd5b3480156101e957600080fd5b506101f261075b565b6040516101ff9190611bbd565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190611c87565b6107ed565b60405161023c9190611ce2565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190611cfd565b610810565b005b34801561027a57600080fd5b5061029560048036038101906102909190611d2a565b610822565b005b3480156102a357600080fd5b506102ac61086e565b6040516102b99190611db6565b60405180910390f35b3480156102ce57600080fd5b506102d7610894565b6040516102e49190611de0565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190611cfd565b61089e565b005b34801561032257600080fd5b5061033d60048036038101906103389190611dfb565b6108b0565b60405161034a9190611ce2565b60405180910390f35b34801561035f57600080fd5b506103686108df565b6040516103759190611de0565b60405180910390f35b34801561038a57600080fd5b506103936108e5565b6040516103a09190611e6a565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190611c87565b6108ee565b6040516103dd9190611ce2565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190611ff9565b610925565b005b34801561041b57600080fd5b5061043660048036038101906104319190611cfd565b6109c2565b005b34801561044457600080fd5b5061045f600480360381019061045a9190611d2a565b6109cf565b60405161046c9190611de0565b60405180910390f35b34801561048157600080fd5b5061048a610a17565b6040516104979190611de0565b60405180910390f35b3480156104ac57600080fd5b506104b5610a1d565b005b3480156104c357600080fd5b506104cc610a2f565b6040516104d99190611de0565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190611cfd565b610a35565b005b34801561051757600080fd5b50610520610a47565b60405161052d9190612064565b60405180910390f35b34801561054257600080fd5b5061054b610a71565b60405161055891906120a0565b60405180910390f35b34801561056d57600080fd5b50610576610a97565b6040516105839190611bbd565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190611d2a565b610b29565b6040516105c09190611ce2565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190611c87565b610b49565b6040516105fd9190611ce2565b60405180910390f35b61060e610bc0565b005b34801561061c57600080fd5b5061063760048036038101906106329190611c87565b610d44565b6040516106449190611ce2565b60405180910390f35b34801561065957600080fd5b50610662610d67565b60405161066f9190611de0565b60405180910390f35b34801561068457600080fd5b5061068d610d6d565b60405161069a9190611de0565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190611cfd565b610d73565b005b3480156106d857600080fd5b506106f360048036038101906106ee91906120bb565b610d85565b6040516107009190611de0565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190611d2a565b610e0c565b005b34801561073e57600080fd5b5061075960048036038101906107549190611cfd565b610e8f565b005b60606003805461076a9061212a565b80601f01602080910402602001604051908101604052809291908181526020018280546107969061212a565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b6000806107f8610ea1565b9050610805818585610ea9565b600191505092915050565b610818611072565b80600a8190555050565b61082a611072565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6108a6611072565b8060098190555050565b6000806108bb610ea1565b90506108c88582856110f0565b6108d385858561117c565b60019150509392505050565b600a5481565b60006012905090565b6000806108f9610ea1565b905061091a81858561090b8589610d85565b610915919061218a565b610ea9565b600191505092915050565b61092d611072565b60005b82518110156109bd5781600c6000858481518110610951576109506121be565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109b5906121ed565b915050610930565b505050565b6109cc3382611606565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b610a25611072565b610a2d6117d3565b565b60085481565b610a3d611072565b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610aa69061212a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad29061212a565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b600080610b54610ea1565b90506000610b628286610d85565b905083811015610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e906122a7565b60405180910390fd5b610bb48286868403610ea9565b60019250505092915050565b600754341115610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612313565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c889061237f565b60405180910390fd5b6000610c9b6108e5565b600a610ca791906124d2565b600a5434610cb5919061251d565b610cbf919061258e565b9050610ccc30338361117c565b6000606460085483610cde919061251d565b610ce8919061258e565b90506000606460095484610cfc919061251d565b610d06919061258e565b9050610d3530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846117e7565b610d3f3082611606565b505050565b600080610d4f610ea1565b9050610d5c81858561117c565b600191505092915050565b600b5481565b60095481565b610d7b611072565b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e14611072565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90612631565b60405180910390fd5b610e8c81611a5d565b50565b610e97611072565b8060078190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906126c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612755565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110659190611de0565b60405180910390a3505050565b61107a610ea1565b73ffffffffffffffffffffffffffffffffffffffff16611098610a47565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5906127c1565b60405180910390fd5b565b60006110fc8484610d85565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111765781811015611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061282d565b60405180910390fd5b6111758484848403610ea9565b5b50505050565b600b548111156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612899565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561122b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561126357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561160157600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461135c5760006064600854836112cf919061251d565b6112d9919061258e565b905060006064600954846112ed919061251d565b6112f7919061258e565b905061132685600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846117e7565b6113318530836117e7565b808261133d919061218a565b8361134891906128b9565b92506113558585856117e7565b5050611600565b6113678383836117e7565b6000600267ffffffffffffffff81111561138457611383611e8a565b5b6040519080825280602002602001820160405280156113b25781602001602082028036833780820191505090505b50905030816000815181106113ca576113c96121be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611471573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114959190612902565b816001815181106114a9576114a86121be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006064600854846114f5919061251d565b6114ff919061258e565b905061152d600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826107ed565b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe582600085600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016115b4959493929190612a49565b6000604051808303816000875af11580156115d3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115fc9190612b7b565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612c36565b60405180910390fd5b61168182600083611b23565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90612cc8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ba9190611de0565b60405180910390a36117ce83600084611b28565b505050565b6117db611072565b6117e56000611a5d565b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90612d5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90612dec565b60405180910390fd5b6118d0838383611b23565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612e7e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a449190611de0565b60405180910390a3611a57848484611b28565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b67578082015181840152602081019050611b4c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b8f82611b2d565b611b998185611b38565b9350611ba9818560208601611b49565b611bb281611b73565b840191505092915050565b60006020820190508181036000830152611bd78184611b84565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c1e82611bf3565b9050919050565b611c2e81611c13565b8114611c3957600080fd5b50565b600081359050611c4b81611c25565b92915050565b6000819050919050565b611c6481611c51565b8114611c6f57600080fd5b50565b600081359050611c8181611c5b565b92915050565b60008060408385031215611c9e57611c9d611be9565b5b6000611cac85828601611c3c565b9250506020611cbd85828601611c72565b9150509250929050565b60008115159050919050565b611cdc81611cc7565b82525050565b6000602082019050611cf76000830184611cd3565b92915050565b600060208284031215611d1357611d12611be9565b5b6000611d2184828501611c72565b91505092915050565b600060208284031215611d4057611d3f611be9565b5b6000611d4e84828501611c3c565b91505092915050565b6000819050919050565b6000611d7c611d77611d7284611bf3565b611d57565b611bf3565b9050919050565b6000611d8e82611d61565b9050919050565b6000611da082611d83565b9050919050565b611db081611d95565b82525050565b6000602082019050611dcb6000830184611da7565b92915050565b611dda81611c51565b82525050565b6000602082019050611df56000830184611dd1565b92915050565b600080600060608486031215611e1457611e13611be9565b5b6000611e2286828701611c3c565b9350506020611e3386828701611c3c565b9250506040611e4486828701611c72565b9150509250925092565b600060ff82169050919050565b611e6481611e4e565b82525050565b6000602082019050611e7f6000830184611e5b565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ec282611b73565b810181811067ffffffffffffffff82111715611ee157611ee0611e8a565b5b80604052505050565b6000611ef4611bdf565b9050611f008282611eb9565b919050565b600067ffffffffffffffff821115611f2057611f1f611e8a565b5b602082029050602081019050919050565b600080fd5b6000611f49611f4484611f05565b611eea565b90508083825260208201905060208402830185811115611f6c57611f6b611f31565b5b835b81811015611f955780611f818882611c3c565b845260208401935050602081019050611f6e565b5050509392505050565b600082601f830112611fb457611fb3611e85565b5b8135611fc4848260208601611f36565b91505092915050565b611fd681611cc7565b8114611fe157600080fd5b50565b600081359050611ff381611fcd565b92915050565b600080604083850312156120105761200f611be9565b5b600083013567ffffffffffffffff81111561202e5761202d611bee565b5b61203a85828601611f9f565b925050602061204b85828601611fe4565b9150509250929050565b61205e81611c13565b82525050565b60006020820190506120796000830184612055565b92915050565b600061208a82611bf3565b9050919050565b61209a8161207f565b82525050565b60006020820190506120b56000830184612091565b92915050565b600080604083850312156120d2576120d1611be9565b5b60006120e085828601611c3c565b92505060206120f185828601611c3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061214257607f821691505b602082108103612155576121546120fb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061219582611c51565b91506121a083611c51565b92508282019050808211156121b8576121b761215b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006121f882611c51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361222a5761222961215b565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612291602583611b38565b915061229c82612235565b604082019050919050565b600060208201905081810360008301526122c081612284565b9050919050565b7f45786365656473206d617820627579206c696d69740000000000000000000000600082015250565b60006122fd601583611b38565b9150612308826122c7565b602082019050919050565b6000602082019050818103600083015261232c816122f0565b9050919050565b7f4275796572206e6f7420696e2077686974656c69737400000000000000000000600082015250565b6000612369601683611b38565b915061237482612333565b602082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156123f6578086048111156123d2576123d161215b565b5b60018516156123e15780820291505b80810290506123ef8561239f565b94506123b6565b94509492505050565b60008261240f57600190506124cb565b8161241d57600090506124cb565b8160018114612433576002811461243d5761246c565b60019150506124cb565b60ff84111561244f5761244e61215b565b5b8360020a9150848211156124665761246561215b565b5b506124cb565b5060208310610133831016604e8410600b84101617156124a15782820a90508381111561249c5761249b61215b565b5b6124cb565b6124ae84848460016123ac565b925090508184048111156124c5576124c461215b565b5b81810290505b9392505050565b60006124dd82611c51565b91506124e883611e4e565b92506125157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846123ff565b905092915050565b600061252882611c51565b915061253383611c51565b925082820261254181611c51565b915082820484148315176125585761255761215b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061259982611c51565b91506125a483611c51565b9250826125b4576125b361255f565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061261b602683611b38565b9150612626826125bf565b604082019050919050565b6000602082019050818103600083015261264a8161260e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126ad602483611b38565b91506126b882612651565b604082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061273f602283611b38565b915061274a826126e3565b604082019050919050565b6000602082019050818103600083015261276e81612732565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127ab602083611b38565b91506127b682612775565b602082019050919050565b600060208201905081810360008301526127da8161279e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612817601d83611b38565b9150612822826127e1565b602082019050919050565b600060208201905081810360008301526128468161280a565b9050919050565b7f45786365656473206d6178696d756d207472616e7366657220616d6f756e7400600082015250565b6000612883601f83611b38565b915061288e8261284d565b602082019050919050565b600060208201905081810360008301526128b281612876565b9050919050565b60006128c482611c51565b91506128cf83611c51565b92508282039050818111156128e7576128e661215b565b5b92915050565b6000815190506128fc81611c25565b92915050565b60006020828403121561291857612917611be9565b5b6000612926848285016128ed565b91505092915050565b6000819050919050565b600061295461294f61294a8461292f565b611d57565b611c51565b9050919050565b61296481612939565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61299f81611c13565b82525050565b60006129b18383612996565b60208301905092915050565b6000602082019050919050565b60006129d58261296a565b6129df8185612975565b93506129ea83612986565b8060005b83811015612a1b578151612a0288826129a5565b9750612a0d836129bd565b9250506001810190506129ee565b5085935050505092915050565b6000612a3382611d83565b9050919050565b612a4381612a28565b82525050565b600060a082019050612a5e6000830188611dd1565b612a6b602083018761295b565b8181036040830152612a7d81866129ca565b9050612a8c6060830185612a3a565b612a996080830184611dd1565b9695505050505050565b600067ffffffffffffffff821115612abe57612abd611e8a565b5b602082029050602081019050919050565b600081519050612ade81611c5b565b92915050565b6000612af7612af284612aa3565b611eea565b90508083825260208201905060208402830185811115612b1a57612b19611f31565b5b835b81811015612b435780612b2f8882612acf565b845260208401935050602081019050612b1c565b5050509392505050565b600082601f830112612b6257612b61611e85565b5b8151612b72848260208601612ae4565b91505092915050565b600060208284031215612b9157612b90611be9565b5b600082015167ffffffffffffffff811115612baf57612bae611bee565b5b612bbb84828501612b4d565b91505092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c20602183611b38565b9150612c2b82612bc4565b604082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb2602283611b38565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d44602583611b38565b9150612d4f82612ce8565b604082019050919050565b60006020820190508181036000830152612d7381612d37565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dd6602383611b38565b9150612de182612d7a565b604082019050919050565b60006020820190508181036000830152612e0581612dc9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e68602683611b38565b9150612e7382612e0c565b604082019050919050565b60006020820190508181036000830152612e9781612e5b565b905091905056fea264697066735822122033c8772a51b9889d58abfe5206cb77f4c490bca5dd09a8eb0963760b5a049c0764736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063a6f2ae3a11610095578063c6d69a3011610064578063c6d69a30146106a3578063dd62ed3e146106cc578063f2fde38b14610709578063f53bc83514610732576101d8565b8063a6f2ae3a14610606578063a9059cbb14610610578063a9e757231461064d578063bed9985014610678576101d8565b80638ea5220f116100d15780638ea5220f1461053657806395d89b41146105615780639b19251a1461058c578063a457c2d7146105c9576101d8565b8063715018a6146104a0578063771a3a1d146104b75780638bf55409146104e25780638da5cb5b1461050b576101d8565b806323b872dd1161017a5780633c271a05116101495780633c271a05146103e657806342966c681461040f57806370a082311461043857806370db69d614610475576101d8565b806323b872dd146103165780632456274714610353578063313ce5671461037e57806339509351146103a9576101d8565b80631419841d116101b65780631419841d1461026e5780631694505e1461029757806318160ddd146102c2578063189d165e146102ed576101d8565b806306fdde03146101dd578063095ea7b314610208578063116fb2a814610245575b600080fd5b3480156101e957600080fd5b506101f261075b565b6040516101ff9190611bbd565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a9190611c87565b6107ed565b60405161023c9190611ce2565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190611cfd565b610810565b005b34801561027a57600080fd5b5061029560048036038101906102909190611d2a565b610822565b005b3480156102a357600080fd5b506102ac61086e565b6040516102b99190611db6565b60405180910390f35b3480156102ce57600080fd5b506102d7610894565b6040516102e49190611de0565b60405180910390f35b3480156102f957600080fd5b50610314600480360381019061030f9190611cfd565b61089e565b005b34801561032257600080fd5b5061033d60048036038101906103389190611dfb565b6108b0565b60405161034a9190611ce2565b60405180910390f35b34801561035f57600080fd5b506103686108df565b6040516103759190611de0565b60405180910390f35b34801561038a57600080fd5b506103936108e5565b6040516103a09190611e6a565b60405180910390f35b3480156103b557600080fd5b506103d060048036038101906103cb9190611c87565b6108ee565b6040516103dd9190611ce2565b60405180910390f35b3480156103f257600080fd5b5061040d60048036038101906104089190611ff9565b610925565b005b34801561041b57600080fd5b5061043660048036038101906104319190611cfd565b6109c2565b005b34801561044457600080fd5b5061045f600480360381019061045a9190611d2a565b6109cf565b60405161046c9190611de0565b60405180910390f35b34801561048157600080fd5b5061048a610a17565b6040516104979190611de0565b60405180910390f35b3480156104ac57600080fd5b506104b5610a1d565b005b3480156104c357600080fd5b506104cc610a2f565b6040516104d99190611de0565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190611cfd565b610a35565b005b34801561051757600080fd5b50610520610a47565b60405161052d9190612064565b60405180910390f35b34801561054257600080fd5b5061054b610a71565b60405161055891906120a0565b60405180910390f35b34801561056d57600080fd5b50610576610a97565b6040516105839190611bbd565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae9190611d2a565b610b29565b6040516105c09190611ce2565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190611c87565b610b49565b6040516105fd9190611ce2565b60405180910390f35b61060e610bc0565b005b34801561061c57600080fd5b5061063760048036038101906106329190611c87565b610d44565b6040516106449190611ce2565b60405180910390f35b34801561065957600080fd5b50610662610d67565b60405161066f9190611de0565b60405180910390f35b34801561068457600080fd5b5061068d610d6d565b60405161069a9190611de0565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190611cfd565b610d73565b005b3480156106d857600080fd5b506106f360048036038101906106ee91906120bb565b610d85565b6040516107009190611de0565b60405180910390f35b34801561071557600080fd5b50610730600480360381019061072b9190611d2a565b610e0c565b005b34801561073e57600080fd5b5061075960048036038101906107549190611cfd565b610e8f565b005b60606003805461076a9061212a565b80601f01602080910402602001604051908101604052809291908181526020018280546107969061212a565b80156107e35780601f106107b8576101008083540402835291602001916107e3565b820191906000526020600020905b8154815290600101906020018083116107c657829003601f168201915b5050505050905090565b6000806107f8610ea1565b9050610805818585610ea9565b600191505092915050565b610818611072565b80600a8190555050565b61082a611072565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b6108a6611072565b8060098190555050565b6000806108bb610ea1565b90506108c88582856110f0565b6108d385858561117c565b60019150509392505050565b600a5481565b60006012905090565b6000806108f9610ea1565b905061091a81858561090b8589610d85565b610915919061218a565b610ea9565b600191505092915050565b61092d611072565b60005b82518110156109bd5781600c6000858481518110610951576109506121be565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806109b5906121ed565b915050610930565b505050565b6109cc3382611606565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b610a25611072565b610a2d6117d3565b565b60085481565b610a3d611072565b80600b8190555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610aa69061212a565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad29061212a565b8015610b1f5780601f10610af457610100808354040283529160200191610b1f565b820191906000526020600020905b815481529060010190602001808311610b0257829003601f168201915b5050505050905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b600080610b54610ea1565b90506000610b628286610d85565b905083811015610ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9e906122a7565b60405180910390fd5b610bb48286868403610ea9565b60019250505092915050565b600754341115610c05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfc90612313565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c889061237f565b60405180910390fd5b6000610c9b6108e5565b600a610ca791906124d2565b600a5434610cb5919061251d565b610cbf919061258e565b9050610ccc30338361117c565b6000606460085483610cde919061251d565b610ce8919061258e565b90506000606460095484610cfc919061251d565b610d06919061258e565b9050610d3530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846117e7565b610d3f3082611606565b505050565b600080610d4f610ea1565b9050610d5c81858561117c565b600191505092915050565b600b5481565b60095481565b610d7b611072565b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e14611072565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a90612631565b60405180910390fd5b610e8c81611a5d565b50565b610e97611072565b8060078190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0f906126c3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7e90612755565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110659190611de0565b60405180910390a3505050565b61107a610ea1565b73ffffffffffffffffffffffffffffffffffffffff16611098610a47565b73ffffffffffffffffffffffffffffffffffffffff16146110ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e5906127c1565b60405180910390fd5b565b60006110fc8484610d85565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111765781811015611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f9061282d565b60405180910390fd5b6111758484848403610ea9565b5b50505050565b600b548111156111c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b890612899565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561122b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561126357503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561160157600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461135c5760006064600854836112cf919061251d565b6112d9919061258e565b905060006064600954846112ed919061251d565b6112f7919061258e565b905061132685600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846117e7565b6113318530836117e7565b808261133d919061218a565b8361134891906128b9565b92506113558585856117e7565b5050611600565b6113678383836117e7565b6000600267ffffffffffffffff81111561138457611383611e8a565b5b6040519080825280602002602001820160405280156113b25781602001602082028036833780820191505090505b50905030816000815181106113ca576113c96121be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611471573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114959190612902565b816001815181106114a9576114a86121be565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060006064600854846114f5919061251d565b6114ff919061258e565b905061152d600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826107ed565b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318cbafe582600085600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b81526004016115b4959493929190612a49565b6000604051808303816000875af11580156115d3573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906115fc9190612b7b565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611675576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166c90612c36565b60405180910390fd5b61168182600083611b23565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611707576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fe90612cc8565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117ba9190611de0565b60405180910390a36117ce83600084611b28565b505050565b6117db611072565b6117e56000611a5d565b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90612d5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bc90612dec565b60405180910390fd5b6118d0838383611b23565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d90612e7e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a449190611de0565b60405180910390a3611a57848484611b28565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611b67578082015181840152602081019050611b4c565b60008484015250505050565b6000601f19601f8301169050919050565b6000611b8f82611b2d565b611b998185611b38565b9350611ba9818560208601611b49565b611bb281611b73565b840191505092915050565b60006020820190508181036000830152611bd78184611b84565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611c1e82611bf3565b9050919050565b611c2e81611c13565b8114611c3957600080fd5b50565b600081359050611c4b81611c25565b92915050565b6000819050919050565b611c6481611c51565b8114611c6f57600080fd5b50565b600081359050611c8181611c5b565b92915050565b60008060408385031215611c9e57611c9d611be9565b5b6000611cac85828601611c3c565b9250506020611cbd85828601611c72565b9150509250929050565b60008115159050919050565b611cdc81611cc7565b82525050565b6000602082019050611cf76000830184611cd3565b92915050565b600060208284031215611d1357611d12611be9565b5b6000611d2184828501611c72565b91505092915050565b600060208284031215611d4057611d3f611be9565b5b6000611d4e84828501611c3c565b91505092915050565b6000819050919050565b6000611d7c611d77611d7284611bf3565b611d57565b611bf3565b9050919050565b6000611d8e82611d61565b9050919050565b6000611da082611d83565b9050919050565b611db081611d95565b82525050565b6000602082019050611dcb6000830184611da7565b92915050565b611dda81611c51565b82525050565b6000602082019050611df56000830184611dd1565b92915050565b600080600060608486031215611e1457611e13611be9565b5b6000611e2286828701611c3c565b9350506020611e3386828701611c3c565b9250506040611e4486828701611c72565b9150509250925092565b600060ff82169050919050565b611e6481611e4e565b82525050565b6000602082019050611e7f6000830184611e5b565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ec282611b73565b810181811067ffffffffffffffff82111715611ee157611ee0611e8a565b5b80604052505050565b6000611ef4611bdf565b9050611f008282611eb9565b919050565b600067ffffffffffffffff821115611f2057611f1f611e8a565b5b602082029050602081019050919050565b600080fd5b6000611f49611f4484611f05565b611eea565b90508083825260208201905060208402830185811115611f6c57611f6b611f31565b5b835b81811015611f955780611f818882611c3c565b845260208401935050602081019050611f6e565b5050509392505050565b600082601f830112611fb457611fb3611e85565b5b8135611fc4848260208601611f36565b91505092915050565b611fd681611cc7565b8114611fe157600080fd5b50565b600081359050611ff381611fcd565b92915050565b600080604083850312156120105761200f611be9565b5b600083013567ffffffffffffffff81111561202e5761202d611bee565b5b61203a85828601611f9f565b925050602061204b85828601611fe4565b9150509250929050565b61205e81611c13565b82525050565b60006020820190506120796000830184612055565b92915050565b600061208a82611bf3565b9050919050565b61209a8161207f565b82525050565b60006020820190506120b56000830184612091565b92915050565b600080604083850312156120d2576120d1611be9565b5b60006120e085828601611c3c565b92505060206120f185828601611c3c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061214257607f821691505b602082108103612155576121546120fb565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061219582611c51565b91506121a083611c51565b92508282019050808211156121b8576121b761215b565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006121f882611c51565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361222a5761222961215b565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612291602583611b38565b915061229c82612235565b604082019050919050565b600060208201905081810360008301526122c081612284565b9050919050565b7f45786365656473206d617820627579206c696d69740000000000000000000000600082015250565b60006122fd601583611b38565b9150612308826122c7565b602082019050919050565b6000602082019050818103600083015261232c816122f0565b9050919050565b7f4275796572206e6f7420696e2077686974656c69737400000000000000000000600082015250565b6000612369601683611b38565b915061237482612333565b602082019050919050565b600060208201905081810360008301526123988161235c565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156123f6578086048111156123d2576123d161215b565b5b60018516156123e15780820291505b80810290506123ef8561239f565b94506123b6565b94509492505050565b60008261240f57600190506124cb565b8161241d57600090506124cb565b8160018114612433576002811461243d5761246c565b60019150506124cb565b60ff84111561244f5761244e61215b565b5b8360020a9150848211156124665761246561215b565b5b506124cb565b5060208310610133831016604e8410600b84101617156124a15782820a90508381111561249c5761249b61215b565b5b6124cb565b6124ae84848460016123ac565b925090508184048111156124c5576124c461215b565b5b81810290505b9392505050565b60006124dd82611c51565b91506124e883611e4e565b92506125157fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846123ff565b905092915050565b600061252882611c51565b915061253383611c51565b925082820261254181611c51565b915082820484148315176125585761255761215b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061259982611c51565b91506125a483611c51565b9250826125b4576125b361255f565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061261b602683611b38565b9150612626826125bf565b604082019050919050565b6000602082019050818103600083015261264a8161260e565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006126ad602483611b38565b91506126b882612651565b604082019050919050565b600060208201905081810360008301526126dc816126a0565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061273f602283611b38565b915061274a826126e3565b604082019050919050565b6000602082019050818103600083015261276e81612732565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127ab602083611b38565b91506127b682612775565b602082019050919050565b600060208201905081810360008301526127da8161279e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612817601d83611b38565b9150612822826127e1565b602082019050919050565b600060208201905081810360008301526128468161280a565b9050919050565b7f45786365656473206d6178696d756d207472616e7366657220616d6f756e7400600082015250565b6000612883601f83611b38565b915061288e8261284d565b602082019050919050565b600060208201905081810360008301526128b281612876565b9050919050565b60006128c482611c51565b91506128cf83611c51565b92508282039050818111156128e7576128e661215b565b5b92915050565b6000815190506128fc81611c25565b92915050565b60006020828403121561291857612917611be9565b5b6000612926848285016128ed565b91505092915050565b6000819050919050565b600061295461294f61294a8461292f565b611d57565b611c51565b9050919050565b61296481612939565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61299f81611c13565b82525050565b60006129b18383612996565b60208301905092915050565b6000602082019050919050565b60006129d58261296a565b6129df8185612975565b93506129ea83612986565b8060005b83811015612a1b578151612a0288826129a5565b9750612a0d836129bd565b9250506001810190506129ee565b5085935050505092915050565b6000612a3382611d83565b9050919050565b612a4381612a28565b82525050565b600060a082019050612a5e6000830188611dd1565b612a6b602083018761295b565b8181036040830152612a7d81866129ca565b9050612a8c6060830185612a3a565b612a996080830184611dd1565b9695505050505050565b600067ffffffffffffffff821115612abe57612abd611e8a565b5b602082029050602081019050919050565b600081519050612ade81611c5b565b92915050565b6000612af7612af284612aa3565b611eea565b90508083825260208201905060208402830185811115612b1a57612b19611f31565b5b835b81811015612b435780612b2f8882612acf565b845260208401935050602081019050612b1c565b5050509392505050565b600082601f830112612b6257612b61611e85565b5b8151612b72848260208601612ae4565b91505092915050565b600060208284031215612b9157612b90611be9565b5b600082015167ffffffffffffffff811115612baf57612bae611bee565b5b612bbb84828501612b4d565b91505092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c20602183611b38565b9150612c2b82612bc4565b604082019050919050565b60006020820190508181036000830152612c4f81612c13565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb2602283611b38565b9150612cbd82612c56565b604082019050919050565b60006020820190508181036000830152612ce181612ca5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d44602583611b38565b9150612d4f82612ce8565b604082019050919050565b60006020820190508181036000830152612d7381612d37565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612dd6602383611b38565b9150612de182612d7a565b604082019050919050565b60006020820190508181036000830152612e0581612dc9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612e68602683611b38565b9150612e7382612e0c565b604082019050919050565b60006020820190508181036000830152612e9781612e5b565b905091905056fea264697066735822122033c8772a51b9889d58abfe5206cb77f4c490bca5dd09a8eb0963760b5a049c0764736f6c63430008120033
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.