Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
MEME
Overview
Max Total Supply
469,000,000 $PEPEINU
Holders
612 ( -0.163%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
322,015.635927698193987724 $PEPEINUValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PepeInu
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; } // 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; } } // 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); } } // 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); } // 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); } // 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: Pepe Inu.sol pragma solidity ^0.8.0; contract PepeInu is ERC20, Ownable { address payable public devWallet; uint256 public maxBuy; uint256 public taxRate = 5; // 5% tax rate uint256 public burnRate = 0; // 0% burn rate uint256 public tokensPerETH = 1000; // default rate is 1000 $PEPEINU per ETH mapping(address => bool) public whitelist; IUniswapV2Router02 public uniswapV2Router; constructor() ERC20("Pepe Inu", "$PEPEINU") { 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 = (msg.value * taxRate) / 100; uint256 burnAmount = (tokens * burnRate) / 100; devWallet.transfer(taxAmount); _burn(address(this), burnAmount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual override { if (sender != address(0) && recipient == address(uniswapV2Router)) { uint256 taxAmount = (amount * taxRate) / 100; uint256 burnAmount = (amount * burnRate) / 100; super._transfer(sender, address(this), taxAmount + burnAmount); amount -= taxAmount + burnAmount; } super._transfer(sender, recipient, amount); } function burn(uint256 amount) public { _burn(msg.sender, amount); } 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 { devWallet = payable(address(0)); 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":"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":"_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
6080604052600560085560006009556103e8600a553480156200002157600080fd5b506040518060400160405280600881526020017f5065706520496e750000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f2450455045494e5500000000000000000000000000000000000000000000000081525081600390816200009f919062000632565b508060049081620000b1919062000632565b505050620000d4620000c86200016a60201b60201c565b6200017260201b60201c565b33600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506706f05b59d3b200006007819055506200016433620001396200023860201b60201c565b600a620001479190620008a9565b631bf45f40620001589190620008fa565b6200024160201b60201c565b62000a31565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002aa90620009a6565b60405180910390fd5b620002c760008383620003ae60201b60201c565b8060026000828254620002db9190620009c8565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038e919062000a14565b60405180910390a3620003aa60008383620003b360201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200043a57607f821691505b60208210810362000450576200044f620003f2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200047b565b620004c686836200047b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005136200050d6200050784620004de565b620004e8565b620004de565b9050919050565b6000819050919050565b6200052f83620004f2565b620005476200053e826200051a565b84845462000488565b825550505050565b600090565b6200055e6200054f565b6200056b81848462000524565b505050565b5b8181101562000593576200058760008262000554565b60018101905062000571565b5050565b601f821115620005e257620005ac8162000456565b620005b7846200046b565b81016020851015620005c7578190505b620005df620005d6856200046b565b83018262000570565b50505b505050565b600082821c905092915050565b60006200060760001984600802620005e7565b1980831691505092915050565b6000620006228383620005f4565b9150826002028217905092915050565b6200063d82620003b8565b67ffffffffffffffff811115620006595762000658620003c3565b5b62000665825462000421565b6200067282828562000597565b600060209050601f831160018114620006aa576000841562000695578287015190505b620006a1858262000614565b86555062000711565b601f198416620006ba8662000456565b60005b82811015620006e457848901518255600182019150602085019450602081019050620006bd565b8683101562000704578489015162000700601f891682620005f4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620007a7578086048111156200077f576200077e62000719565b5b60018516156200078f5780820291505b80810290506200079f8562000748565b94506200075f565b94509492505050565b600082620007c2576001905062000895565b81620007d2576000905062000895565b8160018114620007eb5760028114620007f6576200082c565b600191505062000895565b60ff8411156200080b576200080a62000719565b5b8360020a91508482111562000825576200082462000719565b5b5062000895565b5060208310610133831016604e8410600b8410161715620008665782820a90508381111562000860576200085f62000719565b5b62000895565b62000875848484600162000755565b925090508184048111156200088f576200088e62000719565b5b81810290505b9392505050565b600060ff82169050919050565b6000620008b682620004de565b9150620008c3836200089c565b9250620008f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620007b0565b905092915050565b60006200090782620004de565b91506200091483620004de565b92508282026200092481620004de565b915082820484148315176200093e576200093d62000719565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60006200098e601f8362000945565b91506200099b8262000956565b602082019050919050565b60006020820190508181036000830152620009c1816200097f565b9050919050565b6000620009d582620004de565b9150620009e283620004de565b9250828201905080821115620009fd57620009fc62000719565b5b92915050565b62000a0e81620004de565b82525050565b600060208201905062000a2b600083018462000a03565b92915050565b6128108062000a416000396000f3fe6080604052600436106101c25760003560e01c806370db69d6116100f7578063a457c2d711610095578063c6d69a3011610064578063c6d69a3014610639578063dd62ed3e14610662578063f2fde38b1461069f578063f53bc835146106c8576101c2565b8063a457c2d71461058a578063a6f2ae3a146105c7578063a9059cbb146105d1578063bed998501461060e576101c2565b80638da5cb5b116100d15780638da5cb5b146104cc5780638ea5220f146104f757806395d89b41146105225780639b19251a1461054d576101c2565b806370db69d61461045f578063715018a61461048a578063771a3a1d146104a1576101c2565b806323b872dd11610164578063395093511161013e57806339509351146103935780633c271a05146103d057806342966c68146103f957806370a0823114610422576101c2565b806323b872dd14610300578063245627471461033d578063313ce56714610368576101c2565b80631419841d116101a05780631419841d146102585780631694505e1461028157806318160ddd146102ac578063189d165e146102d7576101c2565b806306fdde03146101c7578063095ea7b3146101f2578063116fb2a81461022f575b600080fd5b3480156101d357600080fd5b506101dc6106f1565b6040516101e9919061183c565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190611906565b610783565b6040516102269190611961565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061197c565b6107a6565b005b34801561026457600080fd5b5061027f600480360381019061027a91906119a9565b6107b8565b005b34801561028d57600080fd5b50610296610804565b6040516102a39190611a35565b60405180910390f35b3480156102b857600080fd5b506102c161082a565b6040516102ce9190611a5f565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061197c565b610834565b005b34801561030c57600080fd5b5061032760048036038101906103229190611a7a565b610846565b6040516103349190611961565b60405180910390f35b34801561034957600080fd5b50610352610875565b60405161035f9190611a5f565b60405180910390f35b34801561037457600080fd5b5061037d61087b565b60405161038a9190611ae9565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190611906565b610884565b6040516103c79190611961565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190611c78565b6108bb565b005b34801561040557600080fd5b50610420600480360381019061041b919061197c565b610958565b005b34801561042e57600080fd5b50610449600480360381019061044491906119a9565b610965565b6040516104569190611a5f565b60405180910390f35b34801561046b57600080fd5b506104746109ad565b6040516104819190611a5f565b60405180910390f35b34801561049657600080fd5b5061049f6109b3565b005b3480156104ad57600080fd5b506104b6610a07565b6040516104c39190611a5f565b60405180910390f35b3480156104d857600080fd5b506104e1610a0d565b6040516104ee9190611ce3565b60405180910390f35b34801561050357600080fd5b5061050c610a37565b6040516105199190611d1f565b60405180910390f35b34801561052e57600080fd5b50610537610a5d565b604051610544919061183c565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f91906119a9565b610aef565b6040516105819190611961565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190611906565b610b0f565b6040516105be9190611961565b60405180910390f35b6105cf610b86565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190611906565b610d46565b6040516106059190611961565b60405180910390f35b34801561061a57600080fd5b50610623610d69565b6040516106309190611a5f565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b919061197c565b610d6f565b005b34801561066e57600080fd5b5061068960048036038101906106849190611d3a565b610d81565b6040516106969190611a5f565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906119a9565b610e08565b005b3480156106d457600080fd5b506106ef60048036038101906106ea919061197c565b610e8b565b005b60606003805461070090611da9565b80601f016020809104026020016040519081016040528092919081815260200182805461072c90611da9565b80156107795780601f1061074e57610100808354040283529160200191610779565b820191906000526020600020905b81548152906001019060200180831161075c57829003601f168201915b5050505050905090565b60008061078e610e9d565b905061079b818585610ea5565b600191505092915050565b6107ae61106e565b80600a8190555050565b6107c061106e565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61083c61106e565b8060098190555050565b600080610851610e9d565b905061085e8582856110ec565b610869858585611178565b60019150509392505050565b600a5481565b60006012905090565b60008061088f610e9d565b90506108b08185856108a18589610d81565b6108ab9190611e09565b610ea5565b600191505092915050565b6108c361106e565b60005b82518110156109535781600b60008584815181106108e7576108e6611e3d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061094b90611e6c565b9150506108c6565b505050565b6109623382611285565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b6109bb61106e565b6000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a05611452565b565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610a6c90611da9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9890611da9565b8015610ae55780601f10610aba57610100808354040283529160200191610ae5565b820191906000526020600020905b815481529060010190602001808311610ac857829003601f168201915b5050505050905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b600080610b1a610e9d565b90506000610b288286610d81565b905083811015610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611f26565b60405180910390fd5b610b7a8286868403610ea5565b60019250505092915050565b600754341115610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611f92565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90611ffe565b60405180910390fd5b6000610c6161087b565b600a610c6d9190612151565b600a5434610c7b919061219c565b610c85919061220d565b9050610c92303383611178565b6000606460085434610ca4919061219c565b610cae919061220d565b90506000606460095484610cc2919061219c565b610ccc919061220d565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610d36573d6000803e3d6000fd5b50610d413082611285565b505050565b600080610d51610e9d565b9050610d5e818585611178565b600191505092915050565b60095481565b610d7761106e565b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e1061106e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e76906122b0565b60405180910390fd5b610e8881611466565b50565b610e9361106e565b8060078190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90612342565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906123d4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110619190611a5f565b60405180910390a3505050565b611076610e9d565b73ffffffffffffffffffffffffffffffffffffffff16611094610a0d565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612440565b60405180910390fd5b565b60006110f88484610d81565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111725781811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906124ac565b60405180910390fd5b6111718484848403610ea5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112025750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611275576000606460085483611219919061219c565b611223919061220d565b90506000606460095484611237919061219c565b611241919061220d565b9050611259853083856112549190611e09565b61152c565b80826112659190611e09565b8361127091906124cc565b925050505b61128083838361152c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612572565b60405180910390fd5b611300826000836117a2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612604565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114399190611a5f565b60405180910390a361144d836000846117a7565b505050565b61145a61106e565b6114646000611466565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612696565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190612728565b60405180910390fd5b6116158383836117a2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906127ba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117899190611a5f565b60405180910390a361179c8484846117a7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117e65780820151818401526020810190506117cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061180e826117ac565b61181881856117b7565b93506118288185602086016117c8565b611831816117f2565b840191505092915050565b600060208201905081810360008301526118568184611803565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061189d82611872565b9050919050565b6118ad81611892565b81146118b857600080fd5b50565b6000813590506118ca816118a4565b92915050565b6000819050919050565b6118e3816118d0565b81146118ee57600080fd5b50565b600081359050611900816118da565b92915050565b6000806040838503121561191d5761191c611868565b5b600061192b858286016118bb565b925050602061193c858286016118f1565b9150509250929050565b60008115159050919050565b61195b81611946565b82525050565b60006020820190506119766000830184611952565b92915050565b60006020828403121561199257611991611868565b5b60006119a0848285016118f1565b91505092915050565b6000602082840312156119bf576119be611868565b5b60006119cd848285016118bb565b91505092915050565b6000819050919050565b60006119fb6119f66119f184611872565b6119d6565b611872565b9050919050565b6000611a0d826119e0565b9050919050565b6000611a1f82611a02565b9050919050565b611a2f81611a14565b82525050565b6000602082019050611a4a6000830184611a26565b92915050565b611a59816118d0565b82525050565b6000602082019050611a746000830184611a50565b92915050565b600080600060608486031215611a9357611a92611868565b5b6000611aa1868287016118bb565b9350506020611ab2868287016118bb565b9250506040611ac3868287016118f1565b9150509250925092565b600060ff82169050919050565b611ae381611acd565b82525050565b6000602082019050611afe6000830184611ada565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611b41826117f2565b810181811067ffffffffffffffff82111715611b6057611b5f611b09565b5b80604052505050565b6000611b7361185e565b9050611b7f8282611b38565b919050565b600067ffffffffffffffff821115611b9f57611b9e611b09565b5b602082029050602081019050919050565b600080fd5b6000611bc8611bc384611b84565b611b69565b90508083825260208201905060208402830185811115611beb57611bea611bb0565b5b835b81811015611c145780611c0088826118bb565b845260208401935050602081019050611bed565b5050509392505050565b600082601f830112611c3357611c32611b04565b5b8135611c43848260208601611bb5565b91505092915050565b611c5581611946565b8114611c6057600080fd5b50565b600081359050611c7281611c4c565b92915050565b60008060408385031215611c8f57611c8e611868565b5b600083013567ffffffffffffffff811115611cad57611cac61186d565b5b611cb985828601611c1e565b9250506020611cca85828601611c63565b9150509250929050565b611cdd81611892565b82525050565b6000602082019050611cf86000830184611cd4565b92915050565b6000611d0982611872565b9050919050565b611d1981611cfe565b82525050565b6000602082019050611d346000830184611d10565b92915050565b60008060408385031215611d5157611d50611868565b5b6000611d5f858286016118bb565b9250506020611d70858286016118bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dc157607f821691505b602082108103611dd457611dd3611d7a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e14826118d0565b9150611e1f836118d0565b9250828201905080821115611e3757611e36611dda565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611e77826118d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ea957611ea8611dda565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f106025836117b7565b9150611f1b82611eb4565b604082019050919050565b60006020820190508181036000830152611f3f81611f03565b9050919050565b7f45786365656473206d617820627579206c696d69740000000000000000000000600082015250565b6000611f7c6015836117b7565b9150611f8782611f46565b602082019050919050565b60006020820190508181036000830152611fab81611f6f565b9050919050565b7f4275796572206e6f7420696e2077686974656c69737400000000000000000000600082015250565b6000611fe86016836117b7565b9150611ff382611fb2565b602082019050919050565b6000602082019050818103600083015261201781611fdb565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156120755780860481111561205157612050611dda565b5b60018516156120605780820291505b808102905061206e8561201e565b9450612035565b94509492505050565b60008261208e576001905061214a565b8161209c576000905061214a565b81600181146120b257600281146120bc576120eb565b600191505061214a565b60ff8411156120ce576120cd611dda565b5b8360020a9150848211156120e5576120e4611dda565b5b5061214a565b5060208310610133831016604e8410600b84101617156121205782820a90508381111561211b5761211a611dda565b5b61214a565b61212d848484600161202b565b9250905081840481111561214457612143611dda565b5b81810290505b9392505050565b600061215c826118d0565b915061216783611acd565b92506121947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461207e565b905092915050565b60006121a7826118d0565b91506121b2836118d0565b92508282026121c0816118d0565b915082820484148315176121d7576121d6611dda565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612218826118d0565b9150612223836118d0565b925082612233576122326121de565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061229a6026836117b7565b91506122a58261223e565b604082019050919050565b600060208201905081810360008301526122c98161228d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061232c6024836117b7565b9150612337826122d0565b604082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123be6022836117b7565b91506123c982612362565b604082019050919050565b600060208201905081810360008301526123ed816123b1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061242a6020836117b7565b9150612435826123f4565b602082019050919050565b600060208201905081810360008301526124598161241d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612496601d836117b7565b91506124a182612460565b602082019050919050565b600060208201905081810360008301526124c581612489565b9050919050565b60006124d7826118d0565b91506124e2836118d0565b92508282039050818111156124fa576124f9611dda565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061255c6021836117b7565b915061256782612500565b604082019050919050565b6000602082019050818103600083015261258b8161254f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006125ee6022836117b7565b91506125f982612592565b604082019050919050565b6000602082019050818103600083015261261d816125e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126806025836117b7565b915061268b82612624565b604082019050919050565b600060208201905081810360008301526126af81612673565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127126023836117b7565b915061271d826126b6565b604082019050919050565b6000602082019050818103600083015261274181612705565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127a46026836117b7565b91506127af82612748565b604082019050919050565b600060208201905081810360008301526127d381612797565b905091905056fea2646970667358221220bb88e8576dbf1047bc796bc0e73b713aecf3733f145ef7fa344617d08974e1d264736f6c63430008120033
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370db69d6116100f7578063a457c2d711610095578063c6d69a3011610064578063c6d69a3014610639578063dd62ed3e14610662578063f2fde38b1461069f578063f53bc835146106c8576101c2565b8063a457c2d71461058a578063a6f2ae3a146105c7578063a9059cbb146105d1578063bed998501461060e576101c2565b80638da5cb5b116100d15780638da5cb5b146104cc5780638ea5220f146104f757806395d89b41146105225780639b19251a1461054d576101c2565b806370db69d61461045f578063715018a61461048a578063771a3a1d146104a1576101c2565b806323b872dd11610164578063395093511161013e57806339509351146103935780633c271a05146103d057806342966c68146103f957806370a0823114610422576101c2565b806323b872dd14610300578063245627471461033d578063313ce56714610368576101c2565b80631419841d116101a05780631419841d146102585780631694505e1461028157806318160ddd146102ac578063189d165e146102d7576101c2565b806306fdde03146101c7578063095ea7b3146101f2578063116fb2a81461022f575b600080fd5b3480156101d357600080fd5b506101dc6106f1565b6040516101e9919061183c565b60405180910390f35b3480156101fe57600080fd5b5061021960048036038101906102149190611906565b610783565b6040516102269190611961565b60405180910390f35b34801561023b57600080fd5b506102566004803603810190610251919061197c565b6107a6565b005b34801561026457600080fd5b5061027f600480360381019061027a91906119a9565b6107b8565b005b34801561028d57600080fd5b50610296610804565b6040516102a39190611a35565b60405180910390f35b3480156102b857600080fd5b506102c161082a565b6040516102ce9190611a5f565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f9919061197c565b610834565b005b34801561030c57600080fd5b5061032760048036038101906103229190611a7a565b610846565b6040516103349190611961565b60405180910390f35b34801561034957600080fd5b50610352610875565b60405161035f9190611a5f565b60405180910390f35b34801561037457600080fd5b5061037d61087b565b60405161038a9190611ae9565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190611906565b610884565b6040516103c79190611961565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190611c78565b6108bb565b005b34801561040557600080fd5b50610420600480360381019061041b919061197c565b610958565b005b34801561042e57600080fd5b50610449600480360381019061044491906119a9565b610965565b6040516104569190611a5f565b60405180910390f35b34801561046b57600080fd5b506104746109ad565b6040516104819190611a5f565b60405180910390f35b34801561049657600080fd5b5061049f6109b3565b005b3480156104ad57600080fd5b506104b6610a07565b6040516104c39190611a5f565b60405180910390f35b3480156104d857600080fd5b506104e1610a0d565b6040516104ee9190611ce3565b60405180910390f35b34801561050357600080fd5b5061050c610a37565b6040516105199190611d1f565b60405180910390f35b34801561052e57600080fd5b50610537610a5d565b604051610544919061183c565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f91906119a9565b610aef565b6040516105819190611961565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190611906565b610b0f565b6040516105be9190611961565b60405180910390f35b6105cf610b86565b005b3480156105dd57600080fd5b506105f860048036038101906105f39190611906565b610d46565b6040516106059190611961565b60405180910390f35b34801561061a57600080fd5b50610623610d69565b6040516106309190611a5f565b60405180910390f35b34801561064557600080fd5b50610660600480360381019061065b919061197c565b610d6f565b005b34801561066e57600080fd5b5061068960048036038101906106849190611d3a565b610d81565b6040516106969190611a5f565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906119a9565b610e08565b005b3480156106d457600080fd5b506106ef60048036038101906106ea919061197c565b610e8b565b005b60606003805461070090611da9565b80601f016020809104026020016040519081016040528092919081815260200182805461072c90611da9565b80156107795780601f1061074e57610100808354040283529160200191610779565b820191906000526020600020905b81548152906001019060200180831161075c57829003601f168201915b5050505050905090565b60008061078e610e9d565b905061079b818585610ea5565b600191505092915050565b6107ae61106e565b80600a8190555050565b6107c061106e565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b61083c61106e565b8060098190555050565b600080610851610e9d565b905061085e8582856110ec565b610869858585611178565b60019150509392505050565b600a5481565b60006012905090565b60008061088f610e9d565b90506108b08185856108a18589610d81565b6108ab9190611e09565b610ea5565b600191505092915050565b6108c361106e565b60005b82518110156109535781600b60008584815181106108e7576108e6611e3d565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061094b90611e6c565b9150506108c6565b505050565b6109623382611285565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60075481565b6109bb61106e565b6000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610a05611452565b565b60085481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060048054610a6c90611da9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a9890611da9565b8015610ae55780601f10610aba57610100808354040283529160200191610ae5565b820191906000526020600020905b815481529060010190602001808311610ac857829003601f168201915b5050505050905090565b600b6020528060005260406000206000915054906101000a900460ff1681565b600080610b1a610e9d565b90506000610b288286610d81565b905083811015610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490611f26565b60405180910390fd5b610b7a8286868403610ea5565b60019250505092915050565b600754341115610bcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc290611f92565b60405180910390fd5b600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610c57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4e90611ffe565b60405180910390fd5b6000610c6161087b565b600a610c6d9190612151565b600a5434610c7b919061219c565b610c85919061220d565b9050610c92303383611178565b6000606460085434610ca4919061219c565b610cae919061220d565b90506000606460095484610cc2919061219c565b610ccc919061220d565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015610d36573d6000803e3d6000fd5b50610d413082611285565b505050565b600080610d51610e9d565b9050610d5e818585611178565b600191505092915050565b60095481565b610d7761106e565b8060088190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e1061106e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e76906122b0565b60405180910390fd5b610e8881611466565b50565b610e9361106e565b8060078190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0b90612342565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7a906123d4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110619190611a5f565b60405180910390a3505050565b611076610e9d565b73ffffffffffffffffffffffffffffffffffffffff16611094610a0d565b73ffffffffffffffffffffffffffffffffffffffff16146110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612440565b60405180910390fd5b565b60006110f88484610d81565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111725781811015611164576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115b906124ac565b60405180910390fd5b6111718484848403610ea5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156112025750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611275576000606460085483611219919061219c565b611223919061220d565b90506000606460095484611237919061219c565b611241919061220d565b9050611259853083856112549190611e09565b61152c565b80826112659190611e09565b8361127091906124cc565b925050505b61128083838361152c565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb90612572565b60405180910390fd5b611300826000836117a2565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611386576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137d90612604565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516114399190611a5f565b60405180910390a361144d836000846117a7565b505050565b61145a61106e565b6114646000611466565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361159b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159290612696565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190612728565b60405180910390fd5b6116158383836117a2565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561169b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611692906127ba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516117899190611a5f565b60405180910390a361179c8484846117a7565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156117e65780820151818401526020810190506117cb565b60008484015250505050565b6000601f19601f8301169050919050565b600061180e826117ac565b61181881856117b7565b93506118288185602086016117c8565b611831816117f2565b840191505092915050565b600060208201905081810360008301526118568184611803565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061189d82611872565b9050919050565b6118ad81611892565b81146118b857600080fd5b50565b6000813590506118ca816118a4565b92915050565b6000819050919050565b6118e3816118d0565b81146118ee57600080fd5b50565b600081359050611900816118da565b92915050565b6000806040838503121561191d5761191c611868565b5b600061192b858286016118bb565b925050602061193c858286016118f1565b9150509250929050565b60008115159050919050565b61195b81611946565b82525050565b60006020820190506119766000830184611952565b92915050565b60006020828403121561199257611991611868565b5b60006119a0848285016118f1565b91505092915050565b6000602082840312156119bf576119be611868565b5b60006119cd848285016118bb565b91505092915050565b6000819050919050565b60006119fb6119f66119f184611872565b6119d6565b611872565b9050919050565b6000611a0d826119e0565b9050919050565b6000611a1f82611a02565b9050919050565b611a2f81611a14565b82525050565b6000602082019050611a4a6000830184611a26565b92915050565b611a59816118d0565b82525050565b6000602082019050611a746000830184611a50565b92915050565b600080600060608486031215611a9357611a92611868565b5b6000611aa1868287016118bb565b9350506020611ab2868287016118bb565b9250506040611ac3868287016118f1565b9150509250925092565b600060ff82169050919050565b611ae381611acd565b82525050565b6000602082019050611afe6000830184611ada565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611b41826117f2565b810181811067ffffffffffffffff82111715611b6057611b5f611b09565b5b80604052505050565b6000611b7361185e565b9050611b7f8282611b38565b919050565b600067ffffffffffffffff821115611b9f57611b9e611b09565b5b602082029050602081019050919050565b600080fd5b6000611bc8611bc384611b84565b611b69565b90508083825260208201905060208402830185811115611beb57611bea611bb0565b5b835b81811015611c145780611c0088826118bb565b845260208401935050602081019050611bed565b5050509392505050565b600082601f830112611c3357611c32611b04565b5b8135611c43848260208601611bb5565b91505092915050565b611c5581611946565b8114611c6057600080fd5b50565b600081359050611c7281611c4c565b92915050565b60008060408385031215611c8f57611c8e611868565b5b600083013567ffffffffffffffff811115611cad57611cac61186d565b5b611cb985828601611c1e565b9250506020611cca85828601611c63565b9150509250929050565b611cdd81611892565b82525050565b6000602082019050611cf86000830184611cd4565b92915050565b6000611d0982611872565b9050919050565b611d1981611cfe565b82525050565b6000602082019050611d346000830184611d10565b92915050565b60008060408385031215611d5157611d50611868565b5b6000611d5f858286016118bb565b9250506020611d70858286016118bb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611dc157607f821691505b602082108103611dd457611dd3611d7a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e14826118d0565b9150611e1f836118d0565b9250828201905080821115611e3757611e36611dda565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000611e77826118d0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203611ea957611ea8611dda565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f106025836117b7565b9150611f1b82611eb4565b604082019050919050565b60006020820190508181036000830152611f3f81611f03565b9050919050565b7f45786365656473206d617820627579206c696d69740000000000000000000000600082015250565b6000611f7c6015836117b7565b9150611f8782611f46565b602082019050919050565b60006020820190508181036000830152611fab81611f6f565b9050919050565b7f4275796572206e6f7420696e2077686974656c69737400000000000000000000600082015250565b6000611fe86016836117b7565b9150611ff382611fb2565b602082019050919050565b6000602082019050818103600083015261201781611fdb565b9050919050565b60008160011c9050919050565b6000808291508390505b60018511156120755780860481111561205157612050611dda565b5b60018516156120605780820291505b808102905061206e8561201e565b9450612035565b94509492505050565b60008261208e576001905061214a565b8161209c576000905061214a565b81600181146120b257600281146120bc576120eb565b600191505061214a565b60ff8411156120ce576120cd611dda565b5b8360020a9150848211156120e5576120e4611dda565b5b5061214a565b5060208310610133831016604e8410600b84101617156121205782820a90508381111561211b5761211a611dda565b5b61214a565b61212d848484600161202b565b9250905081840481111561214457612143611dda565b5b81810290505b9392505050565b600061215c826118d0565b915061216783611acd565b92506121947fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461207e565b905092915050565b60006121a7826118d0565b91506121b2836118d0565b92508282026121c0816118d0565b915082820484148315176121d7576121d6611dda565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612218826118d0565b9150612223836118d0565b925082612233576122326121de565b5b828204905092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061229a6026836117b7565b91506122a58261223e565b604082019050919050565b600060208201905081810360008301526122c98161228d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061232c6024836117b7565b9150612337826122d0565b604082019050919050565b6000602082019050818103600083015261235b8161231f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006123be6022836117b7565b91506123c982612362565b604082019050919050565b600060208201905081810360008301526123ed816123b1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061242a6020836117b7565b9150612435826123f4565b602082019050919050565b600060208201905081810360008301526124598161241d565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612496601d836117b7565b91506124a182612460565b602082019050919050565b600060208201905081810360008301526124c581612489565b9050919050565b60006124d7826118d0565b91506124e2836118d0565b92508282039050818111156124fa576124f9611dda565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061255c6021836117b7565b915061256782612500565b604082019050919050565b6000602082019050818103600083015261258b8161254f565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006125ee6022836117b7565b91506125f982612592565b604082019050919050565b6000602082019050818103600083015261261d816125e1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006126806025836117b7565b915061268b82612624565b604082019050919050565b600060208201905081810360008301526126af81612673565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006127126023836117b7565b915061271d826126b6565b604082019050919050565b6000602082019050818103600083015261274181612705565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006127a46026836117b7565b91506127af82612748565b604082019050919050565b600060208201905081810360008301526127d381612797565b905091905056fea2646970667358221220bb88e8576dbf1047bc796bc0e73b713aecf3733f145ef7fa344617d08974e1d264736f6c63430008120033
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.