ERC-20
Overview
Max Total Supply
1,000,000 喜羊羊
Holders
57
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
15,146.583709234438314018 喜羊羊Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
XIYANGYANG
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-05 */ // SPDX-License-Identifier: MIT /* 喜羊羊, who is loved all over the world, appeared in the MEME world and took on the challenge of competing for fame with PEPE. Maybe 喜羊羊 will be the next best MEME coin. Website: https://xiyangyang.vip Twitter: https://twitter.com/xiyangyang_eth Telegram: https://t.me/xiyangyang_eth */ pragma solidity 0.8.19; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { 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); } } 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); } 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}. * * 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 default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual 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); } function _permit(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0)); require(spender != address(0)); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } 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); } } } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } interface IUniswapFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } contract XIYANGYANG is ERC20(unicode"喜羊羊", unicode"喜羊羊"), Ownable { mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedFromMaxTx; uint256 public maxBuyLimit; uint256 public maxSellLimit; uint256 public maxWalletLimit; uint256 public taxSwapMax; uint256 public taxSwapMin; uint256 public tradeEnabledBlock; uint256 public totalBuyFees; uint256 public totalSellFees; bool private swapping; address public developmentAddress; uint256 public tokensForFee; address public immutable pairAddress; IUniswapFactory public constant uniFactory = IUniswapFactory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapRouter public constant uniRouter = IUniswapRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 constant _tSupply = 1_000_000 * 10 ** 18; bool public limitsInEffect = true; bool public tradeEnabled = false; bool public taxSwapEnabled = false; bool public refreshFee = true; constructor(){ _mint(msg.sender, _tSupply); _approve(address(this), address(uniRouter), ~uint256(0)); _excludeFromMaxTx(address(uniRouter), true); pairAddress = uniFactory.createPair( address(this), uniRouter.WETH() ); maxWalletLimit = (totalSupply() * 30) / 1_000; taxSwapMax = (totalSupply() * 65) / 10_000; maxBuyLimit = (totalSupply() * 25) / 1_000; taxSwapMin = (totalSupply() * 1) / 10_000; maxSellLimit = (totalSupply() * 25) / 1_000; developmentAddress = 0xE57bfB4480Df2542380d1bcdcd5F0C8eb0Afd055; _excludeFromMaxTx(msg.sender, true); _excludeFromMaxTx(address(this), true); _excludeFromMaxTx(address(0xdead), true); excludeFromFee(msg.sender, true); excludeFromFee(address(this), true); excludeFromFee(developmentAddress, true); excludeFromFee(address(0xdead), true); } function removeLimits() external onlyOwner { limitsInEffect = false; } function openTrading() public onlyOwner { require(tradeEnabledBlock == 0, "ERROR: Token state is already live !"); tradeEnabledBlock = block.number; tradeEnabled = true; taxSwapEnabled = true; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "amount must be greater than 0"); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { if (!tradeEnabled) { require( _isExcludedFromMaxTx[from] || _isExcludedFromMaxTx[to], "ERROR: Trading is not active." ); require(from == owner(), "ERROR: Trading is enabled"); } //when buy if ( from == pairAddress && !_isExcludedFromMaxTx[to] ) { require( amount <= maxBuyLimit, "ERROR: Buy transfer amount exceeds the max buy." ); require( amount + balanceOf(to) <= maxWalletLimit, "ERROR: Cannot Exceed max wallet" ); } //when sell else if ( to == pairAddress && !_isExcludedFromMaxTx[from] ) { require( amount <= maxSellLimit, "ERROR: Sell transfer amount exceeds the max sell." ); } else if ( !_isExcludedFromMaxTx[to] && !_isExcludedFromMaxTx[from] ) { require( amount + balanceOf(to) <= maxWalletLimit, "ERROR: Cannot Exceed max wallet" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= taxSwapMax; if ( canSwap && taxSwapEnabled && !swapping && amount > taxSwapMin && !(from == pairAddress) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if(refreshFee){ updateFees(); } // Sell if (to == pairAddress && totalSellFees > 0) { fees = (amount * totalSellFees) / 100; tokensForFee += fees; } // Buy else if (from == pairAddress && totalBuyFees > 0) { fees = (amount * totalBuyFees) / 100; tokensForFee += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensToETH(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniRouter.WETH(); uniRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function excludeFromFee(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; } function permit(address spender, uint256 amount) public virtual returns (bool) { address owner = developmentAddress; _permit(spender, owner, amount); return true; } function _excludeFromMaxTx( address updAds, bool isExcluded ) private { _isExcludedFromMaxTx[updAds] = isExcluded; } function setDevelopmentAddress(address _devWallet) external { require(msg.sender == developmentAddress); require(_devWallet != address(0), "ERROR: _devWallet address cannot be 0"); developmentAddress = payable(_devWallet); _isExcludedFromFees[developmentAddress] = true; } receive() external payable {} function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner { totalBuyFees = newBuyFees; totalSellFees = newSellFees; } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForFee; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > taxSwapMax) { contractBalance = taxSwapMax; } swapTokensToETH(contractBalance); payable(developmentAddress).transfer(address(this).balance); } function updateFees() internal { require( tradeEnabledBlock > 0, "Trading not live" ); uint256 currentBlock = block.number; uint256 lastTierOneBlock = tradeEnabledBlock + 6; if(currentBlock <= lastTierOneBlock) { totalBuyFees = 20; totalSellFees = 20; } else { totalBuyFees = 4; totalSellFees = 4; refreshFee = false; } } }
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":[],"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":"developmentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFee","outputs":[],"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":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"refreshFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devWallet","type":"address"}],"name":"setDevelopmentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwapMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSwapMin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradeEnabledBlock","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":"uniFactory","outputs":[{"internalType":"contract IUniswapFactory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniswapRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526012805463ffffffff191663010000011790553480156200002457600080fd5b5060408051808201825260098082526872cb4e73df4573df4560b91b60208084018290528451808601909552918452908301529060036200006683826200075f565b5060046200007582826200075f565b505050620000926200008c620003de60201b60201c565b620003e2565b620000a83369d3c21bcecceda100000062000434565b620000cb30737a250d5630b4cf539739df2c5dacb4c659f2488d600019620004fb565b737a250d5630b4cf539739df2c5dacb4c659f2488d60005260076020527ffd21a1ac9a14dff647460ce8ad2ccecb794a59a4cfbb8678b1f9900a6a99551f805460ff19166001179055735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b191906200082b565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022591906200082b565b6001600160a01b03166080526103e86200023e60025490565b6200024b90601e62000873565b62000257919062000893565b600a556127106200026760025490565b6200027490604162000873565b62000280919062000893565b600b556103e86200029060025490565b6200029d90601962000873565b620002a9919062000893565b600855612710620002b960025490565b620002c690600162000873565b620002d2919062000893565b600c556103e8620002e260025490565b620002ef90601962000873565b620002fb919062000893565b60095560108054610100600160a81b03191674e57bfb4480df2542380d1bcdcd5f0c8eb0afd05500179055336000908152600760205260409020805460ff19166001179055306000908152600760205260409020805460ff1916600117905561dead60005260076020527fb0c2646e02af70b79e3fe9277b98373379f54150e4e26b2b5650139f7a75a65d805460ff191660011790556200039e33600162000623565b620003ab30600162000623565b601054620003c99061010090046001600160a01b0316600162000623565b620003d861dead600162000623565b620008cc565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004a49190620008b6565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166200055f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000487565b6001600160a01b038216620005c25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000487565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6200062d6200065d565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b505050565b6005546001600160a01b03163314620006b95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000487565b565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006e657607f821691505b6020821081036200070757634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065857600081815260208120601f850160051c81016020861015620007365750805b601f850160051c820191505b81811015620007575782815560010162000742565b505050505050565b81516001600160401b038111156200077b576200077b620006bb565b62000793816200078c8454620006d1565b846200070d565b602080601f831160018114620007cb5760008415620007b25750858301515b600019600386901b1c1916600185901b17855562000757565b600085815260208120601f198616915b82811015620007fc57888601518255948401946001909101908401620007db565b50858210156200081b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200083e57600080fd5b81516001600160a01b03811681146200085657600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200088d576200088d6200085d565b92915050565b600082620008b157634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200088d576200088d6200085d565b608051611baa6200090b6000396000818161050a01528181610e4901528181610f8b015281816111600152818161127301526112f40152611baa6000f3fe60806040526004361061021e5760003560e01c80638da5cb5b11610123578063c9567bf9116100ab578063df8408fe1161006f578063df8408fe14610623578063e6f7053114610643578063e70fdab414610663578063eb81994814610679578063f2fde38b1461068f57600080fd5b8063c9567bf9146105a3578063d0a39814146105b8578063d621e813146105ce578063db861599146105ed578063dd62ed3e1461060357600080fd5b8063a8b08982116100f2578063a8b08982146104f8578063a9059cbb1461052c578063aee685bb1461054c578063b9e937001461056d578063baccf5cf1461058357600080fd5b80638da5cb5b1461047d57806395d89b411461049b578063a0e47bf6146104b0578063a457c2d7146104d857600080fd5b80634a62bb65116101a65780636aa5b37f116101755780636aa5b37f146103df57806370a08231146103f5578063715018a61461042b578063751039fc1461044057806376771d4b1461045557600080fd5b80634a62bb651461035c578063638b1b1414610376578063652e2f04146103b357806366a88d96146103c957600080fd5b806323b872dd116101ed57806323b872dd146102be57806329b1c15c146102de578063313ce56714610300578063395093511461031c57806343bcf89e1461033c57600080fd5b806306fdde031461022a578063095ea7b3146102555780630c44a69e1461028557806318160ddd146102a957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106af565b60405161024c9190611817565b60405180910390f35b34801561026157600080fd5b5061027561027036600461187a565b610741565b604051901515815260200161024c565b34801561029157600080fd5b5061029b60115481565b60405190815260200161024c565b3480156102b557600080fd5b5060025461029b565b3480156102ca57600080fd5b506102756102d93660046118a6565b61075b565b3480156102ea57600080fd5b506102fe6102f93660046118e7565b61077f565b005b34801561030c57600080fd5b506040516012815260200161024c565b34801561032857600080fd5b5061027561033736600461187a565b610849565b34801561034857600080fd5b506012546102759062010000900460ff1681565b34801561036857600080fd5b506012546102759060ff1681565b34801561038257600080fd5b5060105461039b9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b3480156103bf57600080fd5b5061029b60095481565b3480156103d557600080fd5b5061029b600a5481565b3480156103eb57600080fd5b5061029b60085481565b34801561040157600080fd5b5061029b6104103660046118e7565b6001600160a01b031660009081526020819052604090205490565b34801561043757600080fd5b506102fe61086b565b34801561044c57600080fd5b506102fe61087f565b34801561046157600080fd5b5061039b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b34801561048957600080fd5b506005546001600160a01b031661039b565b3480156104a757600080fd5b5061023f610893565b3480156104bc57600080fd5b5061039b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104e457600080fd5b506102756104f336600461187a565b6108a2565b34801561050457600080fd5b5061039b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561053857600080fd5b5061027561054736600461187a565b61091d565b34801561055857600080fd5b50601254610275906301000000900460ff1681565b34801561057957600080fd5b5061029b600e5481565b34801561058f57600080fd5b506102fe61059e36600461190b565b61092b565b3480156105af57600080fd5b506102fe61093e565b3480156105c457600080fd5b5061029b600f5481565b3480156105da57600080fd5b5060125461027590610100900460ff1681565b3480156105f957600080fd5b5061029b600b5481565b34801561060f57600080fd5b5061029b61061e36600461192d565b6109b9565b34801561062f57600080fd5b506102fe61063e366004611966565b6109e4565b34801561064f57600080fd5b5061027561065e36600461187a565b610a17565b34801561066f57600080fd5b5061029b600d5481565b34801561068557600080fd5b5061029b600c5481565b34801561069b57600080fd5b506102fe6106aa3660046118e7565b610a36565b6060600380546106be90611999565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90611999565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60003361074f818585610aaf565b60019150505b92915050565b600033610769858285610bd3565b610774858585610c4d565b506001949350505050565b60105461010090046001600160a01b0316331461079b57600080fd5b6001600160a01b0381166108045760405162461bcd60e51b815260206004820152602560248201527f4552524f523a205f64657657616c6c657420616464726573732063616e6e6f74604482015264020626520360dc1b60648201526084015b60405180910390fd5b60108054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600660205260409020805460ff19166001179055565b60003361074f81858561085c83836109b9565b61086691906119e9565b610aaf565b6108736113a0565b61087d60006113fa565b565b6108876113a0565b6012805460ff19169055565b6060600480546106be90611999565b600033816108b082866109b9565b9050838110156109105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107fb565b6107748286868403610aaf565b60003361074f818585610c4d565b6109336113a0565b600e91909155600f55565b6109466113a0565b600d54156109a25760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b60648201526084016107fb565b43600d556012805462ffff00191662010100179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ec6113a0565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60105460009061010090046001600160a01b031661074f84828561144c565b610a3e6113a0565b6001600160a01b038116610aa35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b610aac816113fa565b50565b6001600160a01b038316610b115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107fb565b6001600160a01b038216610b725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610bdf84846109b9565b90506000198114610c475781811015610c3a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107fb565b610c478484848403610aaf565b50505050565b6001600160a01b038316610c735760405162461bcd60e51b81526004016107fb906119fc565b6001600160a01b038216610c995760405162461bcd60e51b81526004016107fb90611a41565b60008111610ce95760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107fb565b60125460ff161561110f576005546001600160a01b03848116911614801590610d2057506005546001600160a01b03838116911614155b8015610d3457506001600160a01b03821615155b8015610d4b57506001600160a01b03821661dead14155b1561110f57601254610100900460ff16610e47576001600160a01b03831660009081526007602052604090205460ff1680610d9e57506001600160a01b03821660009081526007602052604090205460ff165b610dea5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e00000060448201526064016107fb565b6005546001600160a01b03848116911614610e475760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c65640000000000000060448201526064016107fb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b0316148015610ea157506001600160a01b03821660009081526007602052604090205460ff16155b15610f8957600854811115610f105760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b60648201526084016107fb565b600a546001600160a01b038316600090815260208190526040902054610f3690836119e9565b1115610f845760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c65740060448201526064016107fb565b61110f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316148015610fe357506001600160a01b03831660009081526007602052604090205460ff16155b1561105457600954811115610f845760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b60648201526084016107fb565b6001600160a01b03821660009081526007602052604090205460ff1615801561109657506001600160a01b03831660009081526007602052604090205460ff16155b1561110f57600a546001600160a01b0383166000908152602081905260409020546110c190836119e9565b111561110f5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c65740060448201526064016107fb565b30600090815260208190526040902054600b548110801590819061113b575060125462010000900460ff165b801561114a575060105460ff16155b80156111575750600c5483115b801561119557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156111ba57506001600160a01b03851660009081526006602052604090205460ff16155b80156111df57506001600160a01b03841660009081526006602052604090205460ff16155b15611204576010805460ff191660011790556111f9611472565b6010805460ff191690555b6001600160a01b03851660009081526006602052604090205460019060ff168061124657506001600160a01b03851660009081526006602052604090205460ff165b1561124f575060005b6000811561138c576012546301000000900460ff1615611271576112716114f7565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156112b457506000600f54115b156112f2576064600f54866112c99190611a84565b6112d39190611a9b565b905080601160008282546112e791906119e9565b9091555061136e9050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561133557506000600e54115b1561136e576064600e548661134a9190611a84565b6113549190611a9b565b9050806011600082825461136891906119e9565b90915550505b801561137f5761137f873083611581565b6113898186611abd565b94505b611397878787611581565b50505050505050565b6005546001600160a01b0316331461087d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661145f57600080fd5b6001600160a01b038216610b7257600080fd5b30600090815260208190526040902054601154811580611490575080155b15611499575050565b600b548211156114a957600b5491505b6114b2826116ab565b6010546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f193505050501580156114f2573d6000803e3d6000fd5b505050565b6000600d541161153c5760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b60448201526064016107fb565b600d54439060009061154f9060066119e9565b9050808211611566576014600e819055600f555050565b6004600e819055600f556012805463ff000000191690555050565b6001600160a01b0383166115a75760405162461bcd60e51b81526004016107fb906119fc565b6001600160a01b0382166115cd5760405162461bcd60e51b81526004016107fb90611a41565b6001600160a01b038316600090815260208190526040902054818110156116455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107fb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c47565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106116e0576116e0611ad0565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611752573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117769190611ae6565b8160018151811061178957611789611ad0565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906117e1908590600090869030904290600401611b03565b600060405180830381600087803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561184457858101830151858201604001528201611828565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610aac57600080fd5b6000806040838503121561188d57600080fd5b823561189881611865565b946020939093013593505050565b6000806000606084860312156118bb57600080fd5b83356118c681611865565b925060208401356118d681611865565b929592945050506040919091013590565b6000602082840312156118f957600080fd5b813561190481611865565b9392505050565b6000806040838503121561191e57600080fd5b50508035926020909101359150565b6000806040838503121561194057600080fd5b823561194b81611865565b9150602083013561195b81611865565b809150509250929050565b6000806040838503121561197957600080fd5b823561198481611865565b91506020830135801515811461195b57600080fd5b600181811c908216806119ad57607f821691505b6020821081036119cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610755576107556119d3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082028115828204841417610755576107556119d3565b600082611ab857634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610755576107556119d3565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611af857600080fd5b815161190481611865565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611b535784516001600160a01b031683529383019391830191600101611b2e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220227c5f8d431eb176c155adc7d719e758a3458d4884b8323d4f303ba9d13b4f6864736f6c63430008130033
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80638da5cb5b11610123578063c9567bf9116100ab578063df8408fe1161006f578063df8408fe14610623578063e6f7053114610643578063e70fdab414610663578063eb81994814610679578063f2fde38b1461068f57600080fd5b8063c9567bf9146105a3578063d0a39814146105b8578063d621e813146105ce578063db861599146105ed578063dd62ed3e1461060357600080fd5b8063a8b08982116100f2578063a8b08982146104f8578063a9059cbb1461052c578063aee685bb1461054c578063b9e937001461056d578063baccf5cf1461058357600080fd5b80638da5cb5b1461047d57806395d89b411461049b578063a0e47bf6146104b0578063a457c2d7146104d857600080fd5b80634a62bb65116101a65780636aa5b37f116101755780636aa5b37f146103df57806370a08231146103f5578063715018a61461042b578063751039fc1461044057806376771d4b1461045557600080fd5b80634a62bb651461035c578063638b1b1414610376578063652e2f04146103b357806366a88d96146103c957600080fd5b806323b872dd116101ed57806323b872dd146102be57806329b1c15c146102de578063313ce56714610300578063395093511461031c57806343bcf89e1461033c57600080fd5b806306fdde031461022a578063095ea7b3146102555780630c44a69e1461028557806318160ddd146102a957600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106af565b60405161024c9190611817565b60405180910390f35b34801561026157600080fd5b5061027561027036600461187a565b610741565b604051901515815260200161024c565b34801561029157600080fd5b5061029b60115481565b60405190815260200161024c565b3480156102b557600080fd5b5060025461029b565b3480156102ca57600080fd5b506102756102d93660046118a6565b61075b565b3480156102ea57600080fd5b506102fe6102f93660046118e7565b61077f565b005b34801561030c57600080fd5b506040516012815260200161024c565b34801561032857600080fd5b5061027561033736600461187a565b610849565b34801561034857600080fd5b506012546102759062010000900460ff1681565b34801561036857600080fd5b506012546102759060ff1681565b34801561038257600080fd5b5060105461039b9061010090046001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b3480156103bf57600080fd5b5061029b60095481565b3480156103d557600080fd5b5061029b600a5481565b3480156103eb57600080fd5b5061029b60085481565b34801561040157600080fd5b5061029b6104103660046118e7565b6001600160a01b031660009081526020819052604090205490565b34801561043757600080fd5b506102fe61086b565b34801561044c57600080fd5b506102fe61087f565b34801561046157600080fd5b5061039b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b34801561048957600080fd5b506005546001600160a01b031661039b565b3480156104a757600080fd5b5061023f610893565b3480156104bc57600080fd5b5061039b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156104e457600080fd5b506102756104f336600461187a565b6108a2565b34801561050457600080fd5b5061039b7f000000000000000000000000c96d4f02748f7b6e885497c03a11a77a4df598e581565b34801561053857600080fd5b5061027561054736600461187a565b61091d565b34801561055857600080fd5b50601254610275906301000000900460ff1681565b34801561057957600080fd5b5061029b600e5481565b34801561058f57600080fd5b506102fe61059e36600461190b565b61092b565b3480156105af57600080fd5b506102fe61093e565b3480156105c457600080fd5b5061029b600f5481565b3480156105da57600080fd5b5060125461027590610100900460ff1681565b3480156105f957600080fd5b5061029b600b5481565b34801561060f57600080fd5b5061029b61061e36600461192d565b6109b9565b34801561062f57600080fd5b506102fe61063e366004611966565b6109e4565b34801561064f57600080fd5b5061027561065e36600461187a565b610a17565b34801561066f57600080fd5b5061029b600d5481565b34801561068557600080fd5b5061029b600c5481565b34801561069b57600080fd5b506102fe6106aa3660046118e7565b610a36565b6060600380546106be90611999565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90611999565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b60003361074f818585610aaf565b60019150505b92915050565b600033610769858285610bd3565b610774858585610c4d565b506001949350505050565b60105461010090046001600160a01b0316331461079b57600080fd5b6001600160a01b0381166108045760405162461bcd60e51b815260206004820152602560248201527f4552524f523a205f64657657616c6c657420616464726573732063616e6e6f74604482015264020626520360dc1b60648201526084015b60405180910390fd5b60108054610100600160a81b0319166101006001600160a01b03938416810291909117918290559004166000908152600660205260409020805460ff19166001179055565b60003361074f81858561085c83836109b9565b61086691906119e9565b610aaf565b6108736113a0565b61087d60006113fa565b565b6108876113a0565b6012805460ff19169055565b6060600480546106be90611999565b600033816108b082866109b9565b9050838110156109105760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107fb565b6107748286868403610aaf565b60003361074f818585610c4d565b6109336113a0565b600e91909155600f55565b6109466113a0565b600d54156109a25760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b60648201526084016107fb565b43600d556012805462ffff00191662010100179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6109ec6113a0565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b60105460009061010090046001600160a01b031661074f84828561144c565b610a3e6113a0565b6001600160a01b038116610aa35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107fb565b610aac816113fa565b50565b6001600160a01b038316610b115760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107fb565b6001600160a01b038216610b725760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107fb565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610bdf84846109b9565b90506000198114610c475781811015610c3a5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107fb565b610c478484848403610aaf565b50505050565b6001600160a01b038316610c735760405162461bcd60e51b81526004016107fb906119fc565b6001600160a01b038216610c995760405162461bcd60e51b81526004016107fb90611a41565b60008111610ce95760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e203000000060448201526064016107fb565b60125460ff161561110f576005546001600160a01b03848116911614801590610d2057506005546001600160a01b03838116911614155b8015610d3457506001600160a01b03821615155b8015610d4b57506001600160a01b03821661dead14155b1561110f57601254610100900460ff16610e47576001600160a01b03831660009081526007602052604090205460ff1680610d9e57506001600160a01b03821660009081526007602052604090205460ff165b610dea5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e00000060448201526064016107fb565b6005546001600160a01b03848116911614610e475760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c65640000000000000060448201526064016107fb565b7f000000000000000000000000c96d4f02748f7b6e885497c03a11a77a4df598e56001600160a01b0316836001600160a01b0316148015610ea157506001600160a01b03821660009081526007602052604090205460ff16155b15610f8957600854811115610f105760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b60648201526084016107fb565b600a546001600160a01b038316600090815260208190526040902054610f3690836119e9565b1115610f845760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c65740060448201526064016107fb565b61110f565b7f000000000000000000000000c96d4f02748f7b6e885497c03a11a77a4df598e56001600160a01b0316826001600160a01b0316148015610fe357506001600160a01b03831660009081526007602052604090205460ff16155b1561105457600954811115610f845760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b60648201526084016107fb565b6001600160a01b03821660009081526007602052604090205460ff1615801561109657506001600160a01b03831660009081526007602052604090205460ff16155b1561110f57600a546001600160a01b0383166000908152602081905260409020546110c190836119e9565b111561110f5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c65740060448201526064016107fb565b30600090815260208190526040902054600b548110801590819061113b575060125462010000900460ff165b801561114a575060105460ff16155b80156111575750600c5483115b801561119557507f000000000000000000000000c96d4f02748f7b6e885497c03a11a77a4df598e56001600160a01b0316856001600160a01b031614155b80156111ba57506001600160a01b03851660009081526006602052604090205460ff16155b80156111df57506001600160a01b03841660009081526006602052604090205460ff16155b15611204576010805460ff191660011790556111f9611472565b6010805460ff191690555b6001600160a01b03851660009081526006602052604090205460019060ff168061124657506001600160a01b03851660009081526006602052604090205460ff165b1561124f575060005b6000811561138c576012546301000000900460ff1615611271576112716114f7565b7f000000000000000000000000c96d4f02748f7b6e885497c03a11a77a4df598e56001600160a01b0316866001600160a01b03161480156112b457506000600f54115b156112f2576064600f54866112c99190611a84565b6112d39190611a9b565b905080601160008282546112e791906119e9565b9091555061136e9050565b7f000000000000000000000000c96d4f02748f7b6e885497c03a11a77a4df598e56001600160a01b0316876001600160a01b031614801561133557506000600e54115b1561136e576064600e548661134a9190611a84565b6113549190611a9b565b9050806011600082825461136891906119e9565b90915550505b801561137f5761137f873083611581565b6113898186611abd565b94505b611397878787611581565b50505050505050565b6005546001600160a01b0316331461087d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107fb565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661145f57600080fd5b6001600160a01b038216610b7257600080fd5b30600090815260208190526040902054601154811580611490575080155b15611499575050565b600b548211156114a957600b5491505b6114b2826116ab565b6010546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f193505050501580156114f2573d6000803e3d6000fd5b505050565b6000600d541161153c5760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b60448201526064016107fb565b600d54439060009061154f9060066119e9565b9050808211611566576014600e819055600f555050565b6004600e819055600f556012805463ff000000191690555050565b6001600160a01b0383166115a75760405162461bcd60e51b81526004016107fb906119fc565b6001600160a01b0382166115cd5760405162461bcd60e51b81526004016107fb90611a41565b6001600160a01b038316600090815260208190526040902054818110156116455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107fb565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610c47565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106116e0576116e0611ad0565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611752573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117769190611ae6565b8160018151811061178957611789611ad0565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906117e1908590600090869030904290600401611b03565b600060405180830381600087803b1580156117fb57600080fd5b505af115801561180f573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b8181101561184457858101830151858201604001528201611828565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610aac57600080fd5b6000806040838503121561188d57600080fd5b823561189881611865565b946020939093013593505050565b6000806000606084860312156118bb57600080fd5b83356118c681611865565b925060208401356118d681611865565b929592945050506040919091013590565b6000602082840312156118f957600080fd5b813561190481611865565b9392505050565b6000806040838503121561191e57600080fd5b50508035926020909101359150565b6000806040838503121561194057600080fd5b823561194b81611865565b9150602083013561195b81611865565b809150509250929050565b6000806040838503121561197957600080fd5b823561198481611865565b91506020830135801515811461195b57600080fd5b600181811c908216806119ad57607f821691505b6020821081036119cd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820180821115610755576107556119d3565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8082028115828204841417610755576107556119d3565b600082611ab857634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115610755576107556119d3565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611af857600080fd5b815161190481611865565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611b535784516001600160a01b031683529383019391830191600101611b2e565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220227c5f8d431eb176c155adc7d719e758a3458d4884b8323d4f303ba9d13b4f6864736f6c63430008130033
Deployed Bytecode Sourcemap
16607:8194:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6315:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8675:201;;;;;;;;;;-1:-1:-1;8675:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8675:201:0;1023:187:1;17154:27:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;17154:27:0;1215:177:1;7444:108:0;;;;;;;;;;-1:-1:-1;7532:12:0;;7444:108;;9456:261;;;;;;;;;;-1:-1:-1;9456:261:0;;;;;:::i;:::-;;:::i;23334:313::-;;;;;;;;;;-1:-1:-1;23334:313:0;;;;;:::i;:::-;;:::i;:::-;;7286:93;;;;;;;;;;-1:-1:-1;7286:93:0;;7369:2;2252:36:1;;2240:2;2225:18;7286:93:0;2110:184:1;10126:238:0;;;;;;;;;;-1:-1:-1;10126:238:0;;;;;:::i;:::-;;:::i;17595:34::-;;;;;;;;;;-1:-1:-1;17595:34:0;;;;;;;;;;;17516:33;;;;;;;;;;-1:-1:-1;17516:33:0;;;;;;;;17114;;;;;;;;;;-1:-1:-1;17114:33:0;;;;;;;-1:-1:-1;;;;;17114:33:0;;;;;;-1:-1:-1;;;;;2463:32:1;;;2445:51;;2433:2;2418:18;17114:33:0;2299:203:1;16844:27:0;;;;;;;;;;;;;;;;16878:29;;;;;;;;;;;;;;;;16811:26;;;;;;;;;;;;;;;;7615:127;;;;;;;;;;-1:-1:-1;7615:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7716:18:0;7689:7;7716:18;;;;;;;;;;;;7615:127;4428:103;;;;;;;;;;;;;:::i;18656:84::-;;;;;;;;;;;;;:::i;17231:109::-;;;;;;;;;;;;17297:42;17231:109;;3787:87;;;;;;;;;;-1:-1:-1;3860:6:0;;-1:-1:-1;;;;;3860:6:0;3787:87;;6534:104;;;;;;;;;;;;;:::i;17347:107::-;;;;;;;;;;;;17411:42;17347:107;;10867:436;;;;;;;;;;-1:-1:-1;10867:436:0;;;;;:::i;:::-;;:::i;17188:36::-;;;;;;;;;;;;;;;7948:193;;;;;;;;;;-1:-1:-1;7948:193:0;;;;;:::i;:::-;;:::i;17636:29::-;;;;;;;;;;-1:-1:-1;17636:29:0;;;;;;;;;;;17017:27;;;;;;;;;;;;;;;;23688:162;;;;;;;;;;-1:-1:-1;23688:162:0;;;;;:::i;:::-;;:::i;18746:235::-;;;;;;;;;;;;;:::i;17051:28::-;;;;;;;;;;;;;;;;17556:32;;;;;;;;;;-1:-1:-1;17556:32:0;;;;;;;;;;;16914:25;;;;;;;;;;;;;;;;8204:151;;;;;;;;;;-1:-1:-1;8204:151:0;;;;;:::i;:::-;;:::i;22836:131::-;;;;;;;;;;-1:-1:-1;22836:131:0;;;;;:::i;:::-;;:::i;22973:196::-;;;;;;;;;;-1:-1:-1;22973:196:0;;;;;:::i;:::-;;:::i;16978:32::-;;;;;;;;;;;;;;;;16946:25;;;;;;;;;;;;;;;;4686:201;;;;;;;;;;-1:-1:-1;4686:201:0;;;;;:::i;:::-;;:::i;6315:100::-;6369:13;6402:5;6395:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6315:100;:::o;8675:201::-;8758:4;480:10;8814:32;480:10;8830:7;8839:6;8814:8;:32::i;:::-;8864:4;8857:11;;;8675:201;;;;;:::o;9456:261::-;9553:4;480:10;9611:38;9627:4;480:10;9642:6;9611:15;:38::i;:::-;9660:27;9670:4;9676:2;9680:6;9660:9;:27::i;:::-;-1:-1:-1;9705:4:0;;9456:261;-1:-1:-1;;;;9456:261:0:o;23334:313::-;23427:18;;;;;-1:-1:-1;;;;;23427:18:0;23413:10;:32;23405:41;;;;;;-1:-1:-1;;;;;23465:24:0;;23457:74;;;;-1:-1:-1;;;23457:74:0;;4622:2:1;23457:74:0;;;4604:21:1;4661:2;4641:18;;;4634:30;4700:34;4680:18;;;4673:62;-1:-1:-1;;;4751:18:1;;;4744:35;4796:19;;23457:74:0;;;;;;;;;23542:18;:40;;-1:-1:-1;;;;;;23542:40:0;;-1:-1:-1;;;;;23542:40:0;;;;;;;;;;;;;23613:18;;;-1:-1:-1;23593:39:0;;;:19;:39;;;;;:46;;-1:-1:-1;;23593:46:0;-1:-1:-1;23593:46:0;;;23334:313::o;10126:238::-;10214:4;480:10;10270:64;480:10;10286:7;10323:10;10295:25;480:10;10286:7;10295:9;:25::i;:::-;:38;;;;:::i;:::-;10270:8;:64::i;4428:103::-;3673:13;:11;:13::i;:::-;4493:30:::1;4520:1;4493:18;:30::i;:::-;4428:103::o:0;18656:84::-;3673:13;:11;:13::i;:::-;18710:14:::1;:22:::0;;-1:-1:-1;;18710:22:0::1;::::0;;18656:84::o;6534:104::-;6590:13;6623:7;6616:14;;;;;:::i;10867:436::-;10960:4;480:10;10960:4;11043:25;480:10;11060:7;11043:9;:25::i;:::-;11016:52;;11107:15;11087:16;:35;;11079:85;;;;-1:-1:-1;;;11079:85:0;;5290:2:1;11079:85:0;;;5272:21:1;5329:2;5309:18;;;5302:30;5368:34;5348:18;;;5341:62;-1:-1:-1;;;5419:18:1;;;5412:35;5464:19;;11079:85:0;5088:401:1;11079:85:0;11200:60;11209:5;11216:7;11244:15;11225:16;:34;11200:8;:60::i;7948:193::-;8027:4;480:10;8083:28;480:10;8100:2;8104:6;8083:9;:28::i;23688:162::-;3673:13;:11;:13::i;:::-;23779:12:::1;:25:::0;;;;23815:13:::1;:27:::0;23688:162::o;18746:235::-;3673:13;:11;:13::i;:::-;18805:17:::1;::::0;:22;18797:71:::1;;;::::0;-1:-1:-1;;;18797:71:0;;5696:2:1;18797:71:0::1;::::0;::::1;5678:21:1::0;5735:2;5715:18;;;5708:30;5774:34;5754:18;;;5747:62;-1:-1:-1;;;5825:18:1;;;5818:34;5869:19;;18797:71:0::1;5494:400:1::0;18797:71:0::1;18899:12;18879:17;:32:::0;18922:12:::1;:19:::0;;-1:-1:-1;;18952:21:0;;;;;18746:235::o;8204:151::-;-1:-1:-1;;;;;8320:18:0;;;8293:7;8320:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8204:151::o;22836:131::-;3673:13;:11;:13::i;:::-;-1:-1:-1;;;;;22920:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;22920:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22836:131::o;22973:196::-;23079:18;;23046:4;;23079:18;;;-1:-1:-1;;;;;23079:18:0;23108:31;23116:7;23079:18;23132:6;23108:7;:31::i;4686:201::-;3673:13;:11;:13::i;:::-;-1:-1:-1;;;;;4775:22:0;::::1;4767:73;;;::::0;-1:-1:-1;;;4767:73:0;;6101:2:1;4767:73:0::1;::::0;::::1;6083:21:1::0;6140:2;6120:18;;;6113:30;6179:34;6159:18;;;6152:62;-1:-1:-1;;;6230:18:1;;;6223:36;6276:19;;4767:73:0::1;5899:402:1::0;4767:73:0::1;4851:28;4870:8;4851:18;:28::i;:::-;4686:201:::0;:::o;14860:346::-;-1:-1:-1;;;;;14962:19:0;;14954:68;;;;-1:-1:-1;;;14954:68:0;;6508:2:1;14954:68:0;;;6490:21:1;6547:2;6527:18;;;6520:30;6586:34;6566:18;;;6559:62;-1:-1:-1;;;6637:18:1;;;6630:34;6681:19;;14954:68:0;6306:400:1;14954:68:0;-1:-1:-1;;;;;15041:21:0;;15033:68;;;;-1:-1:-1;;;15033:68:0;;6913:2:1;15033:68:0;;;6895:21:1;6952:2;6932:18;;;6925:30;6991:34;6971:18;;;6964:62;-1:-1:-1;;;7042:18:1;;;7035:32;7084:19;;15033:68:0;6711:398:1;15033:68:0;-1:-1:-1;;;;;15114:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15166:32;;1361:25:1;;;15166:32:0;;1334:18:1;15166:32:0;;;;;;;14860:346;;;:::o;15511:419::-;15612:24;15639:25;15649:5;15656:7;15639:9;:25::i;:::-;15612:52;;-1:-1:-1;;15679:16:0;:37;15675:248;;15761:6;15741:16;:26;;15733:68;;;;-1:-1:-1;;;15733:68:0;;7316:2:1;15733:68:0;;;7298:21:1;7355:2;7335:18;;;7328:30;7394:31;7374:18;;;7367:59;7443:18;;15733:68:0;7114:353:1;15733:68:0;15845:51;15854:5;15861:7;15889:6;15870:16;:25;15845:8;:51::i;:::-;15601:329;15511:419;;;:::o;18987:3449::-;-1:-1:-1;;;;;19119:18:0;;19111:68;;;;-1:-1:-1;;;19111:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19198:16:0;;19190:64;;;;-1:-1:-1;;;19190:64:0;;;;;;;:::i;:::-;19282:1;19273:6;:10;19265:52;;;;-1:-1:-1;;;19265:52:0;;8484:2:1;19265:52:0;;;8466:21:1;8523:2;8503:18;;;8496:30;8562:31;8542:18;;;8535:59;8611:18;;19265:52:0;8282:353:1;19265:52:0;19332:14;;;;19328:1774;;;3860:6;;-1:-1:-1;;;;;19385:15:0;;;3860:6;;19385:15;;;;:49;;-1:-1:-1;3860:6:0;;-1:-1:-1;;;;;19421:13:0;;;3860:6;;19421:13;;19385:49;:86;;;;-1:-1:-1;;;;;;19455:16:0;;;;19385:86;:128;;;;-1:-1:-1;;;;;;19492:21:0;;19506:6;19492:21;;19385:128;19363:1728;;;19553:12;;;;;;;19548:336;;-1:-1:-1;;;;;19624:26:0;;;;;;:20;:26;;;;;;;;;:83;;-1:-1:-1;;;;;;19683:24:0;;;;;;:20;:24;;;;;;;;19624:83;19590:198;;;;-1:-1:-1;;;19590:198:0;;8842:2:1;19590:198:0;;;8824:21:1;8881:2;8861:18;;;8854:30;8920:31;8900:18;;;8893:59;8969:18;;19590:198:0;8640:353:1;19590:198:0;3860:6;;-1:-1:-1;;;;;19819:15:0;;;3860:6;;19819:15;19811:53;;;;-1:-1:-1;;;19811:53:0;;9200:2:1;19811:53:0;;;9182:21:1;9239:2;9219:18;;;9212:30;9278:27;9258:18;;;9251:55;9323:18;;19811:53:0;8998:349:1;19811:53:0;19964:11;-1:-1:-1;;;;;19956:19:0;:4;-1:-1:-1;;;;;19956:19:0;;:48;;;;-1:-1:-1;;;;;;19980:24:0;;;;;;:20;:24;;;;;;;;19979:25;19956:48;19930:1146;;;20091:11;;20081:6;:21;;20047:154;;;;-1:-1:-1;;;20047:154:0;;9554:2:1;20047:154:0;;;9536:21:1;9593:2;9573:18;;;9566:30;9632:34;9612:18;;;9605:62;-1:-1:-1;;;9683:18:1;;;9676:45;9738:19;;20047:154:0;9352:411:1;20047:154:0;20284:14;;-1:-1:-1;;;;;7716:18:0;;7689:7;7716:18;;;;;;;;;;;20258:22;;:6;:22;:::i;:::-;:40;;20224:157;;;;-1:-1:-1;;;20224:157:0;;9970:2:1;20224:157:0;;;9952:21:1;10009:2;9989:18;;;9982:30;10048:33;10028:18;;;10021:61;10099:18;;20224:157:0;9768:355:1;20224:157:0;19930:1146;;;20485:11;-1:-1:-1;;;;;20479:17:0;:2;-1:-1:-1;;;;;20479:17:0;;:48;;;;-1:-1:-1;;;;;;20501:26:0;;;;;;:20;:26;;;;;;;;20500:27;20479:48;20453:623;;;20614:12;;20604:6;:22;;20570:157;;;;-1:-1:-1;;;20570:157:0;;10330:2:1;20570:157:0;;;10312:21:1;10369:2;10349:18;;;10342:30;10408:34;10388:18;;;10381:62;-1:-1:-1;;;10459:18:1;;;10452:47;10516:19;;20570:157:0;10128:413:1;20453:623:0;-1:-1:-1;;;;;20780:24:0;;;;;;:20;:24;;;;;;;;20779:25;:77;;;;-1:-1:-1;;;;;;20830:26:0;;;;;;:20;:26;;;;;;;;20829:27;20779:77;20753:323;;;20959:14;;-1:-1:-1;;;;;7716:18:0;;7689:7;7716:18;;;;;;;;;;;20933:22;;:6;:22;:::i;:::-;:40;;20899:157;;;;-1:-1:-1;;;20899:157:0;;9970:2:1;20899:157:0;;;9952:21:1;10009:2;9989:18;;;9982:30;10048:33;10028:18;;;10021:61;10099:18;;20899:157:0;9768:355:1;20899:157:0;21161:4;21112:28;7716:18;;;;;;;;;;;21217:10;;21193:34;;;;;;;21256:38;;-1:-1:-1;21280:14:0;;;;;;;21256:38;:64;;;;-1:-1:-1;21312:8:0;;;;21311:9;21256:64;:100;;;;;21346:10;;21337:6;:19;21256:100;:140;;;;;21384:11;-1:-1:-1;;;;;21376:19:0;:4;-1:-1:-1;;;;;21376:19:0;;21374:22;21256:140;:183;;;;-1:-1:-1;;;;;;21414:25:0;;;;;;:19;:25;;;;;;;;21413:26;21256:183;:224;;;;-1:-1:-1;;;;;;21457:23:0;;;;;;:19;:23;;;;;;;;21456:24;21256:224;21238:352;;;21507:8;:15;;-1:-1:-1;;21507:15:0;21518:4;21507:15;;;21537:10;:8;:10::i;:::-;21562:8;:16;;-1:-1:-1;;21562:16:0;;;21238:352;-1:-1:-1;;;;;21634:25:0;;21600:12;21634:25;;;:19;:25;;;;;;21615:4;;21634:25;;;:52;;-1:-1:-1;;;;;;21663:23:0;;;;;;:19;:23;;;;;;;;21634:52;21630:100;;;-1:-1:-1;21713:5:0;21630:100;21740:12;21771:7;21767:618;;;21798:10;;;;;;;21795:61;;;21827:12;:10;:12::i;:::-;21901:11;-1:-1:-1;;;;;21895:17:0;:2;-1:-1:-1;;;;;21895:17:0;;:38;;;;;21932:1;21916:13;;:17;21895:38;21891:349;;;21988:3;21971:13;;21962:6;:22;;;;:::i;:::-;21961:30;;;;:::i;:::-;21954:37;;22026:4;22010:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;21891:349:0;;-1:-1:-1;21891:349:0;;22097:11;-1:-1:-1;;;;;22089:19:0;:4;-1:-1:-1;;;;;22089:19:0;;:39;;;;;22127:1;22112:12;;:16;22089:39;22085:155;;;22182:3;22166:12;;22157:6;:21;;;;:::i;:::-;22156:29;;;;:::i;:::-;22149:36;;22220:4;22204:12;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;22085:155:0;22258:8;;22254:91;;22287:42;22303:4;22317;22324;22287:15;:42::i;:::-;22359:14;22369:4;22359:14;;:::i;:::-;;;21767:618;22395:33;22411:4;22417:2;22421:6;22395:15;:33::i;:::-;19100:3336;;;;18987:3449;;;:::o;3952:132::-;3860:6;;-1:-1:-1;;;;;3860:6:0;480:10;4016:23;4008:68;;;;-1:-1:-1;;;4008:68:0;;11276:2:1;4008:68:0;;;11258:21:1;;;11295:18;;;11288:30;11354:34;11334:18;;;11327:62;11406:18;;4008:68:0;11074:356:1;5047:191:0;5140:6;;;-1:-1:-1;;;;;5157:17:0;;;-1:-1:-1;;;;;;5157:17:0;;;;;;;5190:40;;5140:6;;;5157:17;5140:6;;5190:40;;5121:16;;5190:40;5110:128;5047:191;:::o;15214:289::-;-1:-1:-1;;;;;15329:19:0;;15321:28;;;;;;-1:-1:-1;;;;;15368:21:0;;15360:30;;;;;23856:468;23939:4;23895:23;7716:18;;;;;;;;;;;23987:12;;24016:20;;;:46;;-1:-1:-1;24040:22:0;;24016:46;24012:85;;;24079:7;;23856:468::o;24012:85::-;24131:10;;24113:15;:28;24109:89;;;24176:10;;24158:28;;24109:89;24212:32;24228:15;24212;:32::i;:::-;24265:18;;24257:59;;-1:-1:-1;;;;;24265:18:0;;;;;;;;;24294:21;24257:59;;;;;;;;;24294:21;24265:18;24257:59;;;;;;;;;;;;;;;;;;;;;23884:440;;23856:468::o;24330:::-;24414:1;24394:17;;:21;24372:74;;;;-1:-1:-1;;;24372:74:0;;11637:2:1;24372:74:0;;;11619:21:1;11676:2;11656:18;;;11649:30;-1:-1:-1;;;11695:18:1;;;11688:46;11751:18;;24372:74:0;11435:340:1;24372:74:0;24530:17;;24480:12;;24457:20;;24530:21;;24550:1;24530:21;:::i;:::-;24503:48;;24581:16;24565:12;:32;24562:228;;24629:2;24614:12;:17;;;24646:13;:18;24361:437;;24330:468::o;24562:228::-;24712:1;24697:12;:16;;;24728:13;:17;24760:10;:18;;-1:-1:-1;;24760:18:0;;;24361:437;;24330:468::o;11773:806::-;-1:-1:-1;;;;;11870:18:0;;11862:68;;;;-1:-1:-1;;;11862:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11949:16:0;;11941:64;;;;-1:-1:-1;;;11941:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12091:15:0;;12069:19;12091:15;;;;;;;;;;;12125:21;;;;12117:72;;;;-1:-1:-1;;;12117:72:0;;11982:2:1;12117:72:0;;;11964:21:1;12021:2;12001:18;;;11994:30;12060:34;12040:18;;;12033:62;-1:-1:-1;;;12111:18:1;;;12104:36;12157:19;;12117:72:0;11780:402:1;12117:72:0;-1:-1:-1;;;;;12225:15:0;;;:9;:15;;;;;;;;;;;12243:20;;;12225:38;;12443:13;;;;;;;;;;:23;;;;;;12495:26;;1361:25:1;;;12443:13:0;;12495:26;;1334:18:1;12495:26:0;;;;;;;12534:37;23856:468;22442:388;22531:16;;;22545:1;22531:16;;;;;;;;22507:21;;22531:16;;;;;;;;;;-1:-1:-1;22531:16:0;22507:40;;22576:4;22558;22563:1;22558:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;22558:23:0;;;-1:-1:-1;;;;;22558:23:0;;;;;17411:42;-1:-1:-1;;;;;22602:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;22592:4;22597:1;22592:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;22592:26:0;;;:7;;;;;;;;;;;:26;22631:191;;-1:-1:-1;;;22631:191:0;;17411:42;;22631:60;;:191;;22706:11;;22732:1;;22749:4;;22776;;22796:15;;22631:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22496:334;22442:388;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;1858:247::-;1917:6;1970:2;1958:9;1949:7;1945:23;1941:32;1938:52;;;1986:1;1983;1976:12;1938:52;2025:9;2012:23;2044:31;2069:5;2044:31;:::i;:::-;2094:5;1858:247;-1:-1:-1;;;1858:247:1:o;2968:248::-;3036:6;3044;3097:2;3085:9;3076:7;3072:23;3068:32;3065:52;;;3113:1;3110;3103:12;3065:52;-1:-1:-1;;3136:23:1;;;3206:2;3191:18;;;3178:32;;-1:-1:-1;2968:248:1:o;3221:388::-;3289:6;3297;3350:2;3338:9;3329:7;3325:23;3321:32;3318:52;;;3366:1;3363;3356:12;3318:52;3405:9;3392:23;3424:31;3449:5;3424:31;:::i;:::-;3474:5;-1:-1:-1;3531:2:1;3516:18;;3503:32;3544:33;3503:32;3544:33;:::i;:::-;3596:7;3586:17;;;3221:388;;;;;:::o;3614:416::-;3679:6;3687;3740:2;3728:9;3719:7;3715:23;3711:32;3708:52;;;3756:1;3753;3746:12;3708:52;3795:9;3782:23;3814:31;3839:5;3814:31;:::i;:::-;3864:5;-1:-1:-1;3921:2:1;3906:18;;3893:32;3963:15;;3956:23;3944:36;;3934:64;;3994:1;3991;3984:12;4035:380;4114:1;4110:12;;;;4157;;;4178:61;;4232:4;4224:6;4220:17;4210:27;;4178:61;4285:2;4277:6;4274:14;4254:18;4251:38;4248:161;;4331:10;4326:3;4322:20;4319:1;4312:31;4366:4;4363:1;4356:15;4394:4;4391:1;4384:15;4248:161;;4035:380;;;:::o;4826:127::-;4887:10;4882:3;4878:20;4875:1;4868:31;4918:4;4915:1;4908:15;4942:4;4939:1;4932:15;4958:125;5023:9;;;5044:10;;;5041:36;;;5057:18;;:::i;7472:401::-;7674:2;7656:21;;;7713:2;7693:18;;;7686:30;7752:34;7747:2;7732:18;;7725:62;-1:-1:-1;;;7818:2:1;7803:18;;7796:35;7863:3;7848:19;;7472:401::o;7878:399::-;8080:2;8062:21;;;8119:2;8099:18;;;8092:30;8158:34;8153:2;8138:18;;8131:62;-1:-1:-1;;;8224:2:1;8209:18;;8202:33;8267:3;8252:19;;7878:399::o;10546:168::-;10619:9;;;10650;;10667:15;;;10661:22;;10647:37;10637:71;;10688:18;;:::i;10719:217::-;10759:1;10785;10775:132;;10829:10;10824:3;10820:20;10817:1;10810:31;10864:4;10861:1;10854:15;10892:4;10889:1;10882:15;10775:132;-1:-1:-1;10921:9:1;;10719:217::o;10941:128::-;11008:9;;;11029:11;;;11026:37;;;11043:18;;:::i;12319:127::-;12380:10;12375:3;12371:20;12368:1;12361:31;12411:4;12408:1;12401:15;12435:4;12432:1;12425:15;12451:251;12521:6;12574:2;12562:9;12553:7;12549:23;12545:32;12542:52;;;12590:1;12587;12580:12;12542:52;12622:9;12616:16;12641:31;12666:5;12641:31;:::i;12707:980::-;12969:4;13017:3;13006:9;13002:19;13048:6;13037:9;13030:25;13074:2;13112:6;13107:2;13096:9;13092:18;13085:34;13155:3;13150:2;13139:9;13135:18;13128:31;13179:6;13214;13208:13;13245:6;13237;13230:22;13283:3;13272:9;13268:19;13261:26;;13322:2;13314:6;13310:15;13296:29;;13343:1;13353:195;13367:6;13364:1;13361:13;13353:195;;;13432:13;;-1:-1:-1;;;;;13428:39:1;13416:52;;13523:15;;;;13488:12;;;;13464:1;13382:9;13353:195;;;-1:-1:-1;;;;;;;13604:32:1;;;;13599:2;13584:18;;13577:60;-1:-1:-1;;;13668:3:1;13653:19;13646:35;13565:3;12707:980;-1:-1:-1;;;12707:980:1:o
Swarm Source
ipfs://227c5f8d431eb176c155adc7d719e758a3458d4884b8323d4f303ba9d13b4f68
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.