ERC-20
Overview
Max Total Supply
1,000,000 INVISIBLE
Holders
34
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
9,652.5 INVISIBLEValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
UnseenHand
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-07 */ // SPDX-License-Identifier: MIT /** . * Invisible Hand * Lyik hase fleetri arsh liek iet staur ailn dag oblivoffy * https://invisiblehand.lol/ . **/ pragma solidity 0.8.14; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } 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 cal ler's tokens. * * Returns a boolean value indicating whether the op eration succeeded. * * IMPORTANT: Beware that changing an allowan ce 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 spe nder's allowance to 0 and set the * desired valu afterwards: * https://github.co m/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` toke ns from `sender` to `recipient` using the * allowance mechanism. `am ount` 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 `v alue` tokens are moved from one account (`from`) to * anot her (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the all owance of a `spender` for an `owner` is set by * a call to {approve}. `va lue` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return 18; } function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } 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; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender] + addedValue ); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } 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"); 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); } function _createInitialSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } 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); } } library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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 sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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 mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract UnseenHand is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; uint256 public swapTokensAtAmount; uint256 public maxTransactionAmount; bool public tradingActive = false; bool public limitsInEffect = true; bool public swapEnabled = false; uint256 public liquidityActiveBlock = 0; // 0 means liquidity is not active yet uint256 public tradingActiveBlock = 0; // 0 means trading is not active mapping(address => uint256) public _mevBlock; address public constant burnWallet = 0x000000000000000000000000000000000000dEaD; address public marketingWallet; uint256 public constant feeDivisor = 1000; uint256 public marketingBuyFee; uint256 public totalBuyFees; uint256 public marketingSellFee; uint256 public totalSellFees; uint256 public tokensForFees; uint256 public tokensForMarketing; uint256 public maxWallet; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeMultipleAccountsFromFees(address[] accounts, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); constructor() ERC20("Invisible Hand", "INVISIBLE") { marketingWallet = msg.sender; uint256 totalSupply = 1 * 1e6 * 1e18; swapTokensAtAmount = (totalSupply * 1) / 10000; // 0.01% swap tokens amount maxTransactionAmount = (totalSupply * 10) / 1000; // 1.0% maxTransactionAmountTxn maxWallet = (totalSupply * 20) / 1000; // 2% maxWallet IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); // 2.5% buy fee marketingBuyFee = 25; totalBuyFees = marketingBuyFee; // 2.5% sell fee marketingSellFee = 25; totalSellFees = marketingSellFee; excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromFees(address(_uniswapV2Router), true); excludeFromFees(address(marketingWallet), true); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(_uniswapV2Pair, true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); excludeFromMaxTransaction(address(marketingWallet), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; _createInitialSupply(address(owner()), totalSupply); } receive() external payable {} function enableTrading() external onlyOwner { require(!tradingActive, "Cannot re-enable trading"); tradingActive = true; swapEnabled = true; tradingActiveBlock = block.number; } function setAutomatedMarketMakerPair(address pair, bool value) external onlyOwner { require( pair != uniswapV2Pair, "The Uniswap pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function excludeFromMaxTransaction(address _updtAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[_updtAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function excludeMultipleAccountsFromFees( address[] calldata accounts, bool excluded ) external onlyOwner { for (uint256 i = 0; i < accounts.length; i++) { _isExcludedFromFees[accounts[i]] = excluded; } emit ExcludeMultipleAccountsFromFees(accounts, excluded); } function isExcludedFromFees(address _account) external view returns (bool) { return _isExcludedFromFees[_account]; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } 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"); if (amount == 0) { super._transfer(from, to, 0); return; } if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active yet." ); } 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." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount + 1 * 1e18, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount + 1 * 1e18, "Sell transfer amount exceeds the maxTransactionAmount." ); } 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 && !automatedMarketMakerPairs[from] && !_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; // no taxes on transfers (non buys/sells) if (takeFee) { // on sell take fees, purchase token and burn it if (automatedMarketMakerPairs[to] && totalSellFees > 0) { fees = amount.mul(totalSellFees).div(feeDivisor); tokensForFees += fees; tokensForMarketing += (fees * marketingSellFee) / totalSellFees; } // on buy else if (automatedMarketMakerPairs[from]) { fees = amount.mul(totalBuyFees).div(feeDivisor); tokensForFees += fees; tokensForMarketing += (fees * marketingBuyFee) / totalBuyFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable address(0xdead), block.timestamp ); } function manualSwap() external onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function _removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForMarketing; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } uint256 amountToSwapForETH = contractBalance; swapTokensForEth(amountToSwapForETH); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); tokensForMarketing = 0; tokensForFees = 0; } function withdrawStuckEth() external onlyOwner { (bool success, ) = address(msg.sender).call{ value: address(this).balance }(""); require(success, "failed to withdraw"); } }
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":false,"internalType":"address[]","name":"accounts","type":"address[]"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeMultipleAccountsFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"}],"name":"SwapAndLiquify","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":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_mevBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"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":"_updtAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeMultipleAccountsFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"liquidityActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","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":"tokensForFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","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":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActiveBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526008805462ffffff191661010017905560006009819055600a553480156200002b57600080fd5b50604080518082018252600e81526d125b9d9a5cda589b194812185b9960921b602080830191825283518085019094526009845268494e56495349424c4560b81b90840152815191929162000083916003916200064d565b508051620000999060049060208401906200064d565b5050506000620000ae620003ec60201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600c80546001600160a01b0319163317905569d3c21bcecceda10000006127106200012982600162000709565b6200013591906200072b565b6006556103e86200014882600a62000709565b6200015491906200072b565b6007556103e86200016782601462000709565b6200017391906200072b565b6013556019600d819055600e819055600f819055601055737a250d5630b4cf539739df2c5dacb4c659f2488d620001be620001b66005546001600160a01b031690565b6001620003f0565b620001cb306001620003f0565b620001da61dead6001620003f0565b620001e7816001620003f0565b600c5462000200906001600160a01b03166001620003f0565b6000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000241573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200026791906200074e565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002b5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002db91906200074e565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000329573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200034f91906200074e565b90506200035e8160016200049e565b6200037d620003756005546001600160a01b031690565b6001620004f2565b6200038a306001620004f2565b6200039961dead6001620004f2565b600c54620003b2906001600160a01b03166001620004f2565b6001600160a01b03808316608052811660a052620003e3620003dc6005546001600160a01b031690565b8462000568565b505050620007d7565b3390565b6005546001600160a01b031633146200043f5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a7283398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b031633146200053d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a72833981519152604482015260640162000436565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6001600160a01b038216620005c05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000436565b8060026000828254620005d4919062000780565b90915550506001600160a01b038216600090815260208190526040812080548392906200060390849062000780565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b8280546200065b906200079b565b90600052602060002090601f0160209004810192826200067f5760008555620006ca565b82601f106200069a57805160ff1916838001178555620006ca565b82800160010185558215620006ca579182015b82811115620006ca578251825591602001919060010190620006ad565b50620006d8929150620006dc565b5090565b5b80821115620006d85760008155600101620006dd565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007265762000726620006f3565b500290565b6000826200074957634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156200076157600080fd5b81516001600160a01b03811681146200077957600080fd5b9392505050565b60008219821115620007965762000796620006f3565b500190565b600181811c90821680620007b057607f821691505b602082108103620007d157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612259620008196000396000818161046b0152610c9601526000818161036d015281816118ed015281816119a601526119e201526122596000f3fe6080604052600436106102765760003560e01c80637571336a1161014f578063b9e93700116100c1578063dd62ed3e1161007a578063dd62ed3e14610771578063e2f45605146107b7578063e7f444b3146107cd578063ee40166e146107e3578063f2fde38b146107f9578063f8b45b051461081957600080fd5b8063b9e93700146106d5578063bbc0c742146106eb578063c024666814610705578063c492f04614610725578063c8c8ebe414610745578063d0a398141461075b57600080fd5b806395d89b411161011357806395d89b411461061a5780639a36f9321461062f5780639a7a23d614610645578063a457c2d714610665578063a9059cbb14610685578063b62496f5146106a557600080fd5b80637571336a1461059257806375f0a874146105b25780637fa787ba146105d25780638a8c523c146105e75780638da5cb5b146105fc57600080fd5b806339509351116101e85780634fbee193116101ac5780634fbee193146104c157806351bc3c85146104fa57806368078952146105115780636ddd17131461052757806370a0823114610547578063715018a61461057d57600080fd5b806339509351146104235780633f8a62041461044357806349bd5a5e146104595780634a30b3861461048d5780634a62bb65146104a257600080fd5b80631694505e1161023a5780631694505e1461035b57806318160ddd1461038f5780631f3fed8f146103a457806323b872dd146103ba57806325fedfb5146103da578063313ce5671461040757600080fd5b8063062287491461028257806306fdde03146102b5578063095ea7b3146102d75780630f4432e31461030757806310d5de531461032b57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b5061029861dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102c157600080fd5b506102ca61082f565b6040516102ac9190611d95565b3480156102e357600080fd5b506102f76102f2366004611dff565b6108c1565b60405190151581526020016102ac565b34801561031357600080fd5b5061031d60095481565b6040519081526020016102ac565b34801561033757600080fd5b506102f7610346366004611e2b565b60156020526000908152604090205460ff1681565b34801561036757600080fd5b506102987f000000000000000000000000000000000000000000000000000000000000000081565b34801561039b57600080fd5b5060025461031d565b3480156103b057600080fd5b5061031d60125481565b3480156103c657600080fd5b506102f76103d5366004611e48565b6108d8565b3480156103e657600080fd5b5061031d6103f5366004611e2b565b600b6020526000908152604090205481565b34801561041357600080fd5b50604051601281526020016102ac565b34801561042f57600080fd5b506102f761043e366004611dff565b610987565b34801561044f57600080fd5b5061031d60115481565b34801561046557600080fd5b506102987f000000000000000000000000000000000000000000000000000000000000000081565b34801561049957600080fd5b506102f76109c3565b3480156104ae57600080fd5b506008546102f790610100900460ff1681565b3480156104cd57600080fd5b506102f76104dc366004611e2b565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561050657600080fd5b5061050f610a01565b005b34801561051d57600080fd5b5061031d600d5481565b34801561053357600080fd5b506008546102f79062010000900460ff1681565b34801561055357600080fd5b5061031d610562366004611e2b565b6001600160a01b031660009081526020819052604090205490565b34801561058957600080fd5b5061050f610a47565b34801561059e57600080fd5b5061050f6105ad366004611e9e565b610abb565b3480156105be57600080fd5b50600c54610298906001600160a01b031681565b3480156105de57600080fd5b5061050f610b10565b3480156105f357600080fd5b5061050f610bc7565b34801561060857600080fd5b506005546001600160a01b0316610298565b34801561062657600080fd5b506102ca610c5b565b34801561063b57600080fd5b5061031d6103e881565b34801561065157600080fd5b5061050f610660366004611e9e565b610c6a565b34801561067157600080fd5b506102f7610680366004611dff565b610d53565b34801561069157600080fd5b506102f76106a0366004611dff565b610dec565b3480156106b157600080fd5b506102f76106c0366004611e2b565b60166020526000908152604090205460ff1681565b3480156106e157600080fd5b5061031d600e5481565b3480156106f757600080fd5b506008546102f79060ff1681565b34801561071157600080fd5b5061050f610720366004611e9e565b610df9565b34801561073157600080fd5b5061050f610740366004611ed3565b610e82565b34801561075157600080fd5b5061031d60075481565b34801561076757600080fd5b5061031d60105481565b34801561077d57600080fd5b5061031d61078c366004611f57565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107c357600080fd5b5061031d60065481565b3480156107d957600080fd5b5061031d600f5481565b3480156107ef57600080fd5b5061031d600a5481565b34801561080557600080fd5b5061050f610814366004611e2b565b610f5e565b34801561082557600080fd5b5061031d60135481565b60606003805461083e90611f90565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90611f90565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b60006108ce338484611049565b5060015b92915050565b60006108e584848461116d565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561096f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61097c8533858403611049565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108ce9185906109be908690611fe0565b611049565b6005546000906001600160a01b031633146109f05760405162461bcd60e51b815260040161096690611ff8565b506008805461ff0019169055600190565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161096690611ff8565b30600090815260208190526040902054610a4481611896565b50565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260040161096690611ff8565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ae55760405162461bcd60e51b815260040161096690611ff8565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b3a5760405162461bcd60e51b815260040161096690611ff8565b604051600090339047908381818185875af1925050503d8060008114610b7c576040519150601f19603f3d011682016040523d82523d6000602084013e610b81565b606091505b5050905080610a445760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610966565b6005546001600160a01b03163314610bf15760405162461bcd60e51b815260040161096690611ff8565b60085460ff1615610c445760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610966565b6008805462ff00ff19166201000117905543600a55565b60606004805461083e90611f90565b6005546001600160a01b03163314610c945760405162461bcd60e51b815260040161096690611ff8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610d455760405162461bcd60e51b815260206004820152604160248201527f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d206175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a401610966565b610d4f8282611a56565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dd55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610966565b610de23385858403611049565b5060019392505050565b60006108ce33848461116d565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161096690611ff8565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610eac5760405162461bcd60e51b815260040161096690611ff8565b60005b82811015610f1d578160146000868685818110610ece57610ece61202d565b9050602002016020810190610ee39190611e2b565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f1581612043565b915050610eaf565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051610f519392919061205c565b60405180910390a1505050565b6005546001600160a01b03163314610f885760405162461bcd60e51b815260040161096690611ff8565b6001600160a01b038116610fed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610966565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610966565b6001600160a01b03821661110c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610966565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111935760405162461bcd60e51b8152600401610966906120b5565b6001600160a01b0382166111b95760405162461bcd60e51b8152600401610966906120fa565b806000036111d2576111cd83836000611aaa565b505050565b60085460ff16611267576001600160a01b03831660009081526014602052604090205460ff168061121b57506001600160a01b03821660009081526014602052604090205460ff165b6112675760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610966565b600854610100900460ff1615611601576005546001600160a01b038481169116148015906112a357506005546001600160a01b03838116911614155b80156112b757506001600160a01b03821615155b80156112ce57506001600160a01b03821661dead14155b80156112e45750600554600160a01b900460ff16155b156116015760085460ff16611377576001600160a01b03831660009081526014602052604090205460ff168061133257506001600160a01b03821660009081526014602052604090205460ff165b6113775760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610966565b6001600160a01b03831660009081526016602052604090205460ff1680156113b857506001600160a01b03821660009081526015602052604090205460ff16155b156114ae576007546113d290670de0b6b3a7640000611fe0565b81111561143f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610966565b6013546001600160a01b0383166000908152602081905260409020546114659083611fe0565b11156114a95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610966565b611601565b6001600160a01b03821660009081526016602052604090205460ff1680156114ef57506001600160a01b03831660009081526015602052604090205460ff16155b156115775760075461150990670de0b6b3a7640000611fe0565b8111156114a95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610966565b6001600160a01b03821660009081526015602052604090205460ff16611601576013546001600160a01b0383166000908152602081905260409020546115bd9083611fe0565b11156116015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610966565b306000908152602081905260409020546006548110801590819061162d575060085462010000900460ff165b80156116435750600554600160a01b900460ff16155b801561166857506001600160a01b03851660009081526016602052604090205460ff16155b801561168d57506001600160a01b03851660009081526014602052604090205460ff16155b80156116b257506001600160a01b03841660009081526014602052604090205460ff16155b156116e0576005805460ff60a01b1916600160a01b1790556116d2611bff565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061172e57506001600160a01b03851660009081526014602052604090205460ff165b15611737575060005b60008115611882576001600160a01b03861660009081526016602052604090205460ff16801561176957506000601054115b156117de5761178f6103e861178960105488611c9890919063ffffffff16565b90611d21565b905080601160008282546117a39190611fe0565b9091555050601054600f546117b8908361213d565b6117c2919061215c565b601260008282546117d39190611fe0565b909155506118649050565b6001600160a01b03871660009081526016602052604090205460ff16156118645761181a6103e8611789600e5488611c9890919063ffffffff16565b9050806011600082825461182e9190611fe0565b9091555050600e54600d54611843908361213d565b61184d919061215c565b6012600082825461185e9190611fe0565b90915550505b801561187557611875873083611aaa565b61187f818661217e565b94505b61188d878787611aaa565b50505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118cb576118cb61202d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196d9190612195565b816001815181106119805761198061202d565b60200260200101906001600160a01b031690816001600160a01b0316815250506119cb307f000000000000000000000000000000000000000000000000000000000000000084611049565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a209085906000908690309042906004016121b2565b600060405180830381600087803b158015611a3a57600080fd5b505af1158015611a4e573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ad05760405162461bcd60e51b8152600401610966906120b5565b6001600160a01b038216611af65760405162461bcd60e51b8152600401610966906120fa565b6001600160a01b03831660009081526020819052604090205481811015611b6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610966565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ba5908490611fe0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf191815260200190565b60405180910390a350505050565b306000908152602081905260408120546012549091821580611c1f575081155b15611c2957505050565b82611c3381611896565b600c546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611c80576040519150601f19603f3d011682016040523d82523d6000602084013e611c85565b606091505b5050600060128190556011555050505050565b600082600003611caa575060006108d2565b6000611cb6838561213d565b905082611cc3858361215c565b14611d1a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610966565b9392505050565b6000611d1a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183611d7f5760405162461bcd60e51b81526004016109669190611d95565b506000611d8c848661215c565b95945050505050565b600060208083528351808285015260005b81811015611dc257858101830151858201604001528201611da6565b81811115611dd4576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610a4457600080fd5b60008060408385031215611e1257600080fd5b8235611e1d81611dea565b946020939093013593505050565b600060208284031215611e3d57600080fd5b8135611d1a81611dea565b600080600060608486031215611e5d57600080fd5b8335611e6881611dea565b92506020840135611e7881611dea565b929592945050506040919091013590565b80358015158114611e9957600080fd5b919050565b60008060408385031215611eb157600080fd5b8235611ebc81611dea565b9150611eca60208401611e89565b90509250929050565b600080600060408486031215611ee857600080fd5b833567ffffffffffffffff80821115611f0057600080fd5b818601915086601f830112611f1457600080fd5b813581811115611f2357600080fd5b8760208260051b8501011115611f3857600080fd5b602092830195509350611f4e9186019050611e89565b90509250925092565b60008060408385031215611f6a57600080fd5b8235611f7581611dea565b91506020830135611f8581611dea565b809150509250929050565b600181811c90821680611fa457607f821691505b602082108103611fc457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ff357611ff3611fca565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161205557612055611fca565b5060010190565b6040808252810183905260008460608301825b8681101561209f57823561208281611dea565b6001600160a01b031682526020928301929091019060010161206f565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600081600019048311821515161561215757612157611fca565b500290565b60008261217957634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561219057612190611fca565b500390565b6000602082840312156121a757600080fd5b8151611d1a81611dea565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122025784516001600160a01b0316835293830193918301916001016121dd565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122031e73ed5417fbe1e0be76b19002c3d9ececfc8f32dfeebe6a94dfe218a48d05964736f6c634300080e00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106102765760003560e01c80637571336a1161014f578063b9e93700116100c1578063dd62ed3e1161007a578063dd62ed3e14610771578063e2f45605146107b7578063e7f444b3146107cd578063ee40166e146107e3578063f2fde38b146107f9578063f8b45b051461081957600080fd5b8063b9e93700146106d5578063bbc0c742146106eb578063c024666814610705578063c492f04614610725578063c8c8ebe414610745578063d0a398141461075b57600080fd5b806395d89b411161011357806395d89b411461061a5780639a36f9321461062f5780639a7a23d614610645578063a457c2d714610665578063a9059cbb14610685578063b62496f5146106a557600080fd5b80637571336a1461059257806375f0a874146105b25780637fa787ba146105d25780638a8c523c146105e75780638da5cb5b146105fc57600080fd5b806339509351116101e85780634fbee193116101ac5780634fbee193146104c157806351bc3c85146104fa57806368078952146105115780636ddd17131461052757806370a0823114610547578063715018a61461057d57600080fd5b806339509351146104235780633f8a62041461044357806349bd5a5e146104595780634a30b3861461048d5780634a62bb65146104a257600080fd5b80631694505e1161023a5780631694505e1461035b57806318160ddd1461038f5780631f3fed8f146103a457806323b872dd146103ba57806325fedfb5146103da578063313ce5671461040757600080fd5b8063062287491461028257806306fdde03146102b5578063095ea7b3146102d75780630f4432e31461030757806310d5de531461032b57600080fd5b3661027d57005b600080fd5b34801561028e57600080fd5b5061029861dead81565b6040516001600160a01b0390911681526020015b60405180910390f35b3480156102c157600080fd5b506102ca61082f565b6040516102ac9190611d95565b3480156102e357600080fd5b506102f76102f2366004611dff565b6108c1565b60405190151581526020016102ac565b34801561031357600080fd5b5061031d60095481565b6040519081526020016102ac565b34801561033757600080fd5b506102f7610346366004611e2b565b60156020526000908152604090205460ff1681565b34801561036757600080fd5b506102987f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561039b57600080fd5b5060025461031d565b3480156103b057600080fd5b5061031d60125481565b3480156103c657600080fd5b506102f76103d5366004611e48565b6108d8565b3480156103e657600080fd5b5061031d6103f5366004611e2b565b600b6020526000908152604090205481565b34801561041357600080fd5b50604051601281526020016102ac565b34801561042f57600080fd5b506102f761043e366004611dff565b610987565b34801561044f57600080fd5b5061031d60115481565b34801561046557600080fd5b506102987f0000000000000000000000006ba762166542f3da036d6e5bd0eeefb2f88baecc81565b34801561049957600080fd5b506102f76109c3565b3480156104ae57600080fd5b506008546102f790610100900460ff1681565b3480156104cd57600080fd5b506102f76104dc366004611e2b565b6001600160a01b031660009081526014602052604090205460ff1690565b34801561050657600080fd5b5061050f610a01565b005b34801561051d57600080fd5b5061031d600d5481565b34801561053357600080fd5b506008546102f79062010000900460ff1681565b34801561055357600080fd5b5061031d610562366004611e2b565b6001600160a01b031660009081526020819052604090205490565b34801561058957600080fd5b5061050f610a47565b34801561059e57600080fd5b5061050f6105ad366004611e9e565b610abb565b3480156105be57600080fd5b50600c54610298906001600160a01b031681565b3480156105de57600080fd5b5061050f610b10565b3480156105f357600080fd5b5061050f610bc7565b34801561060857600080fd5b506005546001600160a01b0316610298565b34801561062657600080fd5b506102ca610c5b565b34801561063b57600080fd5b5061031d6103e881565b34801561065157600080fd5b5061050f610660366004611e9e565b610c6a565b34801561067157600080fd5b506102f7610680366004611dff565b610d53565b34801561069157600080fd5b506102f76106a0366004611dff565b610dec565b3480156106b157600080fd5b506102f76106c0366004611e2b565b60166020526000908152604090205460ff1681565b3480156106e157600080fd5b5061031d600e5481565b3480156106f757600080fd5b506008546102f79060ff1681565b34801561071157600080fd5b5061050f610720366004611e9e565b610df9565b34801561073157600080fd5b5061050f610740366004611ed3565b610e82565b34801561075157600080fd5b5061031d60075481565b34801561076757600080fd5b5061031d60105481565b34801561077d57600080fd5b5061031d61078c366004611f57565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107c357600080fd5b5061031d60065481565b3480156107d957600080fd5b5061031d600f5481565b3480156107ef57600080fd5b5061031d600a5481565b34801561080557600080fd5b5061050f610814366004611e2b565b610f5e565b34801561082557600080fd5b5061031d60135481565b60606003805461083e90611f90565b80601f016020809104026020016040519081016040528092919081815260200182805461086a90611f90565b80156108b75780601f1061088c576101008083540402835291602001916108b7565b820191906000526020600020905b81548152906001019060200180831161089a57829003601f168201915b5050505050905090565b60006108ce338484611049565b5060015b92915050565b60006108e584848461116d565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561096f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61097c8533858403611049565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108ce9185906109be908690611fe0565b611049565b6005546000906001600160a01b031633146109f05760405162461bcd60e51b815260040161096690611ff8565b506008805461ff0019169055600190565b6005546001600160a01b03163314610a2b5760405162461bcd60e51b815260040161096690611ff8565b30600090815260208190526040902054610a4481611896565b50565b6005546001600160a01b03163314610a715760405162461bcd60e51b815260040161096690611ff8565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6005546001600160a01b03163314610ae55760405162461bcd60e51b815260040161096690611ff8565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b3a5760405162461bcd60e51b815260040161096690611ff8565b604051600090339047908381818185875af1925050503d8060008114610b7c576040519150601f19603f3d011682016040523d82523d6000602084013e610b81565b606091505b5050905080610a445760405162461bcd60e51b81526020600482015260126024820152716661696c656420746f20776974686472617760701b6044820152606401610966565b6005546001600160a01b03163314610bf15760405162461bcd60e51b815260040161096690611ff8565b60085460ff1615610c445760405162461bcd60e51b815260206004820152601860248201527f43616e6e6f742072652d656e61626c652074726164696e6700000000000000006044820152606401610966565b6008805462ff00ff19166201000117905543600a55565b60606004805461083e90611f90565b6005546001600160a01b03163314610c945760405162461bcd60e51b815260040161096690611ff8565b7f0000000000000000000000006ba762166542f3da036d6e5bd0eeefb2f88baecc6001600160a01b0316826001600160a01b031603610d455760405162461bcd60e51b815260206004820152604160248201527f54686520556e697377617020706169722063616e6e6f742062652072656d6f7660448201527f65642066726f6d206175746f6d617465644d61726b65744d616b6572506169726064820152607360f81b608482015260a401610966565b610d4f8282611a56565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610dd55760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610966565b610de23385858403611049565b5060019392505050565b60006108ce33848461116d565b6005546001600160a01b03163314610e235760405162461bcd60e51b815260040161096690611ff8565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610eac5760405162461bcd60e51b815260040161096690611ff8565b60005b82811015610f1d578160146000868685818110610ece57610ece61202d565b9050602002016020810190610ee39190611e2b565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610f1581612043565b915050610eaf565b507f7fdaf542373fa84f4ee8d662c642f44e4c2276a217d7d29e548b6eb29a233b35838383604051610f519392919061205c565b60405180910390a1505050565b6005546001600160a01b03163314610f885760405162461bcd60e51b815260040161096690611ff8565b6001600160a01b038116610fed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610966565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b0383166110ab5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610966565b6001600160a01b03821661110c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610966565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111935760405162461bcd60e51b8152600401610966906120b5565b6001600160a01b0382166111b95760405162461bcd60e51b8152600401610966906120fa565b806000036111d2576111cd83836000611aaa565b505050565b60085460ff16611267576001600160a01b03831660009081526014602052604090205460ff168061121b57506001600160a01b03821660009081526014602052604090205460ff165b6112675760405162461bcd60e51b815260206004820152601a60248201527f54726164696e67206973206e6f7420616374697665207965742e0000000000006044820152606401610966565b600854610100900460ff1615611601576005546001600160a01b038481169116148015906112a357506005546001600160a01b03838116911614155b80156112b757506001600160a01b03821615155b80156112ce57506001600160a01b03821661dead14155b80156112e45750600554600160a01b900460ff16155b156116015760085460ff16611377576001600160a01b03831660009081526014602052604090205460ff168061133257506001600160a01b03821660009081526014602052604090205460ff165b6113775760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610966565b6001600160a01b03831660009081526016602052604090205460ff1680156113b857506001600160a01b03821660009081526015602052604090205460ff16155b156114ae576007546113d290670de0b6b3a7640000611fe0565b81111561143f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610966565b6013546001600160a01b0383166000908152602081905260409020546114659083611fe0565b11156114a95760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610966565b611601565b6001600160a01b03821660009081526016602052604090205460ff1680156114ef57506001600160a01b03831660009081526015602052604090205460ff16155b156115775760075461150990670de0b6b3a7640000611fe0565b8111156114a95760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610966565b6001600160a01b03821660009081526015602052604090205460ff16611601576013546001600160a01b0383166000908152602081905260409020546115bd9083611fe0565b11156116015760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610966565b306000908152602081905260409020546006548110801590819061162d575060085462010000900460ff165b80156116435750600554600160a01b900460ff16155b801561166857506001600160a01b03851660009081526016602052604090205460ff16155b801561168d57506001600160a01b03851660009081526014602052604090205460ff16155b80156116b257506001600160a01b03841660009081526014602052604090205460ff16155b156116e0576005805460ff60a01b1916600160a01b1790556116d2611bff565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061172e57506001600160a01b03851660009081526014602052604090205460ff165b15611737575060005b60008115611882576001600160a01b03861660009081526016602052604090205460ff16801561176957506000601054115b156117de5761178f6103e861178960105488611c9890919063ffffffff16565b90611d21565b905080601160008282546117a39190611fe0565b9091555050601054600f546117b8908361213d565b6117c2919061215c565b601260008282546117d39190611fe0565b909155506118649050565b6001600160a01b03871660009081526016602052604090205460ff16156118645761181a6103e8611789600e5488611c9890919063ffffffff16565b9050806011600082825461182e9190611fe0565b9091555050600e54600d54611843908361213d565b61184d919061215c565b6012600082825461185e9190611fe0565b90915550505b801561187557611875873083611aaa565b61187f818661217e565b94505b61188d878787611aaa565b50505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106118cb576118cb61202d565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611949573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061196d9190612195565b816001815181106119805761198061202d565b60200260200101906001600160a01b031690816001600160a01b0316815250506119cb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611049565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611a209085906000908690309042906004016121b2565b600060405180830381600087803b158015611a3a57600080fd5b505af1158015611a4e573d6000803e3d6000fd5b505050505050565b6001600160a01b038216600081815260166020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611ad05760405162461bcd60e51b8152600401610966906120b5565b6001600160a01b038216611af65760405162461bcd60e51b8152600401610966906120fa565b6001600160a01b03831660009081526020819052604090205481811015611b6e5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610966565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611ba5908490611fe0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611bf191815260200190565b60405180910390a350505050565b306000908152602081905260408120546012549091821580611c1f575081155b15611c2957505050565b82611c3381611896565b600c546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611c80576040519150601f19603f3d011682016040523d82523d6000602084013e611c85565b606091505b5050600060128190556011555050505050565b600082600003611caa575060006108d2565b6000611cb6838561213d565b905082611cc3858361215c565b14611d1a5760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610966565b9392505050565b6000611d1a83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183611d7f5760405162461bcd60e51b81526004016109669190611d95565b506000611d8c848661215c565b95945050505050565b600060208083528351808285015260005b81811015611dc257858101830151858201604001528201611da6565b81811115611dd4576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610a4457600080fd5b60008060408385031215611e1257600080fd5b8235611e1d81611dea565b946020939093013593505050565b600060208284031215611e3d57600080fd5b8135611d1a81611dea565b600080600060608486031215611e5d57600080fd5b8335611e6881611dea565b92506020840135611e7881611dea565b929592945050506040919091013590565b80358015158114611e9957600080fd5b919050565b60008060408385031215611eb157600080fd5b8235611ebc81611dea565b9150611eca60208401611e89565b90509250929050565b600080600060408486031215611ee857600080fd5b833567ffffffffffffffff80821115611f0057600080fd5b818601915086601f830112611f1457600080fd5b813581811115611f2357600080fd5b8760208260051b8501011115611f3857600080fd5b602092830195509350611f4e9186019050611e89565b90509250925092565b60008060408385031215611f6a57600080fd5b8235611f7581611dea565b91506020830135611f8581611dea565b809150509250929050565b600181811c90821680611fa457607f821691505b602082108103611fc457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611ff357611ff3611fca565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006001820161205557612055611fca565b5060010190565b6040808252810183905260008460608301825b8681101561209f57823561208281611dea565b6001600160a01b031682526020928301929091019060010161206f565b5080925050508215156020830152949350505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600081600019048311821515161561215757612157611fca565b500290565b60008261217957634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561219057612190611fca565b500390565b6000602082840312156121a757600080fd5b8151611d1a81611dea565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156122025784516001600160a01b0316835293830193918301916001016121dd565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122031e73ed5417fbe1e0be76b19002c3d9ececfc8f32dfeebe6a94dfe218a48d05964736f6c634300080e0033
Deployed Bytecode Sourcemap
22492:11052:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23128:79;;;;;;;;;;;;23165:42;23128:79;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;23128:79:0;;;;;;;;4309:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5364:210::-;;;;;;;;;;-1:-1:-1;5364:210:0;;;;;:::i;:::-;;:::i;:::-;;;1445:14:1;;1438:22;1420:41;;1408:2;1393:18;5364:210:0;1280:187:1;22911:39:0;;;;;;;;;;;;;;;;;;;1618:25:1;;;1606:2;1591:18;22911:39:0;1472:177:1;23620:63:0;;;;;;;;;;-1:-1:-1;23620:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22572:51;;;;;;;;;;;;;;;4630:108;;;;;;;;;;-1:-1:-1;4718:12:0;;4630:108;;23486:33;;;;;;;;;;;;;;;;5582:529;;;;;;;;;;-1:-1:-1;5582:529:0;;;;;:::i;:::-;;:::i;23075:44::-;;;;;;;;;;-1:-1:-1;23075:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;4529:93;;;;;;;;;;-1:-1:-1;4529:93:0;;4612:2;2744:36:1;;2732:2;2717:18;4529:93:0;2602:184:1;6119:297:0;;;;;;;;;;-1:-1:-1;6119:297:0;;;;;:::i;:::-;;:::i;23451:28::-;;;;;;;;;;;;;;;;22630:38;;;;;;;;;;;;;;;32632:122;;;;;;;;;;;;;:::i;22831:33::-;;;;;;;;;;-1:-1:-1;22831:33:0;;;;;;;;;;;27072:130;;;;;;;;;;-1:-1:-1;27072:130:0;;;;;:::i;:::-;-1:-1:-1;;;;;27165:29:0;27141:4;27165:29;;;:19;:29;;;;;;;;;27072:130;32470:154;;;;;;;;;;;;;:::i;:::-;;23303:30;;;;;;;;;;;;;;;;22871:31;;;;;;;;;;-1:-1:-1;22871:31:0;;;;;;;;;;;4746:177;;;;;;;;;;-1:-1:-1;4746:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;4897:18:0;4865:7;4897:18;;;;;;;;;;;;4746:177;14263:148;;;;;;;;;;;;;:::i;26361:171::-;;;;;;;;;;-1:-1:-1;26361:171:0;;;;;:::i;:::-;;:::i;23214:30::-;;;;;;;;;;-1:-1:-1;23214:30:0;;;;-1:-1:-1;;;;;23214:30:0;;;33325:216;;;;;;;;;;;;;:::i;25811:218::-;;;;;;;;;;;;;:::i;13621:79::-;;;;;;;;;;-1:-1:-1;13686:6:0;;-1:-1:-1;;;;;13686:6:0;13621:79;;4417:104;;;;;;;;;;;;;:::i;23253:41::-;;;;;;;;;;;;23290:4;23253:41;;26037:314;;;;;;;;;;-1:-1:-1;26037:314:0;;;;;:::i;:::-;;:::i;6424:482::-;;;;;;;;;;-1:-1:-1;6424:482:0;;;;;:::i;:::-;;:::i;4931:216::-;;;;;;;;;;-1:-1:-1;4931:216:0;;;;;:::i;:::-;;:::i;23692:57::-;;;;;;;;;;-1:-1:-1;23692:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23340:27;;;;;;;;;;;;;;;;22791:33;;;;;;;;;;-1:-1:-1;22791:33:0;;;;;;;;26540:184;;;;;;;;;;-1:-1:-1;26540:184:0;;;;;:::i;:::-;;:::i;26732:332::-;;;;;;;;;;-1:-1:-1;26732:332:0;;;;;:::i;:::-;;:::i;22747:35::-;;;;;;;;;;;;;;;;23414:28;;;;;;;;;;;;;;;;5155:201;;;;;;;;;;-1:-1:-1;5155:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;5321:18:0;;;5289:7;5321:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;5155:201;22707:33;;;;;;;;;;;;;;;;23376:31;;;;;;;;;;;;;;;;22996:37;;;;;;;;;;;;;;;;14566:281;;;;;;;;;;-1:-1:-1;14566:281:0;;;;;:::i;:::-;;:::i;23528:24::-;;;;;;;;;;;;;;;;4309:100;4363:13;4396:5;4389:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4309:100;:::o;5364:210::-;5483:4;5505:39;302:10;5528:7;5537:6;5505:8;:39::i;:::-;-1:-1:-1;5562:4:0;5364:210;;;;;:::o;5582:529::-;5722:4;5739:36;5749:6;5757:9;5768:6;5739:9;:36::i;:::-;-1:-1:-1;;;;;5815:19:0;;5788:24;5815:19;;;:11;:19;;;;;;;;302:10;5815:33;;;;;;;;5881:26;;;;5859:116;;;;-1:-1:-1;;;5859:116:0;;4950:2:1;5859:116:0;;;4932:21:1;4989:2;4969:18;;;4962:30;5028:34;5008:18;;;5001:62;-1:-1:-1;;;5079:18:1;;;5072:38;5127:19;;5859:116:0;;;;;;;;;6011:57;6020:6;302:10;6061:6;6042:16;:25;6011:8;:57::i;:::-;-1:-1:-1;6099:4:0;;5582:529;-1:-1:-1;;;;5582:529:0:o;6119:297::-;302:10;6234:4;6328:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6328:34:0;;;;;;;;;;6234:4;;6256:130;;6306:7;;6328:47;;6365:10;;6328:47;:::i;:::-;6256:8;:130::i;32632:122::-;13833:6;;32685:4;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;-1:-1:-1;32702:14:0::1;:22:::0;;-1:-1:-1;;32702:22:0::1;::::0;;:14:::1;32632:122:::0;:::o;32470:154::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;32566:4:::1;32522:23;4897:18:::0;;;;;;;;;;;32583:33:::1;4897:18:::0;32583:16:::1;:33::i;:::-;32511:113;32470:154::o:0;14263:148::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;14354:6:::1;::::0;14333:40:::1;::::0;14370:1:::1;::::0;-1:-1:-1;;;;;14354:6:0::1;::::0;14333:40:::1;::::0;14370:1;;14333:40:::1;14384:6;:19:::0;;-1:-1:-1;;;;;;14384:19:0::1;::::0;;14263:148::o;26361:171::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26476:41:0;;;::::1;;::::0;;;:31:::1;:41;::::0;;;;:48;;-1:-1:-1;;26476:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26361:171::o;33325:216::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;33402:82:::1;::::0;33384:12:::1;::::0;33410:10:::1;::::0;33448:21:::1;::::0;33384:12;33402:82;33384:12;33402:82;33448:21;33410:10;33402:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33383:101;;;33503:7;33495:38;;;::::0;-1:-1:-1;;;33495:38:0;;6195:2:1;33495:38:0::1;::::0;::::1;6177:21:1::0;6234:2;6214:18;;;6207:30;-1:-1:-1;;;6253:18:1;;;6246:48;6311:18;;33495:38:0::1;5993:342:1::0;25811:218:0;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;25875:13:::1;::::0;::::1;;25874:14;25866:51;;;::::0;-1:-1:-1;;;25866:51:0;;6542:2:1;25866:51:0::1;::::0;::::1;6524:21:1::0;6581:2;6561:18;;;6554:30;6620:26;6600:18;;;6593:54;6664:18;;25866:51:0::1;6340:348:1::0;25866:51:0::1;25928:13;:20:::0;;-1:-1:-1;;25959:18:0;;;;;26009:12:::1;25988:18;:33:::0;25811:218::o;4417:104::-;4473:13;4506:7;4499:14;;;;;:::i;26037:314::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;26183:13:::1;-1:-1:-1::0;;;;;26175:21:0::1;:4;-1:-1:-1::0;;;;;26175:21:0::1;::::0;26153:136:::1;;;::::0;-1:-1:-1;;;26153:136:0;;6895:2:1;26153:136:0::1;::::0;::::1;6877:21:1::0;6934:2;6914:18;;;6907:30;6973:34;6953:18;;;6946:62;7044:34;7024:18;;;7017:62;-1:-1:-1;;;7095:19:1;;;7088:32;7137:19;;26153:136:0::1;6693:469:1::0;26153:136:0::1;26302:41;26331:4;26337:5;26302:28;:41::i;:::-;26037:314:::0;;:::o;6424:482::-;302:10;6544:4;6593:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;6593:34:0;;;;;;;;;;6660:35;;;;6638:122;;;;-1:-1:-1;;;6638:122:0;;7369:2:1;6638:122:0;;;7351:21:1;7408:2;7388:18;;;7381:30;7447:34;7427:18;;;7420:62;-1:-1:-1;;;7498:18:1;;;7491:35;7543:19;;6638:122:0;7167:401:1;6638:122:0;6796:67;302:10;6819:7;6847:15;6828:16;:34;6796:8;:67::i;:::-;-1:-1:-1;6894:4:0;;6424:482;-1:-1:-1;;;6424:482:0:o;4931:216::-;5053:4;5075:42;302:10;5099:9;5110:6;5075:9;:42::i;26540:184::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26625:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;26625:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;26682:34;;1420:41:1;;;26682:34:0::1;::::0;1393:18:1;26682:34:0::1;;;;;;;26540:184:::0;;:::o;26732:332::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;26877:9:::1;26872:116;26892:19:::0;;::::1;26872:116;;;26968:8;26933:19;:32;26953:8;;26962:1;26953:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;26933:32:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;26933:32:0;:43;;-1:-1:-1;;26933:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26913:3;::::1;::::0;::::1;:::i;:::-;;;;26872:116;;;;27005:51;27037:8;;27047;27005:51;;;;;;;;:::i;:::-;;;;;;;;26732:332:::0;;;:::o;14566:281::-;13833:6;;-1:-1:-1;;;;;13833:6:0;302:10;13833:22;13825:67;;;;-1:-1:-1;;;13825:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14669:22:0;::::1;14647:110;;;::::0;-1:-1:-1;;;14647:110:0;;8846:2:1;14647:110:0::1;::::0;::::1;8828:21:1::0;8885:2;8865:18;;;8858:30;8924:34;8904:18;;;8897:62;-1:-1:-1;;;8975:18:1;;;8968:36;9021:19;;14647:110:0::1;8644:402:1::0;14647:110:0::1;14794:6;::::0;14773:38:::1;::::0;-1:-1:-1;;;;;14773:38:0;;::::1;::::0;14794:6:::1;::::0;14773:38:::1;::::0;14794:6:::1;::::0;14773:38:::1;14822:6;:17:::0;;-1:-1:-1;;;;;;14822:17:0::1;-1:-1:-1::0;;;;;14822:17:0;;;::::1;::::0;;;::::1;::::0;;14566:281::o;7893:380::-;-1:-1:-1;;;;;8029:19:0;;8021:68;;;;-1:-1:-1;;;8021:68:0;;9253:2:1;8021:68:0;;;9235:21:1;9292:2;9272:18;;;9265:30;9331:34;9311:18;;;9304:62;-1:-1:-1;;;9382:18:1;;;9375:34;9426:19;;8021:68:0;9051:400:1;8021:68:0;-1:-1:-1;;;;;8108:21:0;;8100:68;;;;-1:-1:-1;;;8100:68:0;;9658:2:1;8100:68:0;;;9640:21:1;9697:2;9677:18;;;9670:30;9736:34;9716:18;;;9709:62;-1:-1:-1;;;9787:18:1;;;9780:32;9829:19;;8100:68:0;9456:398:1;8100:68:0;-1:-1:-1;;;;;8181:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;8233:32;;1618:25:1;;;8233:32:0;;1591:18:1;8233:32:0;;;;;;;7893:380;;;:::o;28003:3930::-;-1:-1:-1;;;;;28135:18:0;;28127:68;;;;-1:-1:-1;;;28127:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28214:16:0;;28206:64;;;;-1:-1:-1;;;28206:64:0;;;;;;;:::i;:::-;28287:6;28297:1;28287:11;28283:93;;28315:28;28331:4;28337:2;28341:1;28315:15;:28::i;:::-;28003:3930;;;:::o;28283:93::-;28393:13;;;;28388:187;;-1:-1:-1;;;;;28449:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28478:23:0;;;;;;:19;:23;;;;;;;;28449:52;28423:140;;;;-1:-1:-1;;;28423:140:0;;10871:2:1;28423:140:0;;;10853:21:1;10910:2;10890:18;;;10883:30;10949:28;10929:18;;;10922:56;10995:18;;28423:140:0;10669:350:1;28423:140:0;28591:14;;;;;;;28587:1716;;;13686:6;;-1:-1:-1;;;;;28644:15:0;;;13686:6;;28644:15;;;;:49;;-1:-1:-1;13686:6:0;;-1:-1:-1;;;;;28680:13:0;;;13686:6;;28680:13;;28644:49;:86;;;;-1:-1:-1;;;;;;28714:16:0;;;;28644:86;:128;;;;-1:-1:-1;;;;;;28751:21:0;;28765:6;28751:21;;28644:128;:158;;;;-1:-1:-1;28794:8:0;;-1:-1:-1;;;28794:8:0;;;;28793:9;28644:158;28622:1670;;;28842:13;;;;28837:223;;-1:-1:-1;;;;;28914:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28943:23:0;;;;;;:19;:23;;;;;;;;28914:52;28880:160;;;;-1:-1:-1;;;28880:160:0;;11226:2:1;28880:160:0;;;11208:21:1;11265:2;11245:18;;;11238:30;-1:-1:-1;;;11284:18:1;;;11277:52;11346:18;;28880:160:0;11024:346:1;28880:160:0;-1:-1:-1;;;;;29134:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;29191:35:0;;;;;;:31;:35;;;;;;;;29190:36;29134:92;29108:1169;;;29313:20;;:31;;29336:8;29313:31;:::i;:::-;29303:6;:41;;29269:180;;;;-1:-1:-1;;;29269:180:0;;11577:2:1;29269:180:0;;;11559:21:1;11616:2;11596:18;;;11589:30;11655:34;11635:18;;;11628:62;-1:-1:-1;;;11706:18:1;;;11699:51;11767:19;;29269:180:0;11375:417:1;29269:180:0;29532:9;;-1:-1:-1;;;;;4897:18:0;;4865:7;4897:18;;;;;;;;;;;29506:22;;:6;:22;:::i;:::-;:35;;29472:140;;;;-1:-1:-1;;;29472:140:0;;11999:2:1;29472:140:0;;;11981:21:1;12038:2;12018:18;;;12011:30;-1:-1:-1;;;12057:18:1;;;12050:49;12116:18;;29472:140:0;11797:343:1;29472:140:0;29108:1169;;;-1:-1:-1;;;;;29710:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;29765:37:0;;;;;;:31;:37;;;;;;;;29764:38;29710:92;29684:593;;;29889:20;;:31;;29912:8;29889:31;:::i;:::-;29879:6;:41;;29845:181;;;;-1:-1:-1;;;29845:181:0;;12347:2:1;29845:181:0;;;12329:21:1;12386:2;12366:18;;;12359:30;12425:34;12405:18;;;12398:62;-1:-1:-1;;;12476:18:1;;;12469:52;12538:19;;29845:181:0;12145:418:1;29684:593:0;-1:-1:-1;;;;;30057:35:0;;;;;;:31;:35;;;;;;;;30052:225;;30177:9;;-1:-1:-1;;;;;4897:18:0;;4865:7;4897:18;;;;;;;;;;;30151:22;;:6;:22;:::i;:::-;:35;;30117:140;;;;-1:-1:-1;;;30117:140:0;;11999:2:1;30117:140:0;;;11981:21:1;12038:2;12018:18;;;12011:30;-1:-1:-1;;;12057:18:1;;;12050:49;12116:18;;30117:140:0;11797:343:1;30117:140:0;30364:4;30315:28;4897:18;;;;;;;;;;;30420;;30396:42;;;;;;;30469:35;;-1:-1:-1;30493:11:0;;;;;;;30469:35;:61;;;;-1:-1:-1;30522:8:0;;-1:-1:-1;;;30522:8:0;;;;30521:9;30469:61;:110;;;;-1:-1:-1;;;;;;30548:31:0;;;;;;:25;:31;;;;;;;;30547:32;30469:110;:153;;;;-1:-1:-1;;;;;;30597:25:0;;;;;;:19;:25;;;;;;;;30596:26;30469:153;:194;;;;-1:-1:-1;;;;;;30640:23:0;;;;;;:19;:23;;;;;;;;30639:24;30469:194;30451:322;;;30690:8;:15;;-1:-1:-1;;;;30690:15:0;-1:-1:-1;;;30690:15:0;;;30720:10;:8;:10::i;:::-;30745:8;:16;;-1:-1:-1;;;;30745:16:0;;;30451:322;30801:8;;-1:-1:-1;;;;;30911:25:0;;30785:12;30911:25;;;30801:8;30911:25;;;;;;30801:8;-1:-1:-1;;;30801:8:0;;;;;30800:9;;30911:25;;:52;;-1:-1:-1;;;;;;30940:23:0;;;;;;:19;:23;;;;;;;;30911:52;30907:100;;;-1:-1:-1;30990:5:0;30907:100;31019:12;31103:7;31099:781;;;-1:-1:-1;;;;;31193:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;31242:1;31226:13;;:17;31193:50;31189:542;;;31271:41;23290:4;31271:25;31282:13;;31271:6;:10;;:25;;;;:::i;:::-;:29;;:41::i;:::-;31264:48;;31348:4;31331:13;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;31421:13:0;;31401:16;;31394:23;;:4;:23;:::i;:::-;31393:41;;;;:::i;:::-;31371:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;31189:542:0;;-1:-1:-1;31189:542:0;;-1:-1:-1;;;;;31496:31:0;;;;;;:25;:31;;;;;;;;31492:239;;;31555:40;23290:4;31555:24;31566:12;;31555:6;:10;;:24;;;;:::i;:40::-;31548:47;;31631:4;31614:13;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;31703:12:0;;31684:15;;31677:22;;:4;:22;:::i;:::-;31676:39;;;;:::i;:::-;31654:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;31492:239:0;31751:8;;31747:91;;31780:42;31796:4;31810;31817;31780:15;:42::i;:::-;31854:14;31864:4;31854:14;;:::i;:::-;;;31099:781;31892:33;31908:4;31914:2;31918:6;31892:15;:33::i;:::-;28116:3817;;;;28003:3930;;;:::o;27406:589::-;27556:16;;;27570:1;27556:16;;;;;;;;27532:21;;27556:16;;;;;;;;;;-1:-1:-1;27556:16:0;27532:40;;27601:4;27583;27588:1;27583:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;27583:23:0;;;-1:-1:-1;;;;;27583:23:0;;;;;27627:15;-1:-1:-1;;;;;27627:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;27617:4;27622:1;27617:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;27617:32:0;;;-1:-1:-1;;;;;27617:32:0;;;;;27662:62;27679:4;27694:15;27712:11;27662:8;:62::i;:::-;27763:224;;-1:-1:-1;;;27763:224:0;;-1:-1:-1;;;;;27763:15:0;:66;;;;:224;;27844:11;;27870:1;;27914:4;;27941;;27961:15;;27763:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27461:534;27406:589;:::o;27210:186::-;-1:-1:-1;;;;;27293:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;27293:39:0;;;;;;;;;;27348:40;;27293:39;;:31;27348:40;;;27210:186;;:::o;6914:651::-;-1:-1:-1;;;;;7054:20:0;;7046:70;;;;-1:-1:-1;;;7046:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7135:23:0;;7127:71;;;;-1:-1:-1;;;7127:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7235:17:0;;7211:21;7235:17;;;;;;;;;;;7285:23;;;;7263:111;;;;-1:-1:-1;;;7263:111:0;;14668:2:1;7263:111:0;;;14650:21:1;14707:2;14687:18;;;14680:30;14746:34;14726:18;;;14719:62;-1:-1:-1;;;14797:18:1;;;14790:36;14843:19;;7263:111:0;14466:402:1;7263:111:0;-1:-1:-1;;;;;7410:17:0;;;:9;:17;;;;;;;;;;;7430:22;;;7410:42;;7474:20;;;;;;;;:30;;7446:6;;7410:9;7474:30;;7446:6;;7474:30;:::i;:::-;;;;;;;;7539:9;-1:-1:-1;;;;;7522:35:0;7531:6;-1:-1:-1;;;;;7522:35:0;;7550:6;7522:35;;;;1618:25:1;;1606:2;1591:18;;1472:177;7522:35:0;;;;;;;;7035:530;6914:651;;;:::o;32762:555::-;32845:4;32801:23;4897:18;;;;;;;;;;;32890;;4897;;32948:20;;;:46;;-1:-1:-1;32972:22:0;;32948:46;32944:85;;;33011:7;;;32762:555::o;32944:85::-;33070:15;33096:36;33070:15;33096:16;:36::i;:::-;33167:15;;33159:87;;-1:-1:-1;;;;;33167:15:0;;;;33210:21;;33159:87;;;;33210:21;33167:15;33159:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33280:1:0;33259:18;:22;;;33292:13;:17;-1:-1:-1;;;;;32762:555:0:o;9931:471::-;9989:7;10234:1;10239;10234:6;10230:47;;-1:-1:-1;10264:1:0;10257:8;;10230:47;10289:9;10301:5;10305:1;10301;:5;:::i;:::-;10289:17;-1:-1:-1;10334:1:0;10325:5;10329:1;10289:17;10325:5;:::i;:::-;:10;10317:56;;;;-1:-1:-1;;;10317:56:0;;15075:2:1;10317:56:0;;;15057:21:1;15114:2;15094:18;;;15087:30;15153:34;15133:18;;;15126:62;-1:-1:-1;;;15204:18:1;;;15197:31;15245:19;;10317:56:0;14873:397:1;10317:56:0;10393:1;9931:471;-1:-1:-1;;;9931:471:0:o;10878:132::-;10936:7;10963:39;10967:1;10970;10963:39;;;;;;;;;;;;;;;;;11626:7;11661:12;11654:5;11646:28;;;;-1:-1:-1;;;11646:28:0;;;;;;;;:::i;:::-;-1:-1:-1;11685:9:0;11697:5;11701:1;11697;:5;:::i;:::-;11685:17;11506:312;-1:-1:-1;;;;;11506:312:0:o;222:597:1:-;334:4;363:2;392;381:9;374:21;424:6;418:13;467:6;462:2;451:9;447:18;440:34;492:1;502:140;516:6;513:1;510:13;502:140;;;611:14;;;607:23;;601:30;577:17;;;596:2;573:26;566:66;531:10;;502:140;;;660:6;657:1;654:13;651:91;;;730:1;725:2;716:6;705:9;701:22;697:31;690:42;651:91;-1:-1:-1;803:2:1;782:15;-1:-1:-1;;778:29:1;763:45;;;;810:2;759:54;;222:597;-1:-1:-1;;;222:597:1:o;824:131::-;-1:-1:-1;;;;;899:31:1;;889:42;;879:70;;945:1;942;935:12;960:315;1028:6;1036;1089:2;1077:9;1068:7;1064:23;1060:32;1057:52;;;1105:1;1102;1095:12;1057:52;1144:9;1131:23;1163:31;1188:5;1163:31;:::i;:::-;1213:5;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;960:315:1:o;1654:247::-;1713:6;1766:2;1754:9;1745:7;1741:23;1737:32;1734:52;;;1782:1;1779;1772:12;1734:52;1821:9;1808:23;1840:31;1865:5;1840:31;:::i;2141:456::-;2218:6;2226;2234;2287:2;2275:9;2266:7;2262:23;2258:32;2255:52;;;2303:1;2300;2293:12;2255:52;2342:9;2329:23;2361:31;2386:5;2361:31;:::i;:::-;2411:5;-1:-1:-1;2468:2:1;2453:18;;2440:32;2481:33;2440:32;2481:33;:::i;:::-;2141:456;;2533:7;;-1:-1:-1;;;2587:2:1;2572:18;;;;2559:32;;2141:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2885:60;2791:160;;;:::o;2956:315::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3137:9;3124:23;3156:31;3181:5;3156:31;:::i;:::-;3206:5;-1:-1:-1;3230:35:1;3261:2;3246:18;;3230:35;:::i;:::-;3220:45;;2956:315;;;;;:::o;3276:689::-;3368:6;3376;3384;3437:2;3425:9;3416:7;3412:23;3408:32;3405:52;;;3453:1;3450;3443:12;3405:52;3493:9;3480:23;3522:18;3563:2;3555:6;3552:14;3549:34;;;3579:1;3576;3569:12;3549:34;3617:6;3606:9;3602:22;3592:32;;3662:7;3655:4;3651:2;3647:13;3643:27;3633:55;;3684:1;3681;3674:12;3633:55;3724:2;3711:16;3750:2;3742:6;3739:14;3736:34;;;3766:1;3763;3756:12;3736:34;3821:7;3814:4;3804:6;3801:1;3797:14;3793:2;3789:23;3785:34;3782:47;3779:67;;;3842:1;3839;3832:12;3779:67;3873:4;3865:13;;;;-1:-1:-1;3897:6:1;-1:-1:-1;3922:37:1;;3938:20;;;-1:-1:-1;3922:37:1;:::i;:::-;3912:47;;3276:689;;;;;:::o;3970:388::-;4038:6;4046;4099:2;4087:9;4078:7;4074:23;4070:32;4067:52;;;4115:1;4112;4105:12;4067:52;4154:9;4141:23;4173:31;4198:5;4173:31;:::i;:::-;4223:5;-1:-1:-1;4280:2:1;4265:18;;4252:32;4293:33;4252:32;4293:33;:::i;:::-;4345:7;4335:17;;;3970:388;;;;;:::o;4363:380::-;4442:1;4438:12;;;;4485;;;4506:61;;4560:4;4552:6;4548:17;4538:27;;4506:61;4613:2;4605:6;4602:14;4582:18;4579:38;4576:161;;4659:10;4654:3;4650:20;4647:1;4640:31;4694:4;4691:1;4684:15;4722:4;4719:1;4712:15;4576:161;;4363:380;;;:::o;5157:127::-;5218:10;5213:3;5209:20;5206:1;5199:31;5249:4;5246:1;5239:15;5273:4;5270:1;5263:15;5289:128;5329:3;5360:1;5356:6;5353:1;5350:13;5347:39;;;5366:18;;:::i;:::-;-1:-1:-1;5402:9:1;;5289:128::o;5422:356::-;5624:2;5606:21;;;5643:18;;;5636:30;5702:34;5697:2;5682:18;;5675:62;5769:2;5754:18;;5422:356::o;7573:127::-;7634:10;7629:3;7625:20;7622:1;7615:31;7665:4;7662:1;7655:15;7689:4;7686:1;7679:15;7705:135;7744:3;7765:17;;;7762:43;;7785:18;;:::i;:::-;-1:-1:-1;7832:1:1;7821:13;;7705:135::o;7845:794::-;8067:2;8079:21;;;8052:18;;8135:22;;;8019:4;8214:6;8188:2;8173:18;;8019:4;8248:304;8262:6;8259:1;8256:13;8248:304;;;8337:6;8324:20;8357:31;8382:5;8357:31;:::i;:::-;-1:-1:-1;;;;;8413:31:1;8401:44;;8468:4;8527:15;;;;8492:12;;;;8441:1;8277:9;8248:304;;;8252:3;8569;8561:11;;;;8624:6;8617:14;8610:22;8603:4;8592:9;8588:20;8581:52;7845:794;;;;;;:::o;9859:401::-;10061:2;10043:21;;;10100:2;10080:18;;;10073:30;10139:34;10134:2;10119:18;;10112:62;-1:-1:-1;;;10205:2:1;10190:18;;10183:35;10250:3;10235:19;;9859:401::o;10265:399::-;10467:2;10449:21;;;10506:2;10486:18;;;10479:30;10545:34;10540:2;10525:18;;10518:62;-1:-1:-1;;;10611:2:1;10596:18;;10589:33;10654:3;10639:19;;10265:399::o;12568:168::-;12608:7;12674:1;12670;12666:6;12662:14;12659:1;12656:21;12651:1;12644:9;12637:17;12633:45;12630:71;;;12681:18;;:::i;:::-;-1:-1:-1;12721:9:1;;12568:168::o;12741:217::-;12781:1;12807;12797:132;;12851:10;12846:3;12842:20;12839:1;12832:31;12886:4;12883:1;12876:15;12914:4;12911:1;12904:15;12797:132;-1:-1:-1;12943:9:1;;12741:217::o;12963:125::-;13003:4;13031:1;13028;13025:8;13022:34;;;13036:18;;:::i;:::-;-1:-1:-1;13073:9:1;;12963:125::o;13225:251::-;13295:6;13348:2;13336:9;13327:7;13323:23;13319:32;13316:52;;;13364:1;13361;13354:12;13316:52;13396:9;13390:16;13415:31;13440:5;13415:31;:::i;13481:980::-;13743:4;13791:3;13780:9;13776:19;13822:6;13811:9;13804:25;13848:2;13886:6;13881:2;13870:9;13866:18;13859:34;13929:3;13924:2;13913:9;13909:18;13902:31;13953:6;13988;13982:13;14019:6;14011;14004:22;14057:3;14046:9;14042:19;14035:26;;14096:2;14088:6;14084:15;14070:29;;14117:1;14127:195;14141:6;14138:1;14135:13;14127:195;;;14206:13;;-1:-1:-1;;;;;14202:39:1;14190:52;;14297:15;;;;14262:12;;;;14238:1;14156:9;14127:195;;;-1:-1:-1;;;;;;;14378:32:1;;;;14373:2;14358:18;;14351:60;-1:-1:-1;;;14442:3:1;14427:19;14420:35;14339:3;13481:980;-1:-1:-1;;;13481:980:1:o
Swarm Source
ipfs://31e73ed5417fbe1e0be76b19002c3d9ececfc8f32dfeebe6a94dfe218a48d059
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.