ERC-20
Overview
Max Total Supply
999,000,000,000 XCZ
Holders
65
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,190,800,000 XCZValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XCZ
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//https://www.XCZBOT.COM //https://t.me/XCZBOT_PORTAL //https://twitter.com/XCZBOT // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) pragma solidity ^0.8.4; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.4; /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { 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`). * 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/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.4; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.4; /** * @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/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.4; /** * @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.zeppelin.solutions/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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), 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}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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; _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; } _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 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 {} } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/BERA.sol pragma solidity ^0.8.4; contract XCZ is Ownable, ERC20 { uint256 public maxWallet; address public uniswapV2Pair; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 SUPPLY = 999000000000 * 10**18; uint256 firstBlockFee = 30; // 20% uint256 totalFee = 8; // 3% uint256 nftFee = 1; // 1% bool private inSwap = false; address public marketingWallet; address public nftWallet; uint256 public openTradingBlock; uint256 public collectedNftFees; mapping (address => uint256) public receiveBlock; uint256 public swapAt = SUPPLY / 1000; //0.1% constructor() ERC20("XCZ", "XCZ") payable { _mint(msg.sender, SUPPLY * 7 / 100); _mint(address(this), SUPPLY * 93 / 100); maxWallet = SUPPLY * 1 / 100; marketingWallet = owner(); nftWallet = 0x00F3c3aC40525326Bcd95ec79A37f91F78bF3Bb7; } receive() external payable {} function updateFee(uint256 _totalFee, uint256 _nftFee) external onlyOwner { require(_totalFee <= 30 && _nftFee <= _totalFee); totalFee = _totalFee; nftFee = _nftFee; } function updateMaxHoldingPercent(uint256 percent) external onlyOwner { require(percent >= 1 && percent <= 100, "invalid percent"); maxWallet = SUPPLY * percent / 100; } function updateSwapAt(uint256 value) external onlyOwner() { require(value <= SUPPLY / 50); swapAt = value; } function openTrading() external onlyOwner { address pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _approve(address(this), address(router), balanceOf(address(this))); router.addLiquidityETH{ value: address(this).balance } ( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); uniswapV2Pair = pair; openTradingBlock = block.number; } function _transfer(address from, address to, uint256 amount) internal override { if(uniswapV2Pair == address(0)) { require(from == address(this) || from == address(0) || from == owner() || to == owner(), "Not started"); super._transfer(from, to, amount); return; } if(from == uniswapV2Pair && to != address(this) && to != owner() && to != address(router)) { require(super.balanceOf(to) + amount <= maxWallet, "max wallet"); } uint256 swapAmount = balanceOf(address(this)); if(swapAmount > swapAt) { swapAmount = swapAt; } if( swapAt > 0 && swapAmount == swapAt && !inSwap && from != uniswapV2Pair) { inSwap = true; uint256 nftShare = swapTokensForEth(swapAmount); uint256 balance = address(this).balance; if(balance > 0) { withdraw(balance, nftShare); } inSwap = false; } uint256 fee; if(block.number < openTradingBlock + 1) { fee = firstBlockFee; } else if(totalFee > 0) { fee = totalFee; } if( fee > 0 && from != address(this) && from != owner() && from != address(router) ) { uint256 feeTokens = amount * fee / 100; amount -= feeTokens; super._transfer(from, address(this), feeTokens); if(nftFee > 0) { collectedNftFees += feeTokens * nftFee / fee; } } // super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private returns (uint256) { uint256 balance = balanceOf(address(this)); uint256 nftShare = collectedNftFees * 10000 / balance; uint256 lower = nftShare * tokenAmount / 10000; if(collectedNftFees > lower) { collectedNftFees -= lower; } else { collectedNftFees = 0; } address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); return nftShare; } function withdraw(uint256 amount, uint256 nftShare) private { if(nftShare > 10000) { nftShare = 10000; } uint256 toNft = amount * nftShare / 10000; uint256 toMarketing = amount - toNft; (bool success,) = marketingWallet.call{value: toMarketing}(""); success; (success,) = nftWallet.call{value: toNft}(""); success; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","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":[],"name":"collectedNftFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","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":"nftWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"receiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFee","type":"uint256"},{"internalType":"uint256","name":"_nftFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"updateMaxHoldingPercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"updateSwapAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506c0c9bf16e93a6a46dad58000000600855601e6009556008600a556001600b556000600c60006101000a81548160ff0219169083151502179055506103e86008546200009b91906200069b565b6011556040518060400160405280600381526020017f58435a00000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f58435a00000000000000000000000000000000000000000000000000000000008152506200012a6200011e6200028d60201b60201c565b6200029560201b60201c565b81600490805190602001906200014292919062000506565b5080600590805190602001906200015b92919062000506565b5050506200018e3360646007600854620001769190620006d3565b6200018291906200069b565b6200035960201b60201c565b620001be306064605d600854620001a69190620006d3565b620001b291906200069b565b6200035960201b60201c565b60646001600854620001d19190620006d3565b620001dd91906200069b565b600681905550620001f3620004d360201b60201c565b600c60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555072f3c3ac40525326bcd95ec79a37f91f78bf3bb7600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200082a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003cc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003c390620005ee565b60405180910390fd5b620003e060008383620004fc60201b60201c565b8060036000828254620003f491906200063e565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200044c91906200063e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004b3919062000610565b60405180910390a3620004cf600083836200050160201b60201c565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b505050565b505050565b82805462000514906200073e565b90600052602060002090601f01602090048101928262000538576000855562000584565b82601f106200055357805160ff191683800117855562000584565b8280016001018555821562000584579182015b828111156200058357825182559160200191906001019062000566565b5b50905062000593919062000597565b5090565b5b80821115620005b257600081600090555060010162000598565b5090565b6000620005c5601f836200062d565b9150620005d28262000801565b602082019050919050565b620005e88162000734565b82525050565b600060208201905081810360008301526200060981620005b6565b9050919050565b6000602082019050620006276000830184620005dd565b92915050565b600082825260208201905092915050565b60006200064b8262000734565b9150620006588362000734565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000690576200068f62000774565b5b828201905092915050565b6000620006a88262000734565b9150620006b58362000734565b925082620006c857620006c7620007a3565b5b828204905092915050565b6000620006e08262000734565b9150620006ed8362000734565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000729576200072862000774565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200075757607f821691505b602082108114156200076e576200076d620007d2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160601c612f236200088160003960008181610d6601528181610e2001528181610f3301528181610f62015281816116210152818161188d01528181611e1601528181611f2c0152611f530152612f236000f3fe60806040526004361061016a5760003560e01c806370a08231116100d1578063a9059cbb1161008a578063c9ca8a4911610064578063c9ca8a491461054f578063dd62ed3e1461057a578063f8b45b05146105b7578063f8f2bfce146105e257610171565b8063a9059cbb146104d0578063b1e370081461050d578063c9567bf91461053857610171565b806370a08231146103be578063715018a6146103fb57806375f0a874146104125780638da5cb5b1461043d57806395d89b4114610468578063a457c2d71461049357610171565b80632740c197116101235780632740c197146102ae578063313ce567146102d7578063395093511461030257806349bd5a5e1461033f57806362e9ddd41461036a5780636abfe8461461039557610171565b806306fdde031461017657806308aa2695146101a1578063095ea7b3146101cc578063098fec391461020957806318160ddd1461024657806323b872dd1461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b61060b565b60405161019891906126fe565b60405180910390f35b3480156101ad57600080fd5b506101b661069d565b6040516101c39190612880565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061228c565b6106a3565b60405161020091906126e3565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906121af565b6106c1565b60405161023d9190612880565b60405180910390f35b34801561025257600080fd5b5061025b6106d9565b6040516102689190612880565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061223d565b6106e3565b6040516102a591906126e3565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906122f1565b6107db565b005b3480156102e357600080fd5b506102ec610883565b6040516102f991906128f5565b60405180910390f35b34801561030e57600080fd5b506103296004803603810190610324919061228c565b61088c565b60405161033691906126e3565b60405180910390f35b34801561034b57600080fd5b50610354610938565b604051610361919061263e565b60405180910390f35b34801561037657600080fd5b5061037f61095e565b60405161038c9190612880565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906122c8565b610964565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906121af565b610a05565b6040516103f29190612880565b60405180910390f35b34801561040757600080fd5b50610410610a4e565b005b34801561041e57600080fd5b50610427610ad6565b604051610434919061263e565b60405180910390f35b34801561044957600080fd5b50610452610afc565b60405161045f919061263e565b60405180910390f35b34801561047457600080fd5b5061047d610b25565b60405161048a91906126fe565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061228c565b610bb7565b6040516104c791906126e3565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f2919061228c565b610ca2565b60405161050491906126e3565b60405180910390f35b34801561051957600080fd5b50610522610cc0565b60405161052f919061263e565b60405180910390f35b34801561054457600080fd5b5061054d610ce6565b005b34801561055b57600080fd5b50610564611074565b6040516105719190612880565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190612201565b61107a565b6040516105ae9190612880565b60405180910390f35b3480156105c357600080fd5b506105cc611101565b6040516105d99190612880565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906122c8565b611107565b005b60606004805461061a90612b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461064690612b1f565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b5050505050905090565b60115481565b60006106b76106b06111f7565b84846111ff565b6001905092915050565b60106020528060005260406000206000915090505481565b6000600354905090565b60006106f08484846113ca565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061073b6111f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b2906127c0565b60405180910390fd5b6107cf856107c76111f7565b8584036111ff565b60019150509392505050565b6107e36111f7565b73ffffffffffffffffffffffffffffffffffffffff16610801610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906127e0565b60405180910390fd5b601e82111580156108685750818111155b61087157600080fd5b81600a8190555080600b819055505050565b60006012905090565b600061092e6108996111f7565b8484600260006108a76111f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109299190612970565b6111ff565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b61096c6111f7565b73ffffffffffffffffffffffffffffffffffffffff1661098a610afc565b73ffffffffffffffffffffffffffffffffffffffff16146109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906127e0565b60405180910390fd5b60326008546109ef91906129c6565b8111156109fb57600080fd5b8060118190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a566111f7565b73ffffffffffffffffffffffffffffffffffffffff16610a74610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906127e0565b60405180910390fd5b610ad46000611968565b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b3490612b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6090612b1f565b8015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b5050505050905090565b60008060026000610bc66111f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90612840565b60405180910390fd5b610c97610c8e6111f7565b858584036111ff565b600191505092915050565b6000610cb6610caf6111f7565b84846113ca565b6001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cee6111f7565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906127e0565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610dca57600080fd5b505afa158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0291906121d8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610e8457600080fd5b505afa158015610e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebc91906121d8565b6040518363ffffffff1660e01b8152600401610ed9929190612659565b602060405180830381600087803b158015610ef357600080fd5b505af1158015610f07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2b91906121d8565b9050610f60307f0000000000000000000000000000000000000000000000000000000000000000610f5b30610a05565b6111ff565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610fa730610a05565b600080610fb2610afc565b426040518863ffffffff1660e01b8152600401610fd496959493929190612682565b6060604051808303818588803b158015610fed57600080fd5b505af1158015611001573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611026919061232d565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043600e8190555050565b600f5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b61110f6111f7565b73ffffffffffffffffffffffffffffffffffffffff1661112d610afc565b73ffffffffffffffffffffffffffffffffffffffff1614611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a906127e0565b60405180910390fd5b60018110158015611195575060648111155b6111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90612780565b60405180910390fd5b6064816008546111e491906129f7565b6111ee91906129c6565b60068190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690612820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690612760565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113bd9190612880565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611550573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114875750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114c45750611495610afc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061150157506114d2610afc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790612740565b60405180910390fd5b61154b838383611a2c565b611963565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156115d957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561161857506115e8610afc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561167057507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156116ce576006548161168284610a05565b61168c9190612970565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490612860565b60405180910390fd5b5b60006116d930610a05565b90506011548111156116eb5760115490505b60006011541180156116fe575060115481145b80156117175750600c60009054906101000a900460ff16155b80156117715750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117d5576001600c60006101000a81548160ff021916908315150217905550600061179c82611cb0565b9050600047905060008111156117b7576117b68183611ff1565b5b6000600c60006101000a81548160ff02191690831515021790555050505b60006001600e546117e69190612970565b4310156117f7576009549050611809565b6000600a54111561180857600a5490505b5b60008111801561184557503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118845750611854610afc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118dc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611955576000606482856118f191906129f7565b6118fb91906129c6565b905080846119099190612a51565b9350611916863083611a2c565b6000600b5411156119535781600b548261193091906129f7565b61193a91906129c6565b600f600082825461194b9190612970565b925050819055505b505b611960858585611a2c565b50505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390612800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390612720565b60405180910390fd5b611b17838383612151565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906127a0565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c339190612970565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c979190612880565b60405180910390a3611caa848484612156565b50505050565b600080611cbc30610a05565b9050600081612710600f54611cd191906129f7565b611cdb91906129c6565b905060006127108583611cee91906129f7565b611cf891906129c6565b905080600f541115611d225780600f6000828254611d169190612a51565b92505081905550611d2b565b6000600f819055505b6000600267ffffffffffffffff811115611d6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611d9c5781602001602082028036833780820191505090505b5090503081600081518110611dda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e7a57600080fd5b505afa158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb291906121d8565b81600181518110611eec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f51307f0000000000000000000000000000000000000000000000000000000000000000886111ff565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478760008430426040518663ffffffff1660e01b8152600401611fb395949392919061289b565b600060405180830381600087803b158015611fcd57600080fd5b505af1158015611fe1573d6000803e3d6000fd5b5050505082945050505050919050565b6127108111156120015761271090505b6000612710828461201291906129f7565b61201c91906129c6565b90506000818461202c9190612a51565b90506000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161207690612629565b60006040518083038185875af1925050503d80600081146120b3576040519150601f19603f3d011682016040523d82523d6000602084013e6120b8565b606091505b50509050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161210290612629565b60006040518083038185875af1925050503d806000811461213f576040519150601f19603f3d011682016040523d82523d6000602084013e612144565b606091505b5050809150505050505050565b505050565b505050565b60008135905061216a81612ebf565b92915050565b60008151905061217f81612ebf565b92915050565b60008135905061219481612ed6565b92915050565b6000815190506121a981612ed6565b92915050565b6000602082840312156121c157600080fd5b60006121cf8482850161215b565b91505092915050565b6000602082840312156121ea57600080fd5b60006121f884828501612170565b91505092915050565b6000806040838503121561221457600080fd5b60006122228582860161215b565b92505060206122338582860161215b565b9150509250929050565b60008060006060848603121561225257600080fd5b60006122608682870161215b565b93505060206122718682870161215b565b925050604061228286828701612185565b9150509250925092565b6000806040838503121561229f57600080fd5b60006122ad8582860161215b565b92505060206122be85828601612185565b9150509250929050565b6000602082840312156122da57600080fd5b60006122e884828501612185565b91505092915050565b6000806040838503121561230457600080fd5b600061231285828601612185565b925050602061232385828601612185565b9150509250929050565b60008060006060848603121561234257600080fd5b60006123508682870161219a565b93505060206123618682870161219a565b92505060406123728682870161219a565b9150509250925092565b60006123888383612394565b60208301905092915050565b61239d81612a85565b82525050565b6123ac81612a85565b82525050565b60006123bd82612920565b6123c78185612943565b93506123d283612910565b8060005b838110156124035781516123ea888261237c565b97506123f583612936565b9250506001810190506123d6565b5085935050505092915050565b61241981612a97565b82525050565b61242881612ada565b82525050565b60006124398261292b565b612443818561295f565b9350612453818560208601612aec565b61245c81612bde565b840191505092915050565b600061247460238361295f565b915061247f82612bef565b604082019050919050565b6000612497600b8361295f565b91506124a282612c3e565b602082019050919050565b60006124ba60228361295f565b91506124c582612c67565b604082019050919050565b60006124dd600f8361295f565b91506124e882612cb6565b602082019050919050565b600061250060268361295f565b915061250b82612cdf565b604082019050919050565b600061252360288361295f565b915061252e82612d2e565b604082019050919050565b600061254660208361295f565b915061255182612d7d565b602082019050919050565b600061256960258361295f565b915061257482612da6565b604082019050919050565b600061258c600083612954565b915061259782612df5565b600082019050919050565b60006125af60248361295f565b91506125ba82612df8565b604082019050919050565b60006125d260258361295f565b91506125dd82612e47565b604082019050919050565b60006125f5600a8361295f565b915061260082612e96565b602082019050919050565b61261481612ac3565b82525050565b61262381612acd565b82525050565b60006126348261257f565b9150819050919050565b600060208201905061265360008301846123a3565b92915050565b600060408201905061266e60008301856123a3565b61267b60208301846123a3565b9392505050565b600060c08201905061269760008301896123a3565b6126a4602083018861260b565b6126b1604083018761241f565b6126be606083018661241f565b6126cb60808301856123a3565b6126d860a083018461260b565b979650505050505050565b60006020820190506126f86000830184612410565b92915050565b60006020820190508181036000830152612718818461242e565b905092915050565b6000602082019050818103600083015261273981612467565b9050919050565b600060208201905081810360008301526127598161248a565b9050919050565b60006020820190508181036000830152612779816124ad565b9050919050565b60006020820190508181036000830152612799816124d0565b9050919050565b600060208201905081810360008301526127b9816124f3565b9050919050565b600060208201905081810360008301526127d981612516565b9050919050565b600060208201905081810360008301526127f981612539565b9050919050565b600060208201905081810360008301526128198161255c565b9050919050565b60006020820190508181036000830152612839816125a2565b9050919050565b60006020820190508181036000830152612859816125c5565b9050919050565b60006020820190508181036000830152612879816125e8565b9050919050565b6000602082019050612895600083018461260b565b92915050565b600060a0820190506128b0600083018861260b565b6128bd602083018761241f565b81810360408301526128cf81866123b2565b90506128de60608301856123a3565b6128eb608083018461260b565b9695505050505050565b600060208201905061290a600083018461261a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061297b82612ac3565b915061298683612ac3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129bb576129ba612b51565b5b828201905092915050565b60006129d182612ac3565b91506129dc83612ac3565b9250826129ec576129eb612b80565b5b828204905092915050565b6000612a0282612ac3565b9150612a0d83612ac3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4657612a45612b51565b5b828202905092915050565b6000612a5c82612ac3565b9150612a6783612ac3565b925082821015612a7a57612a79612b51565b5b828203905092915050565b6000612a9082612aa3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612ae582612ac3565b9050919050565b60005b83811015612b0a578082015181840152602081019050612aef565b83811115612b19576000848401525b50505050565b60006002820490506001821680612b3757607f821691505b60208210811415612b4b57612b4a612baf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c69642070657263656e740000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b612ec881612a85565b8114612ed357600080fd5b50565b612edf81612ac3565b8114612eea57600080fd5b5056fea2646970667358221220b04c996c84701c3e7e421ddeaaf64a60a9c94a0929a416b6dbdaa16b77d96c7e64736f6c63430008040033
Deployed Bytecode
0x60806040526004361061016a5760003560e01c806370a08231116100d1578063a9059cbb1161008a578063c9ca8a4911610064578063c9ca8a491461054f578063dd62ed3e1461057a578063f8b45b05146105b7578063f8f2bfce146105e257610171565b8063a9059cbb146104d0578063b1e370081461050d578063c9567bf91461053857610171565b806370a08231146103be578063715018a6146103fb57806375f0a874146104125780638da5cb5b1461043d57806395d89b4114610468578063a457c2d71461049357610171565b80632740c197116101235780632740c197146102ae578063313ce567146102d7578063395093511461030257806349bd5a5e1461033f57806362e9ddd41461036a5780636abfe8461461039557610171565b806306fdde031461017657806308aa2695146101a1578063095ea7b3146101cc578063098fec391461020957806318160ddd1461024657806323b872dd1461027157610171565b3661017157005b600080fd5b34801561018257600080fd5b5061018b61060b565b60405161019891906126fe565b60405180910390f35b3480156101ad57600080fd5b506101b661069d565b6040516101c39190612880565b60405180910390f35b3480156101d857600080fd5b506101f360048036038101906101ee919061228c565b6106a3565b60405161020091906126e3565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b91906121af565b6106c1565b60405161023d9190612880565b60405180910390f35b34801561025257600080fd5b5061025b6106d9565b6040516102689190612880565b60405180910390f35b34801561027d57600080fd5b506102986004803603810190610293919061223d565b6106e3565b6040516102a591906126e3565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906122f1565b6107db565b005b3480156102e357600080fd5b506102ec610883565b6040516102f991906128f5565b60405180910390f35b34801561030e57600080fd5b506103296004803603810190610324919061228c565b61088c565b60405161033691906126e3565b60405180910390f35b34801561034b57600080fd5b50610354610938565b604051610361919061263e565b60405180910390f35b34801561037657600080fd5b5061037f61095e565b60405161038c9190612880565b60405180910390f35b3480156103a157600080fd5b506103bc60048036038101906103b791906122c8565b610964565b005b3480156103ca57600080fd5b506103e560048036038101906103e091906121af565b610a05565b6040516103f29190612880565b60405180910390f35b34801561040757600080fd5b50610410610a4e565b005b34801561041e57600080fd5b50610427610ad6565b604051610434919061263e565b60405180910390f35b34801561044957600080fd5b50610452610afc565b60405161045f919061263e565b60405180910390f35b34801561047457600080fd5b5061047d610b25565b60405161048a91906126fe565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b5919061228c565b610bb7565b6040516104c791906126e3565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f2919061228c565b610ca2565b60405161050491906126e3565b60405180910390f35b34801561051957600080fd5b50610522610cc0565b60405161052f919061263e565b60405180910390f35b34801561054457600080fd5b5061054d610ce6565b005b34801561055b57600080fd5b50610564611074565b6040516105719190612880565b60405180910390f35b34801561058657600080fd5b506105a1600480360381019061059c9190612201565b61107a565b6040516105ae9190612880565b60405180910390f35b3480156105c357600080fd5b506105cc611101565b6040516105d99190612880565b60405180910390f35b3480156105ee57600080fd5b50610609600480360381019061060491906122c8565b611107565b005b60606004805461061a90612b1f565b80601f016020809104026020016040519081016040528092919081815260200182805461064690612b1f565b80156106935780601f1061066857610100808354040283529160200191610693565b820191906000526020600020905b81548152906001019060200180831161067657829003601f168201915b5050505050905090565b60115481565b60006106b76106b06111f7565b84846111ff565b6001905092915050565b60106020528060005260406000206000915090505481565b6000600354905090565b60006106f08484846113ca565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061073b6111f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b2906127c0565b60405180910390fd5b6107cf856107c76111f7565b8584036111ff565b60019150509392505050565b6107e36111f7565b73ffffffffffffffffffffffffffffffffffffffff16610801610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e906127e0565b60405180910390fd5b601e82111580156108685750818111155b61087157600080fd5b81600a8190555080600b819055505050565b60006012905090565b600061092e6108996111f7565b8484600260006108a76111f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546109299190612970565b6111ff565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b61096c6111f7565b73ffffffffffffffffffffffffffffffffffffffff1661098a610afc565b73ffffffffffffffffffffffffffffffffffffffff16146109e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d7906127e0565b60405180910390fd5b60326008546109ef91906129c6565b8111156109fb57600080fd5b8060118190555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a566111f7565b73ffffffffffffffffffffffffffffffffffffffff16610a74610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906127e0565b60405180910390fd5b610ad46000611968565b565b600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b3490612b1f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6090612b1f565b8015610bad5780601f10610b8257610100808354040283529160200191610bad565b820191906000526020600020905b815481529060010190602001808311610b9057829003601f168201915b5050505050905090565b60008060026000610bc66111f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7a90612840565b60405180910390fd5b610c97610c8e6111f7565b858584036111ff565b600191505092915050565b6000610cb6610caf6111f7565b84846113ca565b6001905092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610cee6111f7565b73ffffffffffffffffffffffffffffffffffffffff16610d0c610afc565b73ffffffffffffffffffffffffffffffffffffffff1614610d62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d59906127e0565b60405180910390fd5b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610dca57600080fd5b505afa158015610dde573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0291906121d8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610e8457600080fd5b505afa158015610e98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ebc91906121d8565b6040518363ffffffff1660e01b8152600401610ed9929190612659565b602060405180830381600087803b158015610ef357600080fd5b505af1158015610f07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f2b91906121d8565b9050610f60307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610f5b30610a05565b6111ff565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610fa730610a05565b600080610fb2610afc565b426040518863ffffffff1660e01b8152600401610fd496959493929190612682565b6060604051808303818588803b158015610fed57600080fd5b505af1158015611001573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611026919061232d565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555043600e8190555050565b600f5481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60065481565b61110f6111f7565b73ffffffffffffffffffffffffffffffffffffffff1661112d610afc565b73ffffffffffffffffffffffffffffffffffffffff1614611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a906127e0565b60405180910390fd5b60018110158015611195575060648111155b6111d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cb90612780565b60405180910390fd5b6064816008546111e491906129f7565b6111ee91906129c6565b60068190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690612820565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690612760565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516113bd9190612880565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611550573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114875750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114c45750611495610afc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8061150157506114d2610afc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790612740565b60405180910390fd5b61154b838383611a2c565b611963565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156115d957503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561161857506115e8610afc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561167057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156116ce576006548161168284610a05565b61168c9190612970565b11156116cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c490612860565b60405180910390fd5b5b60006116d930610a05565b90506011548111156116eb5760115490505b60006011541180156116fe575060115481145b80156117175750600c60009054906101000a900460ff16155b80156117715750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156117d5576001600c60006101000a81548160ff021916908315150217905550600061179c82611cb0565b9050600047905060008111156117b7576117b68183611ff1565b5b6000600c60006101000a81548160ff02191690831515021790555050505b60006001600e546117e69190612970565b4310156117f7576009549050611809565b6000600a54111561180857600a5490505b5b60008111801561184557503073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118845750611854610afc565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b80156118dc57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b15611955576000606482856118f191906129f7565b6118fb91906129c6565b905080846119099190612a51565b9350611916863083611a2c565b6000600b5411156119535781600b548261193091906129f7565b61193a91906129c6565b600f600082825461194b9190612970565b925050819055505b505b611960858585611a2c565b50505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9390612800565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0390612720565b60405180910390fd5b611b17838383612151565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b95906127a0565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c339190612970565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c979190612880565b60405180910390a3611caa848484612156565b50505050565b600080611cbc30610a05565b9050600081612710600f54611cd191906129f7565b611cdb91906129c6565b905060006127108583611cee91906129f7565b611cf891906129c6565b905080600f541115611d225780600f6000828254611d169190612a51565b92505081905550611d2b565b6000600f819055505b6000600267ffffffffffffffff811115611d6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611d9c5781602001602082028036833780820191505090505b5090503081600081518110611dda577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611e7a57600080fd5b505afa158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb291906121d8565b81600181518110611eec577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f51307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d886111ff565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478760008430426040518663ffffffff1660e01b8152600401611fb395949392919061289b565b600060405180830381600087803b158015611fcd57600080fd5b505af1158015611fe1573d6000803e3d6000fd5b5050505082945050505050919050565b6127108111156120015761271090505b6000612710828461201291906129f7565b61201c91906129c6565b90506000818461202c9190612a51565b90506000600c60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161207690612629565b60006040518083038185875af1925050503d80600081146120b3576040519150601f19603f3d011682016040523d82523d6000602084013e6120b8565b606091505b50509050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161210290612629565b60006040518083038185875af1925050503d806000811461213f576040519150601f19603f3d011682016040523d82523d6000602084013e612144565b606091505b5050809150505050505050565b505050565b505050565b60008135905061216a81612ebf565b92915050565b60008151905061217f81612ebf565b92915050565b60008135905061219481612ed6565b92915050565b6000815190506121a981612ed6565b92915050565b6000602082840312156121c157600080fd5b60006121cf8482850161215b565b91505092915050565b6000602082840312156121ea57600080fd5b60006121f884828501612170565b91505092915050565b6000806040838503121561221457600080fd5b60006122228582860161215b565b92505060206122338582860161215b565b9150509250929050565b60008060006060848603121561225257600080fd5b60006122608682870161215b565b93505060206122718682870161215b565b925050604061228286828701612185565b9150509250925092565b6000806040838503121561229f57600080fd5b60006122ad8582860161215b565b92505060206122be85828601612185565b9150509250929050565b6000602082840312156122da57600080fd5b60006122e884828501612185565b91505092915050565b6000806040838503121561230457600080fd5b600061231285828601612185565b925050602061232385828601612185565b9150509250929050565b60008060006060848603121561234257600080fd5b60006123508682870161219a565b93505060206123618682870161219a565b92505060406123728682870161219a565b9150509250925092565b60006123888383612394565b60208301905092915050565b61239d81612a85565b82525050565b6123ac81612a85565b82525050565b60006123bd82612920565b6123c78185612943565b93506123d283612910565b8060005b838110156124035781516123ea888261237c565b97506123f583612936565b9250506001810190506123d6565b5085935050505092915050565b61241981612a97565b82525050565b61242881612ada565b82525050565b60006124398261292b565b612443818561295f565b9350612453818560208601612aec565b61245c81612bde565b840191505092915050565b600061247460238361295f565b915061247f82612bef565b604082019050919050565b6000612497600b8361295f565b91506124a282612c3e565b602082019050919050565b60006124ba60228361295f565b91506124c582612c67565b604082019050919050565b60006124dd600f8361295f565b91506124e882612cb6565b602082019050919050565b600061250060268361295f565b915061250b82612cdf565b604082019050919050565b600061252360288361295f565b915061252e82612d2e565b604082019050919050565b600061254660208361295f565b915061255182612d7d565b602082019050919050565b600061256960258361295f565b915061257482612da6565b604082019050919050565b600061258c600083612954565b915061259782612df5565b600082019050919050565b60006125af60248361295f565b91506125ba82612df8565b604082019050919050565b60006125d260258361295f565b91506125dd82612e47565b604082019050919050565b60006125f5600a8361295f565b915061260082612e96565b602082019050919050565b61261481612ac3565b82525050565b61262381612acd565b82525050565b60006126348261257f565b9150819050919050565b600060208201905061265360008301846123a3565b92915050565b600060408201905061266e60008301856123a3565b61267b60208301846123a3565b9392505050565b600060c08201905061269760008301896123a3565b6126a4602083018861260b565b6126b1604083018761241f565b6126be606083018661241f565b6126cb60808301856123a3565b6126d860a083018461260b565b979650505050505050565b60006020820190506126f86000830184612410565b92915050565b60006020820190508181036000830152612718818461242e565b905092915050565b6000602082019050818103600083015261273981612467565b9050919050565b600060208201905081810360008301526127598161248a565b9050919050565b60006020820190508181036000830152612779816124ad565b9050919050565b60006020820190508181036000830152612799816124d0565b9050919050565b600060208201905081810360008301526127b9816124f3565b9050919050565b600060208201905081810360008301526127d981612516565b9050919050565b600060208201905081810360008301526127f981612539565b9050919050565b600060208201905081810360008301526128198161255c565b9050919050565b60006020820190508181036000830152612839816125a2565b9050919050565b60006020820190508181036000830152612859816125c5565b9050919050565b60006020820190508181036000830152612879816125e8565b9050919050565b6000602082019050612895600083018461260b565b92915050565b600060a0820190506128b0600083018861260b565b6128bd602083018761241f565b81810360408301526128cf81866123b2565b90506128de60608301856123a3565b6128eb608083018461260b565b9695505050505050565b600060208201905061290a600083018461261a565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600061297b82612ac3565b915061298683612ac3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129bb576129ba612b51565b5b828201905092915050565b60006129d182612ac3565b91506129dc83612ac3565b9250826129ec576129eb612b80565b5b828204905092915050565b6000612a0282612ac3565b9150612a0d83612ac3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4657612a45612b51565b5b828202905092915050565b6000612a5c82612ac3565b9150612a6783612ac3565b925082821015612a7a57612a79612b51565b5b828203905092915050565b6000612a9082612aa3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612ae582612ac3565b9050919050565b60005b83811015612b0a578082015181840152602081019050612aef565b83811115612b19576000848401525b50505050565b60006002820490506001821680612b3757607f821691505b60208210811415612b4b57612b4a612baf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c69642070657263656e740000000000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657400000000000000000000000000000000000000000000600082015250565b612ec881612a85565b8114612ed357600080fd5b50565b612edf81612ac3565b8114612eea57600080fd5b5056fea2646970667358221220b04c996c84701c3e7e421ddeaaf64a60a9c94a0929a416b6dbdaa16b77d96c7e64736f6c63430008040033
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.