ERC-20
Overview
Max Total Supply
1,000,000,000 DIE-死
Holders
125
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000000000220926907 DIE-死Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
THEDIE
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-20 */ /* 這是為社區提供的,由 vitalik 提供 This is for the community, courtesy of vitalik */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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`). * 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); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @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); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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 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 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 {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract THEDIE is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping (address => bool) public blacklisted; address public constant deadAddress = address(0xdead); address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = true; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("DIE", unicode"DIE-死") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), USDC); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 0; uint256 _buyLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 _sellLiquidityFee = 0; uint256 totalSupply = 1000_000_000 * 1e18; maxTransactionAmount = totalSupply * 5 / 1000; // 2% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 10 / 1000; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0x0); // // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { maxTransactionAmount = newNum; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { maxWallet = newNum; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 10, "Must keep fees at 10% or less"); } function updateSellFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 10, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } //To Block Bots to trade function blacklistBot(address _adr,bool _status) public onlyOwner { blacklisted[_adr] = _status; } function updateDevWallet(address newDevWallet) external onlyOwner { emit devWalletUpdated(newDevWallet, devWallet); devWallet = newDevWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } 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(!blacklisted[from] && !blacklisted[to],"Error: Blacklist Bots/Contracts not Allowed!!"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForUSDC(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = USDC; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of USDC path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForUSDC(contractBalance); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_adr","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"blacklistBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","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":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600780546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600c80546201000162ffffff199091161790553480156200004a57600080fd5b506040518060400160405280600381526020016244494560e81b815250604051806040016040528060078152602001664449452de6adbb60c81b815250816003908162000098919062000631565b506004620000a7828262000631565b505050620000c4620000be6200032960201b60201c565b6200032d565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e68160016200037f565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000131573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001579190620006fd565b6007546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001a9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cf9190620006fd565b6001600160a01b031660a0819052620001ea9060016200037f565b60008080806b033b2e3c9fd0803ce80000006103e86200020c82600562000745565b62000218919062000767565b6009556103e86200022b82600a62000745565b62000237919062000767565b600b556127106200024a82600562000745565b62000256919062000767565b600a55600e859055600f8490556200026f84866200078a565b600d55601183905560128290556200028882846200078a565b601055600880546001600160a01b0319169055620002ba620002b26005546001600160a01b031690565b6001620003f9565b620002c7306001620003f9565b620002d661dead6001620003f9565b620002f5620002ed6005546001600160a01b031690565b60016200037f565b620003023060016200037f565b6200031161dead60016200037f565b6200031d3382620004a3565b505050505050620007a5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003ce5760405162461bcd60e51b815260206004820181905260248201526000805160206200271083398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004445760405162461bcd60e51b81526020600482018190526024820152600080516020620027108339815191526044820152606401620003c5565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620004fb5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003c5565b80600260008282546200050f91906200078a565b90915550506001600160a01b038216600090815260208190526040812080548392906200053e9084906200078a565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005b857607f821691505b602082108103620005d957634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200058857600081815260208120601f850160051c81016020861015620006085750805b601f850160051c820191505b81811015620006295782815560010162000614565b505050505050565b81516001600160401b038111156200064d576200064d6200058d565b62000665816200065e8454620005a3565b84620005df565b602080601f8311600181146200069d5760008415620006845750858301515b600019600386901b1c1916600185901b17855562000629565b600085815260208120601f198616915b82811015620006ce57888601518255948401946001909101908401620006ad565b5085821015620006ed5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200071057600080fd5b81516001600160a01b03811681146200072857600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200076257620007626200072f565b500290565b6000826200078557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007a057620007a06200072f565b500190565b60805160a051611f14620007fc600039600081816104330152818161130b0152818161151c0152818161162c015281816116d5015261178f01526000818161033601528181611a730152611ab20152611f146000f3fe60806040526004361061026b5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461076d578063e2f45605146107b3578063f11a24d3146107c9578063f2fde38b146107df578063f6374342146107ff578063f8b45b051461081557600080fd5b8063c18bc195146106d1578063c8c8ebe4146106f1578063d257b34f14610707578063d85ba06314610727578063dbac26e91461073d57600080fd5b806395d89b411161010857806395d89b41146106315780639c3b4fdc14610646578063a0d82dc51461065c578063a9059cbb14610672578063bbc0c74214610692578063c0246668146106b157600080fd5b806389a302711461059e5780638a8c523c146105be5780638da5cb5b146105d35780638ea5220f146105f1578063924de9b71461061157600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104de57806370a08231146104fe578063715018a614610534578063751039fc146105495780637571336a1461055e5780638236802e1461057e57600080fd5b806349bd5a5e146104215780634a62bb65146104555780634fbee1931461046f57806366ca9b83146104a85780636a486a8e146104c857600080fd5b806318160ddd1161022f57806318160ddd146103705780631816467f1461038f578063203e727e146103af57806323b872dd146103cf57806327c8f835146103ef578063313ce5671461040557600080fd5b806302dbd8f81461027757806306fdde0314610299578063095ea7b3146102c457806310d5de53146102f45780631694505e1461032457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611b2a565b61082b565b005b3480156102a557600080fd5b506102ae6108cb565b6040516102bb9190611b4c565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004611bb8565b61095d565b60405190151581526020016102bb565b34801561030057600080fd5b506102e461030f366004611be2565b60146020526000908152604090205460ff1681565b34801561033057600080fd5b506103587f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102bb565b34801561037c57600080fd5b506002545b6040519081526020016102bb565b34801561039b57600080fd5b506102976103aa366004611be2565b610973565b3480156103bb57600080fd5b506102976103ca366004611bfd565b6109fa565b3480156103db57600080fd5b506102e46103ea366004611c16565b610a29565b3480156103fb57600080fd5b5061035861dead81565b34801561041157600080fd5b50604051601281526020016102bb565b34801561042d57600080fd5b506103587f000000000000000000000000000000000000000000000000000000000000000081565b34801561046157600080fd5b50600c546102e49060ff1681565b34801561047b57600080fd5b506102e461048a366004611be2565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104b457600080fd5b506102976104c3366004611b2a565b610ad3565b3480156104d457600080fd5b5061038160105481565b3480156104ea57600080fd5b50600c546102e49062010000900460ff1681565b34801561050a57600080fd5b50610381610519366004611be2565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b50610297610b66565b34801561055557600080fd5b506102e4610b9c565b34801561056a57600080fd5b50610297610579366004611c62565b610bd9565b34801561058a57600080fd5b50610297610599366004611c62565b610c2e565b3480156105aa57600080fd5b50600754610358906001600160a01b031681565b3480156105ca57600080fd5b50610297610c83565b3480156105df57600080fd5b506005546001600160a01b0316610358565b3480156105fd57600080fd5b50600854610358906001600160a01b031681565b34801561061d57600080fd5b5061029761062c366004611c95565b610cc0565b34801561063d57600080fd5b506102ae610d06565b34801561065257600080fd5b50610381600e5481565b34801561066857600080fd5b5061038160115481565b34801561067e57600080fd5b506102e461068d366004611bb8565b610d15565b34801561069e57600080fd5b50600c546102e490610100900460ff1681565b3480156106bd57600080fd5b506102976106cc366004611c62565b610d22565b3480156106dd57600080fd5b506102976106ec366004611bfd565b610dab565b3480156106fd57600080fd5b5061038160095481565b34801561071357600080fd5b506102e4610722366004611bfd565b610dda565b34801561073357600080fd5b50610381600d5481565b34801561074957600080fd5b506102e4610758366004611be2565b60066020526000908152604090205460ff1681565b34801561077957600080fd5b50610381610788366004611cb0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107bf57600080fd5b50610381600a5481565b3480156107d557600080fd5b50610381600f5481565b3480156107eb57600080fd5b506102976107fa366004611be2565b610f31565b34801561080b57600080fd5b5061038160125481565b34801561082157600080fd5b50610381600b5481565b6005546001600160a01b0316331461085e5760405162461bcd60e51b815260040161085590611cda565b60405180910390fd5b601182905560128190556108728183611d25565b6010819055600a10156108c75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610855565b5050565b6060600380546108da90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461090690611d3d565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b600061096a338484610fcc565b50600192915050565b6005546001600160a01b0316331461099d5760405162461bcd60e51b815260040161085590611cda565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a245760405162461bcd60e51b815260040161085590611cda565b600955565b6000610a368484846110f0565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610abb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610855565b610ac88533858403610fcc565b506001949350505050565b6005546001600160a01b03163314610afd5760405162461bcd60e51b815260040161085590611cda565b600e829055600f819055610b118183611d25565b600d819055600a10156108c75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610855565b6005546001600160a01b03163314610b905760405162461bcd60e51b815260040161085590611cda565b610b9a60006117d7565b565b6005546000906001600160a01b03163314610bc95760405162461bcd60e51b815260040161085590611cda565b50600c805460ff19169055600190565b6005546001600160a01b03163314610c035760405162461bcd60e51b815260040161085590611cda565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c585760405162461bcd60e51b815260040161085590611cda565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cad5760405162461bcd60e51b815260040161085590611cda565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610cea5760405162461bcd60e51b815260040161085590611cda565b600c8054911515620100000262ff000019909216919091179055565b6060600480546108da90611d3d565b600061096a3384846110f0565b6005546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161085590611cda565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dd55760405162461bcd60e51b815260040161085590611cda565b600b55565b6005546000906001600160a01b03163314610e075760405162461bcd60e51b815260040161085590611cda565b620186a0610e1460025490565b610e1f906001611d77565b610e299190611d96565b821015610e965760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610855565b6103e8610ea260025490565b610ead906005611d77565b610eb79190611d96565b821115610f235760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610855565b50600a81905560015b919050565b6005546001600160a01b03163314610f5b5760405162461bcd60e51b815260040161085590611cda565b6001600160a01b038116610fc05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610855565b610fc9816117d7565b50565b6001600160a01b03831661102e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610855565b6001600160a01b03821661108f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610855565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111165760405162461bcd60e51b815260040161085590611db8565b6001600160a01b03821661113c5760405162461bcd60e51b815260040161085590611dfd565b6001600160a01b03831660009081526006602052604090205460ff1615801561117e57506001600160a01b03821660009081526006602052604090205460ff16155b6111e05760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a20426c61636b6c69737420426f74732f436f6e7472616374732060448201526c6e6f7420416c6c6f776564212160981b6064820152608401610855565b806000036111f9576111f483836000611829565b505050565b600c5460ff16156114d1576005546001600160a01b0384811691161480159061123057506005546001600160a01b03838116911614155b801561124457506001600160a01b03821615155b801561125b57506001600160a01b03821661dead14155b80156112715750600754600160a01b900460ff16155b156114d157600c54610100900460ff16611309576001600160a01b03831660009081526013602052604090205460ff16806112c457506001600160a01b03821660009081526013602052604090205460ff165b6113095760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610855565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561136357506001600160a01b03821660009081526014602052604090205460ff16155b15611447576009548111156113d85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610855565b600b546001600160a01b0383166000908152602081905260409020546113fe9083611d25565b11156114425760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610855565b6114d1565b6001600160a01b03821660009081526014602052604090205460ff166114d157600b546001600160a01b03831660009081526020819052604090205461148d9083611d25565b11156114d15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610855565b30600090815260208190526040902054600a54811080159081906114fd5750600c5462010000900460ff165b80156115135750600754600160a01b900460ff16155b801561155057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561157557506001600160a01b03851660009081526013602052604090205460ff16155b801561159a57506001600160a01b03841660009081526013602052604090205460ff16155b156115c8576007805460ff60a01b1916600160a01b1790556115ba61197e565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061161657506001600160a01b03851660009081526013602052604090205460ff165b1561161f575060005b600080600083156117c1577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561166d57506000601054115b156116d357611692606461168c6010548a6119c890919063ffffffff16565b906119db565b9250601054601254846116a59190611d77565b6116af9190611d96565b9150601054601154846116c29190611d77565b6116cc9190611d96565b9050611772565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561171657506000600d54115b1561177257611735606461168c600d548a6119c890919063ffffffff16565b9250600d54600f54846117489190611d77565b6117529190611d96565b9150600d54600e54846117659190611d77565b61176f9190611d96565b90505b821561178357611783893085611829565b81156117b4576117b4307f000000000000000000000000000000000000000000000000000000000000000084611829565b6117be8388611e40565b96505b6117cc898989611829565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661184f5760405162461bcd60e51b815260040161085590611db8565b6001600160a01b0382166118755760405162461bcd60e51b815260040161085590611dfd565b6001600160a01b038316600090815260208190526040902054818110156118ed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610855565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611924908490611d25565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161197091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119995750565b600a546119a7906014611d77565b8111156119bf57600a546119bc906014611d77565b90505b610fc9816119e7565b60006119d48284611d77565b9392505050565b60006119d48284611d96565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a1c57611a1c611e57565b6001600160a01b039283166020918202929092010152600754825191169082906001908110611a4d57611a4d611e57565b60200260200101906001600160a01b031690816001600160a01b031681525050611a98307f000000000000000000000000000000000000000000000000000000000000000084610fcc565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611af4928792600092889291909116904290600401611e6d565b600060405180830381600087803b158015611b0e57600080fd5b505af1158015611b22573d6000803e3d6000fd5b505050505050565b60008060408385031215611b3d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b7957858101830151858201604001528201611b5d565b81811115611b8b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f2c57600080fd5b60008060408385031215611bcb57600080fd5b611bd483611ba1565b946020939093013593505050565b600060208284031215611bf457600080fd5b6119d482611ba1565b600060208284031215611c0f57600080fd5b5035919050565b600080600060608486031215611c2b57600080fd5b611c3484611ba1565b9250611c4260208501611ba1565b9150604084013590509250925092565b80358015158114610f2c57600080fd5b60008060408385031215611c7557600080fd5b611c7e83611ba1565b9150611c8c60208401611c52565b90509250929050565b600060208284031215611ca757600080fd5b6119d482611c52565b60008060408385031215611cc357600080fd5b611ccc83611ba1565b9150611c8c60208401611ba1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d3857611d38611d0f565b500190565b600181811c90821680611d5157607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d9157611d91611d0f565b500290565b600082611db357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e5257611e52611d0f565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ebd5784516001600160a01b031683529383019391830191600101611e98565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e682a34c66858cfa232a86a4a4b014842fdc3c1c49e5e98f68d20880ee98d91764736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061026b5760003560e01c806389a3027111610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461076d578063e2f45605146107b3578063f11a24d3146107c9578063f2fde38b146107df578063f6374342146107ff578063f8b45b051461081557600080fd5b8063c18bc195146106d1578063c8c8ebe4146106f1578063d257b34f14610707578063d85ba06314610727578063dbac26e91461073d57600080fd5b806395d89b411161010857806395d89b41146106315780639c3b4fdc14610646578063a0d82dc51461065c578063a9059cbb14610672578063bbc0c74214610692578063c0246668146106b157600080fd5b806389a302711461059e5780638a8c523c146105be5780638da5cb5b146105d35780638ea5220f146105f1578063924de9b71461061157600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104de57806370a08231146104fe578063715018a614610534578063751039fc146105495780637571336a1461055e5780638236802e1461057e57600080fd5b806349bd5a5e146104215780634a62bb65146104555780634fbee1931461046f57806366ca9b83146104a85780636a486a8e146104c857600080fd5b806318160ddd1161022f57806318160ddd146103705780631816467f1461038f578063203e727e146103af57806323b872dd146103cf57806327c8f835146103ef578063313ce5671461040557600080fd5b806302dbd8f81461027757806306fdde0314610299578063095ea7b3146102c457806310d5de53146102f45780631694505e1461032457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b50610297610292366004611b2a565b61082b565b005b3480156102a557600080fd5b506102ae6108cb565b6040516102bb9190611b4c565b60405180910390f35b3480156102d057600080fd5b506102e46102df366004611bb8565b61095d565b60405190151581526020016102bb565b34801561030057600080fd5b506102e461030f366004611be2565b60146020526000908152604090205460ff1681565b34801561033057600080fd5b506103587f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102bb565b34801561037c57600080fd5b506002545b6040519081526020016102bb565b34801561039b57600080fd5b506102976103aa366004611be2565b610973565b3480156103bb57600080fd5b506102976103ca366004611bfd565b6109fa565b3480156103db57600080fd5b506102e46103ea366004611c16565b610a29565b3480156103fb57600080fd5b5061035861dead81565b34801561041157600080fd5b50604051601281526020016102bb565b34801561042d57600080fd5b506103587f0000000000000000000000009742b04058b44125b7895234214c5c8bc6a8770981565b34801561046157600080fd5b50600c546102e49060ff1681565b34801561047b57600080fd5b506102e461048a366004611be2565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104b457600080fd5b506102976104c3366004611b2a565b610ad3565b3480156104d457600080fd5b5061038160105481565b3480156104ea57600080fd5b50600c546102e49062010000900460ff1681565b34801561050a57600080fd5b50610381610519366004611be2565b6001600160a01b031660009081526020819052604090205490565b34801561054057600080fd5b50610297610b66565b34801561055557600080fd5b506102e4610b9c565b34801561056a57600080fd5b50610297610579366004611c62565b610bd9565b34801561058a57600080fd5b50610297610599366004611c62565b610c2e565b3480156105aa57600080fd5b50600754610358906001600160a01b031681565b3480156105ca57600080fd5b50610297610c83565b3480156105df57600080fd5b506005546001600160a01b0316610358565b3480156105fd57600080fd5b50600854610358906001600160a01b031681565b34801561061d57600080fd5b5061029761062c366004611c95565b610cc0565b34801561063d57600080fd5b506102ae610d06565b34801561065257600080fd5b50610381600e5481565b34801561066857600080fd5b5061038160115481565b34801561067e57600080fd5b506102e461068d366004611bb8565b610d15565b34801561069e57600080fd5b50600c546102e490610100900460ff1681565b3480156106bd57600080fd5b506102976106cc366004611c62565b610d22565b3480156106dd57600080fd5b506102976106ec366004611bfd565b610dab565b3480156106fd57600080fd5b5061038160095481565b34801561071357600080fd5b506102e4610722366004611bfd565b610dda565b34801561073357600080fd5b50610381600d5481565b34801561074957600080fd5b506102e4610758366004611be2565b60066020526000908152604090205460ff1681565b34801561077957600080fd5b50610381610788366004611cb0565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107bf57600080fd5b50610381600a5481565b3480156107d557600080fd5b50610381600f5481565b3480156107eb57600080fd5b506102976107fa366004611be2565b610f31565b34801561080b57600080fd5b5061038160125481565b34801561082157600080fd5b50610381600b5481565b6005546001600160a01b0316331461085e5760405162461bcd60e51b815260040161085590611cda565b60405180910390fd5b601182905560128190556108728183611d25565b6010819055600a10156108c75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610855565b5050565b6060600380546108da90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461090690611d3d565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b600061096a338484610fcc565b50600192915050565b6005546001600160a01b0316331461099d5760405162461bcd60e51b815260040161085590611cda565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610a245760405162461bcd60e51b815260040161085590611cda565b600955565b6000610a368484846110f0565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610abb5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610855565b610ac88533858403610fcc565b506001949350505050565b6005546001600160a01b03163314610afd5760405162461bcd60e51b815260040161085590611cda565b600e829055600f819055610b118183611d25565b600d819055600a10156108c75760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c6573730000006044820152606401610855565b6005546001600160a01b03163314610b905760405162461bcd60e51b815260040161085590611cda565b610b9a60006117d7565b565b6005546000906001600160a01b03163314610bc95760405162461bcd60e51b815260040161085590611cda565b50600c805460ff19169055600190565b6005546001600160a01b03163314610c035760405162461bcd60e51b815260040161085590611cda565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c585760405162461bcd60e51b815260040161085590611cda565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cad5760405162461bcd60e51b815260040161085590611cda565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610cea5760405162461bcd60e51b815260040161085590611cda565b600c8054911515620100000262ff000019909216919091179055565b6060600480546108da90611d3d565b600061096a3384846110f0565b6005546001600160a01b03163314610d4c5760405162461bcd60e51b815260040161085590611cda565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610dd55760405162461bcd60e51b815260040161085590611cda565b600b55565b6005546000906001600160a01b03163314610e075760405162461bcd60e51b815260040161085590611cda565b620186a0610e1460025490565b610e1f906001611d77565b610e299190611d96565b821015610e965760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610855565b6103e8610ea260025490565b610ead906005611d77565b610eb79190611d96565b821115610f235760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610855565b50600a81905560015b919050565b6005546001600160a01b03163314610f5b5760405162461bcd60e51b815260040161085590611cda565b6001600160a01b038116610fc05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610855565b610fc9816117d7565b50565b6001600160a01b03831661102e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610855565b6001600160a01b03821661108f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610855565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111165760405162461bcd60e51b815260040161085590611db8565b6001600160a01b03821661113c5760405162461bcd60e51b815260040161085590611dfd565b6001600160a01b03831660009081526006602052604090205460ff1615801561117e57506001600160a01b03821660009081526006602052604090205460ff16155b6111e05760405162461bcd60e51b815260206004820152602d60248201527f4572726f723a20426c61636b6c69737420426f74732f436f6e7472616374732060448201526c6e6f7420416c6c6f776564212160981b6064820152608401610855565b806000036111f9576111f483836000611829565b505050565b600c5460ff16156114d1576005546001600160a01b0384811691161480159061123057506005546001600160a01b03838116911614155b801561124457506001600160a01b03821615155b801561125b57506001600160a01b03821661dead14155b80156112715750600754600160a01b900460ff16155b156114d157600c54610100900460ff16611309576001600160a01b03831660009081526013602052604090205460ff16806112c457506001600160a01b03821660009081526013602052604090205460ff165b6113095760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610855565b7f0000000000000000000000009742b04058b44125b7895234214c5c8bc6a877096001600160a01b0316836001600160a01b031614801561136357506001600160a01b03821660009081526014602052604090205460ff16155b15611447576009548111156113d85760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610855565b600b546001600160a01b0383166000908152602081905260409020546113fe9083611d25565b11156114425760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610855565b6114d1565b6001600160a01b03821660009081526014602052604090205460ff166114d157600b546001600160a01b03831660009081526020819052604090205461148d9083611d25565b11156114d15760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610855565b30600090815260208190526040902054600a54811080159081906114fd5750600c5462010000900460ff165b80156115135750600754600160a01b900460ff16155b801561155057507f0000000000000000000000009742b04058b44125b7895234214c5c8bc6a877096001600160a01b0316846001600160a01b0316145b801561157557506001600160a01b03851660009081526013602052604090205460ff16155b801561159a57506001600160a01b03841660009081526013602052604090205460ff16155b156115c8576007805460ff60a01b1916600160a01b1790556115ba61197e565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061161657506001600160a01b03851660009081526013602052604090205460ff165b1561161f575060005b600080600083156117c1577f0000000000000000000000009742b04058b44125b7895234214c5c8bc6a877096001600160a01b0316886001600160a01b031614801561166d57506000601054115b156116d357611692606461168c6010548a6119c890919063ffffffff16565b906119db565b9250601054601254846116a59190611d77565b6116af9190611d96565b9150601054601154846116c29190611d77565b6116cc9190611d96565b9050611772565b7f0000000000000000000000009742b04058b44125b7895234214c5c8bc6a877096001600160a01b0316896001600160a01b031614801561171657506000600d54115b1561177257611735606461168c600d548a6119c890919063ffffffff16565b9250600d54600f54846117489190611d77565b6117529190611d96565b9150600d54600e54846117659190611d77565b61176f9190611d96565b90505b821561178357611783893085611829565b81156117b4576117b4307f0000000000000000000000009742b04058b44125b7895234214c5c8bc6a8770984611829565b6117be8388611e40565b96505b6117cc898989611829565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661184f5760405162461bcd60e51b815260040161085590611db8565b6001600160a01b0382166118755760405162461bcd60e51b815260040161085590611dfd565b6001600160a01b038316600090815260208190526040902054818110156118ed5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610855565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611924908490611d25565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161197091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190036119995750565b600a546119a7906014611d77565b8111156119bf57600a546119bc906014611d77565b90505b610fc9816119e7565b60006119d48284611d77565b9392505050565b60006119d48284611d96565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a1c57611a1c611e57565b6001600160a01b039283166020918202929092010152600754825191169082906001908110611a4d57611a4d611e57565b60200260200101906001600160a01b031690816001600160a01b031681525050611a98307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fcc565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611af4928792600092889291909116904290600401611e6d565b600060405180830381600087803b158015611b0e57600080fd5b505af1158015611b22573d6000803e3d6000fd5b505050505050565b60008060408385031215611b3d57600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b7957858101830151858201604001528201611b5d565b81811115611b8b576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610f2c57600080fd5b60008060408385031215611bcb57600080fd5b611bd483611ba1565b946020939093013593505050565b600060208284031215611bf457600080fd5b6119d482611ba1565b600060208284031215611c0f57600080fd5b5035919050565b600080600060608486031215611c2b57600080fd5b611c3484611ba1565b9250611c4260208501611ba1565b9150604084013590509250925092565b80358015158114610f2c57600080fd5b60008060408385031215611c7557600080fd5b611c7e83611ba1565b9150611c8c60208401611c52565b90509250929050565b600060208284031215611ca757600080fd5b6119d482611c52565b60008060408385031215611cc357600080fd5b611ccc83611ba1565b9150611c8c60208401611ba1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d3857611d38611d0f565b500190565b600181811c90821680611d5157607f821691505b602082108103611d7157634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d9157611d91611d0f565b500290565b600082611db357634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e5257611e52611d0f565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ebd5784516001600160a01b031683529383019391830191600101611e98565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e682a34c66858cfa232a86a4a4b014842fdc3c1c49e5e98f68d20880ee98d91764736f6c634300080f0033
Deployed Bytecode Sourcemap
23394:10684:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28361:318;;;;;;;;;;-1:-1:-1;28361:318:0;;;;;:::i;:::-;;:::i;:::-;;8250:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10417:169;;;;;;;;;;-1:-1:-1;10417:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;10417:169:0;1306:187:1;24407:63:0;;;;;;;;;;-1:-1:-1;24407:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23472:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;23472:51:0;1689:229:1;9370:108:0;;;;;;;;;;-1:-1:-1;9458:12:0;;9370:108;;;2069:25:1;;;2057:2;2042:18;9370:108:0;1923:177:1;29027:189:0;;;;;;;;;;-1:-1:-1;29027:189:0;;;;;:::i;:::-;;:::i;27441:111::-;;;;;;;;;;-1:-1:-1;27441:111:0;;;;;:::i;:::-;;:::i;11068:492::-;;;;;;;;;;-1:-1:-1;11068:492:0;;;;;:::i;:::-;;:::i;23626:53::-;;;;;;;;;;;;23672:6;23626:53;;9212:93;;;;;;;;;;-1:-1:-1;9212:93:0;;9295:2;2973:36:1;;2961:2;2946:18;9212:93:0;2831:184:1;23530:38:0;;;;;;;;;;;;;;;23937:33;;;;;;;;;;-1:-1:-1;23937:33:0;;;;;;;;29226:126;;;;;;;;;;-1:-1:-1;29226:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29316:28:0;29292:4;29316:28;;;:19;:28;;;;;;;;;29226:126;28042:311;;;;;;;;;;-1:-1:-1;28042:311:0;;;;;:::i;:::-;;:::i;24160:28::-;;;;;;;;;;;;;;;;24017:30;;;;;;;;;;-1:-1:-1;24017:30:0;;;;;;;;;;;9541:127;;;;;;;;;;-1:-1:-1;9541:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9642:18:0;9615:7;9642:18;;;;;;;;;;;;9541:127;1485:103;;;;;;;;;;;;;:::i;26745:121::-;;;;;;;;;;;;;:::i;27671:167::-;;;;;;;;;;-1:-1:-1;27671:167:0;;;;;:::i;:::-;;:::i;28907:112::-;;;;;;;;;;-1:-1:-1;28907:112:0;;;;;:::i;:::-;;:::i;23686:64::-;;;;;;;;;;-1:-1:-1;23686:64:0;;;;-1:-1:-1;;;;;23686:64:0;;;26581:112;;;;;;;;;;;;;:::i;834:87::-;;;;;;;;;;-1:-1:-1;907:6:0;;-1:-1:-1;;;;;907:6:0;834:87;;23789:24;;;;;;;;;;-1:-1:-1;23789:24:0;;;;-1:-1:-1;;;;;23789:24:0;;;27934:100;;;;;;;;;;-1:-1:-1;27934:100:0;;;;;:::i;:::-;;:::i;8469:104::-;;;;;;;;;;;;;:::i;24090:24::-;;;;;;;;;;;;;;;;24195:25;;;;;;;;;;;;;;;;9881:175;;;;;;;;;;-1:-1:-1;9881:175:0;;;;;:::i;:::-;;:::i;23977:33::-;;;;;;;;;;-1:-1:-1;23977:33:0;;;;;;;;;;;28687:182;;;;;;;;;;-1:-1:-1;28687:182:0;;;;;:::i;:::-;;:::i;27560:103::-;;;;;;;;;;-1:-1:-1;27560:103:0;;;;;:::i;:::-;;:::i;23822:35::-;;;;;;;;;;;;;;;;26936:497;;;;;;;;;;-1:-1:-1;26936:497:0;;;;;:::i;:::-;;:::i;24056:27::-;;;;;;;;;;;;;;;;23575:44;;;;;;;;;;-1:-1:-1;23575:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10119:151;;;;;;;;;;-1:-1:-1;10119:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10235:18:0;;;10208:7;10235:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10119:151;23864:33;;;;;;;;;;;;;;;;24121:30;;;;;;;;;;;;;;;;1743:201;;;;;;;;;;-1:-1:-1;1743:201:0;;;;;:::i;:::-;;:::i;24227:31::-;;;;;;;;;;;;;;;;23904:24;;;;;;;;;;;;;;;;28361:318;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;;;;;;;;;28480:10:::1;:20:::0;;;28511:16:::1;:32:::0;;;28570:29:::1;28530:13:::0;28493:7;28570:29:::1;:::i;:::-;28554:13;:45:::0;;;28635:2:::1;-1:-1:-1::0;28618:19:0::1;28610:61;;;::::0;-1:-1:-1;;;28610:61:0;;4722:2:1;28610:61:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;28610:61:0::1;4520:353:1::0;28610:61:0::1;28361:318:::0;;:::o;8250:100::-;8304:13;8337:5;8330:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8250:100;:::o;10417:169::-;10500:4;10517:39;286:10;10540:7;10549:6;10517:8;:39::i;:::-;-1:-1:-1;10574:4:0;10417:169;;;;:::o;29027:189::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;29163:9:::1;::::0;29132:41:::1;::::0;-1:-1:-1;;;;;29163:9:0;;::::1;::::0;29132:41;::::1;::::0;::::1;::::0;29163:9:::1;::::0;29132:41:::1;29184:9;:24:::0;;-1:-1:-1;;;;;;29184:24:0::1;-1:-1:-1::0;;;;;29184:24:0;;;::::1;::::0;;;::::1;::::0;;29027:189::o;27441:111::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;27515:20:::1;:29:::0;27441:111::o;11068:492::-;11208:4;11225:36;11235:6;11243:9;11254:6;11225:9;:36::i;:::-;-1:-1:-1;;;;;11301:19:0;;11274:24;11301:19;;;:11;:19;;;;;;;;286:10;11301:33;;;;;;;;11353:26;;;;11345:79;;;;-1:-1:-1;;;11345:79:0;;5465:2:1;11345:79:0;;;5447:21:1;5504:2;5484:18;;;5477:30;5543:34;5523:18;;;5516:62;-1:-1:-1;;;5594:18:1;;;5587:38;5642:19;;11345:79:0;5263:404:1;11345:79:0;11460:57;11469:6;286:10;11510:6;11491:16;:25;11460:8;:57::i;:::-;-1:-1:-1;11548:4:0;;11068:492;-1:-1:-1;;;;11068:492:0:o;28042:311::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;28160:9:::1;:19:::0;;;28190:15:::1;:31:::0;;;28247:27:::1;28208:13:::0;28172:7;28247:27:::1;:::i;:::-;28232:12;:42:::0;;;28309:2:::1;-1:-1:-1::0;28293:18:0::1;28285:60;;;::::0;-1:-1:-1;;;28285:60:0;;4722:2:1;28285:60:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;28285:60:0::1;4520:353:1::0;1485:103:0;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;1550:30:::1;1577:1;1550:18;:30::i;:::-;1485:103::o:0;26745:121::-;907:6;;26797:4;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;-1:-1:-1;26814:14:0::1;:22:::0;;-1:-1:-1;;26814:22:0::1;::::0;;;26745:121;:::o;27671:167::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27784:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27784:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27671:167::o;28907:112::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28984:17:0;;;::::1;;::::0;;;:11:::1;:17;::::0;;;;:27;;-1:-1:-1;;28984:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;28907:112::o;26581:::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;26636:13:::1;:20:::0;;-1:-1:-1;;26667:18:0;;;;;26581:112::o;27934:100::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;28005:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28005:21:0;;::::1;::::0;;;::::1;::::0;;27934:100::o;8469:104::-;8525:13;8558:7;8551:14;;;;;:::i;9881:175::-;9967:4;9984:42;286:10;10008:9;10019:6;9984:9;:42::i;28687:182::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28772:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;28772:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;28827:34;;1446:41:1;;;28827:34:0::1;::::0;1419:18:1;28827:34:0::1;;;;;;;28687:182:::0;;:::o;27560:103::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;27637:9:::1;:18:::0;27560:103::o;26936:497::-;907:6;;27044:4;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;27123:6:::1;27102:13;9458:12:::0;;;9370:108;27102:13:::1;:17;::::0;27118:1:::1;27102:17;:::i;:::-;27101:28;;;;:::i;:::-;27088:9;:41;;27066:144;;;::::0;-1:-1:-1;;;27066:144:0;;6269:2:1;27066:144:0::1;::::0;::::1;6251:21:1::0;6308:2;6288:18;;;6281:30;6347:34;6327:18;;;6320:62;-1:-1:-1;;;6398:18:1;;;6391:51;6459:19;;27066:144:0::1;6067:417:1::0;27066:144:0::1;27278:4;27257:13;9458:12:::0;;;9370:108;27257:13:::1;:17;::::0;27273:1:::1;27257:17;:::i;:::-;27256:26;;;;:::i;:::-;27243:9;:39;;27221:141;;;::::0;-1:-1:-1;;;27221:141:0;;6691:2:1;27221:141:0::1;::::0;::::1;6673:21:1::0;6730:2;6710:18;;;6703:30;6769:34;6749:18;;;6742:62;-1:-1:-1;;;6820:18:1;;;6813:50;6880:19;;27221:141:0::1;6489:416:1::0;27221:141:0::1;-1:-1:-1::0;27373:18:0::1;:30:::0;;;27421:4:::1;1125:1;26936:497:::0;;;:::o;1743:201::-;907:6;;-1:-1:-1;;;;;907:6:0;286:10;1054:23;1046:68;;;;-1:-1:-1;;;1046:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1832:22:0;::::1;1824:73;;;::::0;-1:-1:-1;;;1824:73:0;;7112:2:1;1824:73:0::1;::::0;::::1;7094:21:1::0;7151:2;7131:18;;;7124:30;7190:34;7170:18;;;7163:62;-1:-1:-1;;;7241:18:1;;;7234:36;7287:19;;1824:73:0::1;6910:402:1::0;1824:73:0::1;1908:28;1927:8;1908:18;:28::i;:::-;1743:201:::0;:::o;13909:380::-;-1:-1:-1;;;;;14045:19:0;;14037:68;;;;-1:-1:-1;;;14037:68:0;;7519:2:1;14037:68:0;;;7501:21:1;7558:2;7538:18;;;7531:30;7597:34;7577:18;;;7570:62;-1:-1:-1;;;7648:18:1;;;7641:34;7692:19;;14037:68:0;7317:400:1;14037:68:0;-1:-1:-1;;;;;14124:21:0;;14116:68;;;;-1:-1:-1;;;14116:68:0;;7924:2:1;14116:68:0;;;7906:21:1;7963:2;7943:18;;;7936:30;8002:34;7982:18;;;7975:62;-1:-1:-1;;;8053:18:1;;;8046:32;8095:19;;14116:68:0;7722:398:1;14116:68:0;-1:-1:-1;;;;;14197:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14249:32;;2069:25:1;;;14249:32:0;;2042:18:1;14249:32:0;;;;;;;13909:380;;;:::o;29360:3785::-;-1:-1:-1;;;;;29492:18:0;;29484:68;;;;-1:-1:-1;;;29484:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29571:16:0;;29563:64;;;;-1:-1:-1;;;29563:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29647:17:0;;;;;;:11;:17;;;;;;;;29646:18;:38;;;;-1:-1:-1;;;;;;29669:15:0;;;;;;:11;:15;;;;;;;;29668:16;29646:38;29638:95;;;;-1:-1:-1;;;29638:95:0;;9137:2:1;29638:95:0;;;9119:21:1;9176:2;9156:18;;;9149:30;9215:34;9195:18;;;9188:62;-1:-1:-1;;;9266:18:1;;;9259:43;9319:19;;29638:95:0;8935:409:1;29638:95:0;29750:6;29760:1;29750:11;29746:93;;29778:28;29794:4;29800:2;29804:1;29778:15;:28::i;:::-;29360:3785;;;:::o;29746:93::-;29855:14;;;;29851:1430;;;907:6;;-1:-1:-1;;;;;29908:15:0;;;907:6;;29908:15;;;;:49;;-1:-1:-1;907:6:0;;-1:-1:-1;;;;;29944:13:0;;;907:6;;29944:13;;29908:49;:86;;;;-1:-1:-1;;;;;;29978:16:0;;;;29908:86;:128;;;;-1:-1:-1;;;;;;30015:21:0;;30029:6;30015:21;;29908:128;:158;;;;-1:-1:-1;30058:8:0;;-1:-1:-1;;;30058:8:0;;;;30057:9;29908:158;29886:1384;;;30106:13;;;;;;;30101:223;;-1:-1:-1;;;;;30178:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30207:23:0;;;;;;:19;:23;;;;;;;;30178:52;30144:160;;;;-1:-1:-1;;;30144:160:0;;9551:2:1;30144:160:0;;;9533:21:1;9590:2;9570:18;;;9563:30;-1:-1:-1;;;9609:18:1;;;9602:52;9671:18;;30144:160:0;9349:346:1;30144:160:0;30538:13;-1:-1:-1;;;;;30530:21:0;:4;-1:-1:-1;;;;;30530:21:0;;:82;;;;-1:-1:-1;;;;;;30577:35:0;;;;;;:31;:35;;;;;;;;30576:36;30530:82;30504:751;;;30699:20;;30689:6;:30;;30655:169;;;;-1:-1:-1;;;30655:169:0;;9902:2:1;30655:169:0;;;9884:21:1;9941:2;9921:18;;;9914:30;9980:34;9960:18;;;9953:62;-1:-1:-1;;;10031:18:1;;;10024:51;10092:19;;30655:169:0;9700:417:1;30655:169:0;30907:9;;-1:-1:-1;;;;;9642:18:0;;9615:7;9642:18;;;;;;;;;;;30881:22;;:6;:22;:::i;:::-;:35;;30847:140;;;;-1:-1:-1;;;30847:140:0;;10324:2:1;30847:140:0;;;10306:21:1;10363:2;10343:18;;;10336:30;-1:-1:-1;;;10382:18:1;;;10375:49;10441:18;;30847:140:0;10122:343:1;30847:140:0;30504:751;;;-1:-1:-1;;;;;31035:35:0;;;;;;:31;:35;;;;;;;;31030:225;;31155:9;;-1:-1:-1;;;;;9642:18:0;;9615:7;9642:18;;;;;;;;;;;31129:22;;:6;:22;:::i;:::-;:35;;31095:140;;;;-1:-1:-1;;;31095:140:0;;10324:2:1;31095:140:0;;;10306:21:1;10363:2;10343:18;;;10336:30;-1:-1:-1;;;10382:18:1;;;10375:49;10441:18;;31095:140:0;10122:343:1;31095:140:0;31342:4;31293:28;9642:18;;;;;;;;;;;31400;;31376:42;;;;;;;31449:35;;-1:-1:-1;31473:11:0;;;;;;;31449:35;:61;;;;-1:-1:-1;31502:8:0;;-1:-1:-1;;;31502:8:0;;;;31501:9;31449:61;:97;;;;;31533:13;-1:-1:-1;;;;;31527:19:0;:2;-1:-1:-1;;;;;31527:19:0;;31449:97;:140;;;;-1:-1:-1;;;;;;31564:25:0;;;;;;:19;:25;;;;;;;;31563:26;31449:140;:181;;;;-1:-1:-1;;;;;;31607:23:0;;;;;;:19;:23;;;;;;;;31606:24;31449:181;31431:313;;;31657:8;:15;;-1:-1:-1;;;;31657:15:0;-1:-1:-1;;;31657:15:0;;;31689:10;:8;:10::i;:::-;31716:8;:16;;-1:-1:-1;;;;31716:16:0;;;31431:313;31772:8;;-1:-1:-1;;;;;31882:25:0;;31756:12;31882:25;;;:19;:25;;;;;;31772:8;-1:-1:-1;;;31772:8:0;;;;;31771:9;;31882:25;;:52;;-1:-1:-1;;;;;;31911:23:0;;;;;;:19;:23;;;;;;;;31882:52;31878:100;;;-1:-1:-1;31961:5:0;31878:100;31990:12;32017:26;32058:20;32171:7;32167:925;;;32229:13;-1:-1:-1;;;;;32223:19:0;:2;-1:-1:-1;;;;;32223:19:0;;:40;;;;;32262:1;32246:13;;:17;32223:40;32219:583;;;32291:34;32321:3;32291:25;32302:13;;32291:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32284:41;;32393:13;;32373:16;;32366:4;:23;;;;:::i;:::-;32365:41;;;;:::i;:::-;32344:62;;32462:13;;32448:10;;32441:4;:17;;;;:::i;:::-;32440:35;;;;:::i;:::-;32425:50;;32219:583;;;32545:13;-1:-1:-1;;;;;32537:21:0;:4;-1:-1:-1;;;;;32537:21:0;;:41;;;;;32577:1;32562:12;;:16;32537:41;32533:269;;;32606:33;32635:3;32606:24;32617:12;;32606:6;:10;;:24;;;;:::i;:33::-;32599:40;;32706:12;;32687:15;;32680:4;:22;;;;:::i;:::-;32679:39;;;;:::i;:::-;32658:60;;32774:12;;32761:9;;32754:4;:16;;;;:::i;:::-;32753:33;;;;:::i;:::-;32738:48;;32533:269;32822:7;;32818:90;;32850:42;32866:4;32880;32887;32850:15;:42::i;:::-;32926:22;;32922:128;;32969:65;32993:4;33000:13;33015:18;32969:15;:65::i;:::-;33066:14;33076:4;33066:14;;:::i;:::-;;;32167:925;33104:33;33120:4;33126:2;33130:6;33104:15;:33::i;:::-;29473:3672;;;;;;29360:3785;;;:::o;2104:191::-;2197:6;;;-1:-1:-1;;;;;2214:17:0;;;-1:-1:-1;;;;;;2214:17:0;;;;;;;2247:40;;2197:6;;;2214:17;2197:6;;2247:40;;2178:16;;2247:40;2167:128;2104:191;:::o;12050:733::-;-1:-1:-1;;;;;12190:20:0;;12182:70;;;;-1:-1:-1;;;12182:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12271:23:0;;12263:71;;;;-1:-1:-1;;;12263:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12431:17:0;;12407:21;12431:17;;;;;;;;;;;12467:23;;;;12459:74;;;;-1:-1:-1;;;12459:74:0;;10802:2:1;12459:74:0;;;10784:21:1;10841:2;10821:18;;;10814:30;10880:34;10860:18;;;10853:62;-1:-1:-1;;;10931:18:1;;;10924:36;10977:19;;12459:74:0;10600:402:1;12459:74:0;-1:-1:-1;;;;;12569:17:0;;;:9;:17;;;;;;;;;;;12589:22;;;12569:42;;12633:20;;;;;;;;:30;;12605:6;;12569:9;12633:30;;12605:6;;12633:30;:::i;:::-;;;;;;;;12698:9;-1:-1:-1;;;;;12681:35:0;12690:6;-1:-1:-1;;;;;12681:35:0;;12709:6;12681:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;12681:35:0;;;;;;;;12171:612;12050:733;;;:::o;33733:340::-;33816:4;33772:23;9642:18;;;;;;;;;;;;33837:20;;;33833:59;;33874:7;33733:340::o;33833:59::-;33926:18;;:23;;33947:2;33926:23;:::i;:::-;33908:15;:41;33904:115;;;33984:18;;:23;;34005:2;33984:23;:::i;:::-;33966:41;;33904:115;34031:34;34049:15;34031:17;:34::i;19362:98::-;19420:7;19447:5;19451:1;19447;:5;:::i;:::-;19440:12;19362:98;-1:-1:-1;;;19362:98:0:o;19761:::-;19819:7;19846:5;19850:1;19846;:5;:::i;33153:572::-;33304:16;;;33318:1;33304:16;;;;;;;;33280:21;;33304:16;;;;;;;;;;-1:-1:-1;33304:16:0;33280:40;;33349:4;33331;33336:1;33331:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33331:23:0;;;:7;;;;;;;;;:23;33375:4;;33365:7;;33375:4;;;33365;;33375;;33365:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;33365:14:0;;;-1:-1:-1;;;;;33365:14:0;;;;;33392:62;33409:4;33424:15;33442:11;33392:8;:62::i;:::-;33667:9;;33493:224;;-1:-1:-1;;;33493:224:0;;-1:-1:-1;;;;;33493:15:0;:69;;;;;:224;;33577:11;;33603:1;;33648:4;;33667:9;;;;;33691:15;;33493:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33209:516;33153:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:597::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4878:380::-;4957:1;4953:12;;;;5000;;;5021:61;;5075:4;5067:6;5063:17;5053:27;;5021:61;5128:2;5120:6;5117:14;5097:18;5094:38;5091:161;;5174:10;5169:3;5165:20;5162:1;5155:31;5209:4;5206:1;5199:15;5237:4;5234:1;5227:15;5091:161;;4878:380;;;:::o;5672:168::-;5712:7;5778:1;5774;5770:6;5766:14;5763:1;5760:21;5755:1;5748:9;5741:17;5737:45;5734:71;;;5785:18;;:::i;:::-;-1:-1:-1;5825:9:1;;5672:168::o;5845:217::-;5885:1;5911;5901:132;;5955:10;5950:3;5946:20;5943:1;5936:31;5990:4;5987:1;5980:15;6018:4;6015:1;6008:15;5901:132;-1:-1:-1;6047:9:1;;5845:217::o;8125:401::-;8327:2;8309:21;;;8366:2;8346:18;;;8339:30;8405:34;8400:2;8385:18;;8378:62;-1:-1:-1;;;8471:2:1;8456:18;;8449:35;8516:3;8501:19;;8125:401::o;8531:399::-;8733:2;8715:21;;;8772:2;8752:18;;;8745:30;8811:34;8806:2;8791:18;;8784:62;-1:-1:-1;;;8877:2:1;8862:18;;8855:33;8920:3;8905:19;;8531:399::o;10470:125::-;10510:4;10538:1;10535;10532:8;10529:34;;;10543:18;;:::i;:::-;-1:-1:-1;10580:9:1;;10470:125::o;11139:127::-;11200:10;11195:3;11191:20;11188:1;11181:31;11231:4;11228:1;11221:15;11255:4;11252:1;11245:15;11271:980;11533:4;11581:3;11570:9;11566:19;11612:6;11601:9;11594:25;11638:2;11676:6;11671:2;11660:9;11656:18;11649:34;11719:3;11714:2;11703:9;11699:18;11692:31;11743:6;11778;11772:13;11809:6;11801;11794:22;11847:3;11836:9;11832:19;11825:26;;11886:2;11878:6;11874:15;11860:29;;11907:1;11917:195;11931:6;11928:1;11925:13;11917:195;;;11996:13;;-1:-1:-1;;;;;11992:39:1;11980:52;;12087:15;;;;12052:12;;;;12028:1;11946:9;11917:195;;;-1:-1:-1;;;;;;;12168:32:1;;;;12163:2;12148:18;;12141:60;-1:-1:-1;;;12232:3:1;12217:19;12210:35;12129:3;11271:980;-1:-1:-1;;;11271:980:1:o
Swarm Source
ipfs://e682a34c66858cfa232a86a4a4b014842fdc3c1c49e5e98f68d20880ee98d917
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.