ERC-20
Overview
Max Total Supply
1,000,000,000 WEED
Holders
35
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
894,273.308334171646802935 WEEDValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WEED
Compiler Version
v0.8.17+commit.8df45f5f
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-26 */ // SPDX-License-Identifier: Unlicensed /* .... ... .... ^^ .... ... .... .... .... .... ?7 .... .... .... .... .... .... ~YJ~ .... .... .... .... ..... .... :JYJ?: .... ..... .... .... ... ..:?YYJJ7:.. ... .... .... .^ ... .... ~YYYJ??^ .... ... .^. .... .... ~7^.. .... 7YYYJ??! .... ..~7~ .... ...JY?~:... .^JYYYJ???:. ...:!JY7... ...~YYJ?7^. .~YYYYJ???^. .^?YYJ?^... .... .?YYJJJ!^... ~YYYYJ???^ ...~7YYYJJ7. .... .... :?YYYJJ?7:. ~JYYYJ?J?^ .:?YYYYJ?7: .... .... :JYYYJ???^.^JYYYJ???:.~JYYYJ?J?: .... ....... ^?YYYJ?J?~.7YYYJ??!.~YYYYJ?J7: ...... ::.. ...:7YYYYJ??~~YYYJ??^~YYYYJJ?!:... .::: .^7?7!~~^:...^?YYYJ??!JYYJ?7!YYYJ??7:..::~~!77?7^. .^?YYYJJ??!~^~JYYJJ?JYYJ??YYYJ?7^~!7JYYYYYJ7^ .... :!JYYYYJJ?777JYYJ77YJ!JYJ??7?JYYYYJJJ7~: .... .... .^!?JYYYYJJ?J?JJ~J?!Y??JJYYYJJJ?7~^. .... .... .^~!7?JJJJ??7!!77?JJ??7!~^:. .... .... .:^~~!7??J7!!!!7J???7!~~:.. .... .... ..^~7?JJJJ?7!^:.^^.:^~!??JJ??7~^:. .... .... ......... :: ......... .... .... ... .... ^^ .... ... .... .... .... .... .^^. .... .... .... .... .... .... .... .... .... .... Website: https://www.weedprotocol.com/ Twitter: https://twitter.com/WeedProtocolERC TG: https://t.me/WeedProtocolPortal */ pragma solidity 0.8.17; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using this function * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _createSupply(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } contract WEED is ERC20, Ownable { IUniswapV2Router02 public uniswapV2Router; address public immutable uniswapV2Pair; uint256 public swapTokensAtAmount = 9000000 * (10**18); // 0.9% uint256 public maxTransactionAmount = 20000000 * (10**18); // 2% uint256 public maxWalletToken = 30000000 * (10**18); // 3% uint256 public liquidityBuyFee = 1; uint256 public marketingBuyFee = 5; uint256 public teamBuyFee = 2; uint256 public burnBuyFee = 0; uint256 private totalBuyFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee; uint256 public liquiditySellFee = 1; uint256 public marketingSellFee = 15; uint256 public teamSellFee = 4; uint256 public burnSellFee = 0; uint256 private totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee; bool private inSwapAndLiquify; bool public swapAndLiquifyEnabled = true; address payable public marketingWallet = payable(0xc3Ad68872fd43F4274a418abaC1c0dAcBec0955e); address payable public teamWallet = payable(0xd55D93bF0B417503B07923319690E4be34d47E6f); address public deadWallet = 0x000000000000000000000000000000000000dEaD; // Blacklist bots mapping(address => bool) public _isBlacklisted; // exlcude from fees and max wallet mapping (address => bool) private _isExcludedFromFees; event SwapAndLiquifyEnabledUpdated(bool enabled); event SwapAndLiquify(uint256 tokensIntoLiqudity, uint256 ethReceived); event ExcludeFromFees(address indexed account, bool isExcluded); modifier lockTheSwap { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor() ERC20("Weed Protocol", "WEED") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // Create a uniswap pair for this new token address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = _uniswapV2Pair; // exclude from paying fees or having max wallet limit excludeFromFees(owner(), true); excludeFromFees(marketingWallet, true); excludeFromFees(teamWallet, true); excludeFromFees(address(this), true); /* an internal function that is only called here, and CANNOT be called ever again */ _createSupply(owner(), 1000000000 * (10**18)); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!_isBlacklisted[from] && !_isBlacklisted[to], 'Blacklisted address'); if(amount == 0) { super._transfer(from, to, 0); return; } if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { require(amount <= maxTransactionAmount, "amount must be less than or equal to maxTx limit"); } if(from==uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]){ uint256 contractBalanceRecepient = balanceOf(to); require(contractBalanceRecepient + amount <= maxWalletToken, "Exceeds maximum wallet token amount."); } uint256 contractTokenBalance = balanceOf(address(this)); bool overMinTokenBalance = contractTokenBalance >= swapTokensAtAmount; if( overMinTokenBalance && !inSwapAndLiquify && to==uniswapV2Pair && swapAndLiquifyEnabled ) { contractTokenBalance = swapTokensAtAmount; swapAndLiquify(contractTokenBalance); } // if any account belongs to _isExcludedFromFee account then remove the fee if(!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { uint256 fees; uint256 burnShare; if(from==uniswapV2Pair) { fees = amount*(totalBuyFees-burnBuyFee)/100; burnShare = amount*(burnBuyFee)/100; } if(to==uniswapV2Pair) { fees = amount*(totalSellFees-burnSellFee)/100; burnShare = amount*(burnSellFee)/100; } amount = amount-(fees+burnShare); if(burnShare > 0) { super._burn(from, burnShare); } if(fees > 0) { super._transfer(from, address(this), fees); } } super._transfer(from, to, amount); } function swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 tokensForLiquidity = contractTokenBalance*liquiditySellFee/(totalSellFees-burnSellFee); // split the Liquidity token balance into halves uint256 half = tokensForLiquidity/2; uint256 otherHalf = tokensForLiquidity-half; // capture the contract's current ETH balance. uint256 initialBalance = address(this).balance; // swap tokens for ETH swapTokensForEth(half); // how much ETH did we just swap into? uint256 newBalance = address(this).balance-initialBalance; // add liquidity to uniswap addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance); // swap and Send ether to wallets swapTokensForEth(contractTokenBalance-tokensForLiquidity); uint256 teamShare = address(this).balance*teamSellFee/(totalSellFees-burnSellFee-liquiditySellFee); teamWallet.transfer(teamShare); marketingWallet.transfer(address(this).balance); } 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(); if(allowance(address(this), address(uniswapV2Router)) < tokenAmount) { _approve(address(this), address(uniswapV2Router), ~uint256(0)); } // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable owner(), block.timestamp ); } function excludeFromFees(address account, bool excluded) public onlyOwner { require(_isExcludedFromFees[account] != excluded, "Account is already the value of 'excluded'"); _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function setSwapAndLiquifyEnabled(bool _enabled) public onlyOwner { swapAndLiquifyEnabled = _enabled; emit SwapAndLiquifyEnabledUpdated(_enabled); } function setSwapTokensAtAmouunt(uint256 _newAmount) public onlyOwner { swapTokensAtAmount = _newAmount; } function updateBuyFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner { liquidityBuyFee = _liqFee; marketingBuyFee = _markFee; teamBuyFee = _teamFee; burnBuyFee = _burnFee; totalBuyFees = liquidityBuyFee+marketingBuyFee+teamBuyFee+burnBuyFee; } function updateSellFee(uint256 _liqFee, uint256 _markFee, uint256 _teamFee, uint256 _burnFee) public onlyOwner { liquiditySellFee = _liqFee; marketingSellFee = _markFee; teamSellFee = _teamFee; burnSellFee = _burnFee; totalSellFees = liquiditySellFee+marketingSellFee+teamSellFee+burnSellFee; } function setWallets(address payable _marketing, address payable _team) public onlyOwner { marketingWallet = _marketing; teamWallet = _team; } function setMaxTxAmount(uint256 _percent) public onlyOwner { require(_percent > 0 && _percent <= 100); maxTransactionAmount = _percent*totalSupply()/100; } function setMaxWalletLimit(uint256 _percent) public onlyOwner { require(_percent > 0 && _percent <= 100); maxWalletToken = _percent*totalSupply()/100; } function blacklistBots(address account, bool value) external onlyOwner{ _isBlacklisted[account] = value; } receive() external payable { } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"}],"name":"SwapAndLiquifyEnabledUpdated","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":"_isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklistBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"burnBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadWallet","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquiditySellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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 payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxTxAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percent","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapAndLiquifyEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmouunt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_marketing","type":"address"},{"internalType":"address payable","name":"_team","type":"address"}],"name":"setWallets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"teamBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liqFee","type":"uint256"},{"internalType":"uint256","name":"_markFee","type":"uint256"},{"internalType":"uint256","name":"_teamFee","type":"uint256"},{"internalType":"uint256","name":"_burnFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526a0771d2fa45345aa90000006007556a108b2a2c280290940000006008556a18d0bf423c03d8de0000006009556001600a556005600b556002600c556000600d55600d54600c54600b54600a546200005d919062000657565b62000069919062000657565b62000075919062000657565b600e556001600f55600f60105560046011556000601255601254601154601054600f54620000a4919062000657565b620000b0919062000657565b620000bc919062000657565b6013556014805475c3ad68872fd43f4274a418abac1c0dacbec0955e0100610100600160b01b0319909116179055601580546001600160a01b031990811673d55d93bf0b417503b07923319690e4be34d47e6f179091556016805490911661dead1790553480156200012d57600080fd5b506040518060400160405280600d81526020016c15d9595908141c9bdd1bd8dbdb609a1b8152506040518060400160405280600481526020016315d1515160e21b815250816003908162000182919062000723565b50600462000191828262000723565b505050620001ae620001a8620003d360201b60201c565b620003d7565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e9190620007ef565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200027c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002a29190620007ef565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002f0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003169190620007ef565b600680546001600160a01b0319166001600160a01b0385811691909117909155811660805290506200035c620003546005546001600160a01b031690565b600162000429565b6014546200037b906201000090046001600160a01b0316600162000429565b60155462000394906001600160a01b0316600162000429565b620003a130600162000429565b620003cb620003b86005546001600160a01b031690565b6b033b2e3c9fd0803ce80000006200056d565b505062000821565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004895760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b03821660009081526018602052604090205481151560ff9091161515036200050e5760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b606482015260840162000480565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005c55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000480565b8060026000828254620005d9919062000657565b90915550506001600160a01b038216600090815260208190526040812080548392906200060890849062000657565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b808201808211156200067957634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006aa57607f821691505b602082108103620006cb57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200065257600081815260208120601f850160051c81016020861015620006fa5750805b601f850160051c820191505b818110156200071b5782815560010162000706565b505050505050565b81516001600160401b038111156200073f576200073f6200067f565b620007578162000750845462000695565b84620006d1565b602080601f8311600181146200078f5760008415620007765750858301515b600019600386901b1c1916600185901b1785556200071b565b600085815260208120601f198616915b82811015620007c0578886015182559484019460019091019084016200079f565b5085821015620007df5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200080257600080fd5b81516001600160a01b03811681146200081a57600080fd5b9392505050565b608051611fce6200085960003960008181610419015281816111ba015281816112ee0152818161139401526114120152611fce6000f3fe6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b7d565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611be0565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611c0c565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c30565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611be0565b610925565b3480156103f157600080fd5b50610405610400366004611c71565b610961565b005b34801561041357600080fd5b506103007f000000000000000000000000000000000000000000000000000000000000000081565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611c0c565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611c0c565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c71565b6109fe565b34801561054057600080fd5b5061040561054f366004611ca3565b610a65565b34801561056057600080fd5b5061040561056f366004611ca3565b610ace565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610afd565b34801561062557600080fd5b506102ac610634366004611be0565b610b0c565b34801561064557600080fd5b506102ac610654366004611be0565b610ba5565b34801561066557600080fd5b50610405610674366004611cd1565b610bb2565b34801561068557600080fd5b50610405610694366004611cd1565b610c07565b3480156106a557600080fd5b506104056106b4366004611d06565b610d13565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d21565b610d91565b34801561071157600080fd5b506102d2610720366004611d21565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611ca3565b610df5565b3480156107b957600080fd5b506104056107c8366004611c0c565b610e5e565b6060600380546107dc90611d5a565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d5a565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610ef9565b5060015b92915050565b600061088384848461101d565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610ef9565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611daa565b610ef9565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611dbd565b600a849055600b839055600c829055600d81905580826109ab8587611daa565b6109b59190611daa565b6109bf9190611daa565b600e5550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611dbd565b6109fc60006114da565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611dbd565b600f8490556010839055601182905560128190558082610a488587611daa565b610a529190611daa565b610a5c9190611daa565b60135550505050565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610aa0575060648111155b610aa957600080fd5b6064610ab460025490565b610abe9083611df2565b610ac89190611e09565b60095550565b6005546001600160a01b03163314610af85760405162461bcd60e51b815260040161090490611dbd565b600755565b6060600480546107dc90611d5a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b9b3385858403610ef9565b5060019392505050565b600061086c33848461101d565b6005546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c315760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610cb45760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d3d5760405162461bcd60e51b815260040161090490611dbd565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d8690831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610dbb5760405162461bcd60e51b815260040161090490611dbd565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610e30575060648111155b610e3957600080fd5b6064610e4460025490565b610e4e9083611df2565b610e589190611e09565b60085550565b6005546001600160a01b03163314610e885760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b038116610eed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ef6816114da565b50565b6001600160a01b038316610f5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110435760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166110695760405162461bcd60e51b815260040161090490611e70565b6001600160a01b03831660009081526017602052604090205460ff161580156110ab57506001600160a01b03821660009081526017602052604090205460ff16155b6110ed5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b80600003611106576111018383600061152c565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561114857506001600160a01b03821660009081526018602052604090205460ff16155b156111b8576008548111156111b85760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561121257506001600160a01b03831660009081526018602052604090205460ff16155b801561123757506001600160a01b03821660009081526018602052604090205460ff16155b156112be576001600160a01b0382166000908152602081905260409020546009546112628383611daa565b11156112bc5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112e5575060145460ff16155b801561132257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156113355750601454610100900460ff165b1561134857600754915061134882611681565b6001600160a01b03851660009081526018602052604090205460ff1615801561138a57506001600160a01b03841660009081526018602052604090205460ff16155b156114c8576000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031603611410576064600d54600e546113dd9190611eb3565b6113e79087611df2565b6113f19190611e09565b91506064600d54866114039190611df2565b61140d9190611e09565b90505b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03160361148e57606460125460135461145b9190611eb3565b6114659087611df2565b61146f9190611e09565b91506064601254866114819190611df2565b61148b9190611e09565b90505b6114988183611daa565b6114a29086611eb3565b945080156114b4576114b4878261180a565b81156114c5576114c587308461152c565b50505b6114d385858561152c565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115525760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166115785760405162461bcd60e51b815260040161090490611e70565b6001600160a01b038316600090815260208190526040902054818110156115f05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611627908490611daa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161167391815260200190565b60405180910390a350505050565b6014805460ff191660011790556012546013546000916116a091611eb3565b600f546116ad9084611df2565b6116b79190611e09565b905060006116c6600283611e09565b905060006116d48284611eb3565b9050476116e08361193c565b60006116ec8247611eb3565b90506116f88382611ac7565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a161174361173e8688611eb3565b61193c565b6000600f546012546013546117589190611eb3565b6117629190611eb3565b60115461176f9047611df2565b6117799190611e09565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156117b4573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117f6573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661186a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061197157611971611ec6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ee9190611edc565b81600181518110611a0157611a01611ec6565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a5857600654611a589030906001600160a01b0316600019610ef9565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a91908590600090869030904290600401611ef9565b600060405180830381600087803b158015611aab57600080fd5b505af1158015611abf573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611af06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b58573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d39190611f6a565b600060208083528351808285015260005b81811015611baa57858101830151858201604001528201611b8e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ef657600080fd5b60008060408385031215611bf357600080fd5b8235611bfe81611bcb565b946020939093013593505050565b600060208284031215611c1e57600080fd5b8135611c2981611bcb565b9392505050565b600080600060608486031215611c4557600080fd5b8335611c5081611bcb565b92506020840135611c6081611bcb565b929592945050506040919091013590565b60008060008060808587031215611c8757600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611cb557600080fd5b5035919050565b80358015158114611ccc57600080fd5b919050565b60008060408385031215611ce457600080fd5b8235611cef81611bcb565b9150611cfd60208401611cbc565b90509250929050565b600060208284031215611d1857600080fd5b611c2982611cbc565b60008060408385031215611d3457600080fd5b8235611d3f81611bcb565b91506020830135611d4f81611bcb565b809150509250929050565b600181811c90821680611d6e57607f821691505b602082108103611d8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d94565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d94565b600082611e2657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eee57600080fd5b8151611c2981611bcb565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f495784516001600160a01b031683529383019391830191600101611f24565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f7f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203c6d27d21ce66ec7c97417231ea8c8f287032c97e6df2e4925e443de1329117b64736f6c63430008110033
Deployed Bytecode
0x6080604052600436106102555760003560e01c8063750c11b611610139578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610705578063e2f456051461074b578063e6c75f7114610761578063e7f444b314610777578063ec28438a1461078d578063f2fde38b146107ad57600080fd5b8063c024666814610679578063c49b9a8014610699578063c8c8ebe4146106b9578063ccb61358146106cf578063d3f6a157146106e557600080fd5b80638da5cb5b116100fd5780638da5cb5b146105e657806395d89b4114610604578063a457c2d714610619578063a9059cbb14610639578063aba88f021461065957600080fd5b8063750c11b61461055457806375f0a874146105745780637ae3ff471461059a5780637e761377146105b057806385141a77146105c657600080fd5b806339509351116101d25780635992704411610196578063599270441461049357806368078952146104b357806370a08231146104c9578063715018a6146104ff5780637187507a14610514578063728d41c91461053457600080fd5b806339509351146103c55780633ff4c478146103e557806349bd5a5e146104075780634a74bb021461043b5780634fbee1931461045a57600080fd5b806319998bbb1161021957806319998bbb1461032d5780631cdd3be3146103435780631d38ff961461037357806323b872dd14610389578063313ce567146103a957600080fd5b806306fdde0314610261578063095ea7b31461028c578063099d0d30146102bc5780631694505e146102e057806318160ddd1461031857600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107cd565b6040516102839190611b7d565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611be0565b61085f565b6040519015158152602001610283565b3480156102c857600080fd5b506102d2600f5481565b604051908152602001610283565b3480156102ec57600080fd5b50600654610300906001600160a01b031681565b6040516001600160a01b039091168152602001610283565b34801561032457600080fd5b506002546102d2565b34801561033957600080fd5b506102d260115481565b34801561034f57600080fd5b506102ac61035e366004611c0c565b60176020526000908152604090205460ff1681565b34801561037f57600080fd5b506102d2600c5481565b34801561039557600080fd5b506102ac6103a4366004611c30565b610876565b3480156103b557600080fd5b5060405160128152602001610283565b3480156103d157600080fd5b506102ac6103e0366004611be0565b610925565b3480156103f157600080fd5b50610405610400366004611c71565b610961565b005b34801561041357600080fd5b506103007f0000000000000000000000004895569805da3ad843534ccdb2d67e03bdf41d2981565b34801561044757600080fd5b506014546102ac90610100900460ff1681565b34801561046657600080fd5b506102ac610475366004611c0c565b6001600160a01b031660009081526018602052604090205460ff1690565b34801561049f57600080fd5b50601554610300906001600160a01b031681565b3480156104bf57600080fd5b506102d2600b5481565b3480156104d557600080fd5b506102d26104e4366004611c0c565b6001600160a01b031660009081526020819052604090205490565b34801561050b57600080fd5b506104056109c8565b34801561052057600080fd5b5061040561052f366004611c71565b6109fe565b34801561054057600080fd5b5061040561054f366004611ca3565b610a65565b34801561056057600080fd5b5061040561056f366004611ca3565b610ace565b34801561058057600080fd5b50601454610300906201000090046001600160a01b031681565b3480156105a657600080fd5b506102d2600d5481565b3480156105bc57600080fd5b506102d260125481565b3480156105d257600080fd5b50601654610300906001600160a01b031681565b3480156105f257600080fd5b506005546001600160a01b0316610300565b34801561061057600080fd5b50610276610afd565b34801561062557600080fd5b506102ac610634366004611be0565b610b0c565b34801561064557600080fd5b506102ac610654366004611be0565b610ba5565b34801561066557600080fd5b50610405610674366004611cd1565b610bb2565b34801561068557600080fd5b50610405610694366004611cd1565b610c07565b3480156106a557600080fd5b506104056106b4366004611d06565b610d13565b3480156106c557600080fd5b506102d260085481565b3480156106db57600080fd5b506102d2600a5481565b3480156106f157600080fd5b50610405610700366004611d21565b610d91565b34801561071157600080fd5b506102d2610720366004611d21565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075757600080fd5b506102d260075481565b34801561076d57600080fd5b506102d260095481565b34801561078357600080fd5b506102d260105481565b34801561079957600080fd5b506104056107a8366004611ca3565b610df5565b3480156107b957600080fd5b506104056107c8366004611c0c565b610e5e565b6060600380546107dc90611d5a565b80601f016020809104026020016040519081016040528092919081815260200182805461080890611d5a565b80156108555780601f1061082a57610100808354040283529160200191610855565b820191906000526020600020905b81548152906001019060200180831161083857829003601f168201915b5050505050905090565b600061086c338484610ef9565b5060015b92915050565b600061088384848461101d565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561090d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61091a8533858403610ef9565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161086c91859061095c908690611daa565b610ef9565b6005546001600160a01b0316331461098b5760405162461bcd60e51b815260040161090490611dbd565b600a849055600b839055600c829055600d81905580826109ab8587611daa565b6109b59190611daa565b6109bf9190611daa565b600e5550505050565b6005546001600160a01b031633146109f25760405162461bcd60e51b815260040161090490611dbd565b6109fc60006114da565b565b6005546001600160a01b03163314610a285760405162461bcd60e51b815260040161090490611dbd565b600f8490556010839055601182905560128190558082610a488587611daa565b610a529190611daa565b610a5c9190611daa565b60135550505050565b6005546001600160a01b03163314610a8f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610aa0575060648111155b610aa957600080fd5b6064610ab460025490565b610abe9083611df2565b610ac89190611e09565b60095550565b6005546001600160a01b03163314610af85760405162461bcd60e51b815260040161090490611dbd565b600755565b6060600480546107dc90611d5a565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610b8e5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610904565b610b9b3385858403610ef9565b5060019392505050565b600061086c33848461101d565b6005546001600160a01b03163314610bdc5760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c315760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b03821660009081526018602052604090205481151560ff909116151503610cb45760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610904565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610d3d5760405162461bcd60e51b815260040161090490611dbd565b601480548215156101000261ff00199091161790556040517f53726dfcaf90650aa7eb35524f4d3220f07413c8d6cb404cc8c18bf5591bc15990610d8690831515815260200190565b60405180910390a150565b6005546001600160a01b03163314610dbb5760405162461bcd60e51b815260040161090490611dbd565b6014805462010000600160b01b031916620100006001600160a01b0394851602179055601580546001600160a01b03191691909216179055565b6005546001600160a01b03163314610e1f5760405162461bcd60e51b815260040161090490611dbd565b600081118015610e30575060648111155b610e3957600080fd5b6064610e4460025490565b610e4e9083611df2565b610e589190611e09565b60085550565b6005546001600160a01b03163314610e885760405162461bcd60e51b815260040161090490611dbd565b6001600160a01b038116610eed5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610904565b610ef6816114da565b50565b6001600160a01b038316610f5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610904565b6001600160a01b038216610fbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610904565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110435760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166110695760405162461bcd60e51b815260040161090490611e70565b6001600160a01b03831660009081526017602052604090205460ff161580156110ab57506001600160a01b03821660009081526017602052604090205460ff16155b6110ed5760405162461bcd60e51b8152602060048201526013602482015272426c61636b6c6973746564206164647265737360681b6044820152606401610904565b80600003611106576111018383600061152c565b505050565b6001600160a01b03831660009081526018602052604090205460ff1615801561114857506001600160a01b03821660009081526018602052604090205460ff16155b156111b8576008548111156111b85760405162461bcd60e51b815260206004820152603060248201527f616d6f756e74206d757374206265206c657373207468616e206f72206571756160448201526f1b081d1bc81b585e151e081b1a5b5a5d60821b6064820152608401610904565b7f0000000000000000000000004895569805da3ad843534ccdb2d67e03bdf41d296001600160a01b0316836001600160a01b031614801561121257506001600160a01b03831660009081526018602052604090205460ff16155b801561123757506001600160a01b03821660009081526018602052604090205460ff16155b156112be576001600160a01b0382166000908152602081905260409020546009546112628383611daa565b11156112bc5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610904565b505b30600090815260208190526040902054600754811080159081906112e5575060145460ff16155b801561132257507f0000000000000000000000004895569805da3ad843534ccdb2d67e03bdf41d296001600160a01b0316846001600160a01b0316145b80156113355750601454610100900460ff165b1561134857600754915061134882611681565b6001600160a01b03851660009081526018602052604090205460ff1615801561138a57506001600160a01b03841660009081526018602052604090205460ff16155b156114c8576000807f0000000000000000000000004895569805da3ad843534ccdb2d67e03bdf41d296001600160a01b0316876001600160a01b031603611410576064600d54600e546113dd9190611eb3565b6113e79087611df2565b6113f19190611e09565b91506064600d54866114039190611df2565b61140d9190611e09565b90505b7f0000000000000000000000004895569805da3ad843534ccdb2d67e03bdf41d296001600160a01b0316866001600160a01b03160361148e57606460125460135461145b9190611eb3565b6114659087611df2565b61146f9190611e09565b91506064601254866114819190611df2565b61148b9190611e09565b90505b6114988183611daa565b6114a29086611eb3565b945080156114b4576114b4878261180a565b81156114c5576114c587308461152c565b50505b6114d385858561152c565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166115525760405162461bcd60e51b815260040161090490611e2b565b6001600160a01b0382166115785760405162461bcd60e51b815260040161090490611e70565b6001600160a01b038316600090815260208190526040902054818110156115f05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610904565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611627908490611daa565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161167391815260200190565b60405180910390a350505050565b6014805460ff191660011790556012546013546000916116a091611eb3565b600f546116ad9084611df2565b6116b79190611e09565b905060006116c6600283611e09565b905060006116d48284611eb3565b9050476116e08361193c565b60006116ec8247611eb3565b90506116f88382611ac7565b60408051858152602081018390527f28fc98272ce761178794ad6768050fea1648e07f1e2ffe15afd3a290f8381486910160405180910390a161174361173e8688611eb3565b61193c565b6000600f546012546013546117589190611eb3565b6117629190611eb3565b60115461176f9047611df2565b6117799190611e09565b6015546040519192506001600160a01b03169082156108fc029083906000818181858888f193505050501580156117b4573d6000803e3d6000fd5b506014546040516001600160a01b036201000090920491909116904780156108fc02916000818181858888f193505050501580156117f6573d6000803e3d6000fd5b50506014805460ff19169055505050505050565b6001600160a01b03821661186a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610904565b6001600160a01b038216600090815260208190526040902054818110156118de5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610904565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061197157611971611ec6565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa1580156119ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119ee9190611edc565b81600181518110611a0157611a01611ec6565b6001600160a01b0392831660209182029290920181019190915260065430600090815260018352604080822092909416815291522054821115611a5857600654611a589030906001600160a01b0316600019610ef9565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790611a91908590600090869030904290600401611ef9565b600060405180830381600087803b158015611aab57600080fd5b505af1158015611abf573d6000803e3d6000fd5b505050505050565b6006546001600160a01b031663f305d719823085600080611af06005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015611b58573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906114d39190611f6a565b600060208083528351808285015260005b81811015611baa57858101830151858201604001528201611b8e565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ef657600080fd5b60008060408385031215611bf357600080fd5b8235611bfe81611bcb565b946020939093013593505050565b600060208284031215611c1e57600080fd5b8135611c2981611bcb565b9392505050565b600080600060608486031215611c4557600080fd5b8335611c5081611bcb565b92506020840135611c6081611bcb565b929592945050506040919091013590565b60008060008060808587031215611c8757600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611cb557600080fd5b5035919050565b80358015158114611ccc57600080fd5b919050565b60008060408385031215611ce457600080fd5b8235611cef81611bcb565b9150611cfd60208401611cbc565b90509250929050565b600060208284031215611d1857600080fd5b611c2982611cbc565b60008060408385031215611d3457600080fd5b8235611d3f81611bcb565b91506020830135611d4f81611bcb565b809150509250929050565b600181811c90821680611d6e57607f821691505b602082108103611d8e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087057610870611d94565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b808202811582820484141761087057610870611d94565b600082611e2657634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087057610870611d94565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611eee57600080fd5b8151611c2981611bcb565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f495784516001600160a01b031683529383019391830191600101611f24565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611f7f57600080fd5b835192506020840151915060408401519050925092509256fea26469706673582212203c6d27d21ce66ec7c97417231ea8c8f287032c97e6df2e4925e443de1329117b64736f6c63430008110033
Deployed Bytecode Sourcemap
24785:9272:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9214:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11381:169;;;;;;;;;;-1:-1:-1;11381:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11381:169:0;1023:187:1;25371:35:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;25371:35:0;1215:177:1;24824:41:0;;;;;;;;;;-1:-1:-1;24824:41:0;;;;-1:-1:-1;;;;;24824:41:0;;;;;;-1:-1:-1;;;;;1588:32:1;;;1570:51;;1558:2;1543:18;24824:41:0;1397:230:1;10334:108:0;;;;;;;;;;-1:-1:-1;10422:12:0;;10334:108;;25456:30;;;;;;;;;;;;;;;;26008:46;;;;;;;;;;-1:-1:-1;26008:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25206:29;;;;;;;;;;;;;;;;12032:492;;;;;;;;;;-1:-1:-1;12032:492:0;;;;;:::i;:::-;;:::i;10176:93::-;;;;;;;;;;-1:-1:-1;10176:93:0;;10259:2;2487:36:1;;2475:2;2460:18;10176:93:0;2345:184:1;12933:215:0;;;;;;;;;;-1:-1:-1;12933:215:0;;;;;:::i;:::-;;:::i;32651:334::-;;;;;;;;;;-1:-1:-1;32651:334:0;;;;;:::i;:::-;;:::i;:::-;;24872:38;;;;;;;;;;;;;;;25664:40;;;;;;;;;;-1:-1:-1;25664:40:0;;;;;;;;;;;32209:125;;;;;;;;;;-1:-1:-1;32209:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;32298:28:0;32274:4;32298:28;;;:19;:28;;;;;;;;;32209:125;25812:87;;;;;;;;;;-1:-1:-1;25812:87:0;;;;-1:-1:-1;;;;;25812:87:0;;;25165:34;;;;;;;;;;;;;;;;10505:127;;;;;;;;;;-1:-1:-1;10505:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10606:18:0;10579:7;10606:18;;;;;;;;;;;;10505:127;3318:94;;;;;;;;;;;;;:::i;32993:344::-;;;;;;;;;;-1:-1:-1;32993:344:0;;;;;:::i;:::-;;:::i;33703:175::-;;;;;;;;;;-1:-1:-1;33703:175:0;;;;;:::i;:::-;;:::i;32524:119::-;;;;;;;;;;-1:-1:-1;32524:119:0;;;;;:::i;:::-;;:::i;25713:92::-;;;;;;;;;;-1:-1:-1;25713:92:0;;;;;;;-1:-1:-1;;;;;25713:92:0;;;25242:29;;;;;;;;;;;;;;;;25493:30;;;;;;;;;;;;;;;;25906:70;;;;;;;;;;-1:-1:-1;25906:70:0;;;;-1:-1:-1;;;;;25906:70:0;;;2667:87;;;;;;;;;;-1:-1:-1;2740:6:0;;-1:-1:-1;;;;;2740:6:0;2667:87;;9433:104;;;;;;;;;;;;;:::i;13651:413::-;;;;;;;;;;-1:-1:-1;13651:413:0;;;;;:::i;:::-;;:::i;10845:175::-;;;;;;;;;;-1:-1:-1;10845:175:0;;;;;:::i;:::-;;:::i;33886:120::-;;;;;;;;;;-1:-1:-1;33886:120:0;;;;;:::i;:::-;;:::i;31907:290::-;;;;;;;;;;-1:-1:-1;31907:290:0;;;;;:::i;:::-;;:::i;32345:171::-;;;;;;;;;;-1:-1:-1;32345:171:0;;;;;:::i;:::-;;:::i;24988:57::-;;;;;;;;;;;;;;;;25124:34;;;;;;;;;;;;;;;;33345:164;;;;;;;;;;-1:-1:-1;33345:164:0;;;;;:::i;:::-;;:::i;11083:151::-;;;;;;;;;;-1:-1:-1;11083:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11199:18:0;;;11172:7;11199:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11083:151;24919:54;;;;;;;;;;;;;;;;25058:51;;;;;;;;;;;;;;;;25413:36;;;;;;;;;;;;;;;;33517:178;;;;;;;;;;-1:-1:-1;33517:178:0;;;;;:::i;:::-;;:::i;3567:192::-;;;;;;;;;;-1:-1:-1;3567:192:0;;;;;:::i;:::-;;:::i;9214:100::-;9268:13;9301:5;9294:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9214:100;:::o;11381:169::-;11464:4;11481:39;1621:10;11504:7;11513:6;11481:8;:39::i;:::-;-1:-1:-1;11538:4:0;11381:169;;;;;:::o;12032:492::-;12172:4;12189:36;12199:6;12207:9;12218:6;12189:9;:36::i;:::-;-1:-1:-1;;;;;12265:19:0;;12238:24;12265:19;;;:11;:19;;;;;;;;1621:10;12265:33;;;;;;;;12317:26;;;;12309:79;;;;-1:-1:-1;;;12309:79:0;;5600:2:1;12309:79:0;;;5582:21:1;5639:2;5619:18;;;5612:30;5678:34;5658:18;;;5651:62;-1:-1:-1;;;5729:18:1;;;5722:38;5777:19;;12309:79:0;;;;;;;;;12424:57;12433:6;1621:10;12474:6;12455:16;:25;12424:8;:57::i;:::-;-1:-1:-1;12512:4:0;;12032:492;-1:-1:-1;;;;12032:492:0:o;12933:215::-;1621:10;13021:4;13070:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13070:34:0;;;;;;;;;;13021:4;;13038:80;;13061:7;;13070:47;;13107:10;;13070:47;:::i;:::-;13038:8;:80::i;32651:334::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;32772:15:::1;:25:::0;;;32808:15:::1;:26:::0;;;32845:10:::1;:21:::0;;;32877:10:::1;:21:::0;;;32890:8;32858;32924:31:::1;32826:8:::0;32790:7;32924:31:::1;:::i;:::-;:42;;;;:::i;:::-;:53;;;;:::i;:::-;32909:12;:68:::0;-1:-1:-1;;;;32651:334:0:o;3318:94::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;3383:21:::1;3401:1;3383:9;:21::i;:::-;3318:94::o:0;32993:344::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;33115:16:::1;:26:::0;;;33152:16:::1;:27:::0;;;33190:11:::1;:22:::0;;;33223:11:::1;:22:::0;;;33237:8;33204;33272:33:::1;33171:8:::0;33134:7;33272:33:::1;:::i;:::-;:45;;;;:::i;:::-;:57;;;;:::i;:::-;33256:13;:73:::0;-1:-1:-1;;;;32993:344:0:o;33703:175::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;33795:1:::1;33784:8;:12;:31;;;;;33812:3;33800:8;:15;;33784:31;33776:40;;;::::0;::::1;;33867:3;33853:13;10422:12:::0;;;10334:108;33853:13:::1;33844:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;33827:14;:43:::0;-1:-1:-1;33703:175:0:o;32524:119::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;32604:18:::1;:31:::0;32524:119::o;9433:104::-;9489:13;9522:7;9515:14;;;;;:::i;13651:413::-;1621:10;13744:4;13788:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13788:34:0;;;;;;;;;;13841:35;;;;13833:85;;;;-1:-1:-1;;;13833:85:0;;7027:2:1;13833:85:0;;;7009:21:1;7066:2;7046:18;;;7039:30;7105:34;7085:18;;;7078:62;-1:-1:-1;;;7156:18:1;;;7149:35;7201:19;;13833:85:0;6825:401:1;13833:85:0;13954:67;1621:10;13977:7;14005:15;13986:16;:34;13954:8;:67::i;:::-;-1:-1:-1;14052:4:0;;13651:413;-1:-1:-1;;;13651:413:0:o;10845:175::-;10931:4;10948:42;1621:10;10972:9;10983:6;10948:9;:42::i;33886:120::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33967:23:0;;;::::1;;::::0;;;:14:::1;:23;::::0;;;;:31;;-1:-1:-1;;33967:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;33886:120::o;31907:290::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32000:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;31992:95:::1;;;::::0;-1:-1:-1;;;31992:95:0;;7433:2:1;31992:95:0::1;::::0;::::1;7415:21:1::0;7472:2;7452:18;;;7445:30;7511:34;7491:18;;;7484:62;-1:-1:-1;;;7562:18:1;;;7555:40;7612:19;;31992:95:0::1;7231:406:1::0;31992:95:0::1;-1:-1:-1::0;;;;;32098:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32098:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32155:34;;1163:41:1;;;32155:34:0::1;::::0;1136:18:1;32155:34:0::1;;;;;;;31907:290:::0;;:::o;32345:171::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;32422:21:::1;:32:::0;;;::::1;;;;-1:-1:-1::0;;32422:32:0;;::::1;;::::0;;32470:38:::1;::::0;::::1;::::0;::::1;::::0;32446:8;1188:14:1;1181:22;1163:41;;1151:2;1136:18;;1023:187;32470:38:0::1;;;;;;;;32345:171:::0;:::o;33345:164::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;33444:15:::1;:28:::0;;-1:-1:-1;;;;;;33444:28:0::1;::::0;-1:-1:-1;;;;;33444:28:0;;::::1;;;::::0;;33483:10:::1;:18:::0;;-1:-1:-1;;;;;;33483:18:0::1;::::0;;;::::1;;::::0;;33345:164::o;33517:178::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;33606:1:::1;33595:8;:12;:31;;;;;33623:3;33611:8;:15;;33595:31;33587:40;;;::::0;::::1;;33684:3;33670:13;10422:12:::0;;;10334:108;33670:13:::1;33661:22;::::0;:8;:22:::1;:::i;:::-;:26;;;;:::i;:::-;33638:20;:49:::0;-1:-1:-1;33517:178:0:o;3567:192::-;2740:6;;-1:-1:-1;;;;;2740:6:0;1621:10;2887:23;2879:68;;;;-1:-1:-1;;;2879:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3656:22:0;::::1;3648:73;;;::::0;-1:-1:-1;;;3648:73:0;;7844:2:1;3648:73:0::1;::::0;::::1;7826:21:1::0;7883:2;7863:18;;;7856:30;7922:34;7902:18;;;7895:62;-1:-1:-1;;;7973:18:1;;;7966:36;8019:19;;3648:73:0::1;7642:402:1::0;3648:73:0::1;3732:19;3742:8;3732:9;:19::i;:::-;3567:192:::0;:::o;17430:380::-;-1:-1:-1;;;;;17566:19:0;;17558:68;;;;-1:-1:-1;;;17558:68:0;;8251:2:1;17558:68:0;;;8233:21:1;8290:2;8270:18;;;8263:30;8329:34;8309:18;;;8302:62;-1:-1:-1;;;8380:18:1;;;8373:34;8424:19;;17558:68:0;8049:400:1;17558:68:0;-1:-1:-1;;;;;17645:21:0;;17637:68;;;;-1:-1:-1;;;17637:68:0;;8656:2:1;17637:68:0;;;8638:21:1;8695:2;8675:18;;;8668:30;8734:34;8714:18;;;8707:62;-1:-1:-1;;;8785:18:1;;;8778:32;8827:19;;17637:68:0;8454:398:1;17637:68:0;-1:-1:-1;;;;;17718:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17770:32;;1361:25:1;;;17770:32:0;;1334:18:1;17770:32:0;;;;;;;17430:380;;;:::o;27389:2288::-;-1:-1:-1;;;;;27521:18:0;;27513:68;;;;-1:-1:-1;;;27513:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27600:16:0;;27592:64;;;;-1:-1:-1;;;27592:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27676:20:0;;;;;;:14;:20;;;;;;;;27675:21;:44;;;;-1:-1:-1;;;;;;27701:18:0;;;;;;:14;:18;;;;;;;;27700:19;27675:44;27667:76;;;;-1:-1:-1;;;27667:76:0;;9869:2:1;27667:76:0;;;9851:21:1;9908:2;9888:18;;;9881:30;-1:-1:-1;;;9927:18:1;;;9920:49;9986:18;;27667:76:0;9667:343:1;27667:76:0;27759:6;27769:1;27759:11;27756:92;;27787:28;27803:4;27809:2;27813:1;27787:15;:28::i;:::-;27389:2288;;;:::o;27756:92::-;-1:-1:-1;;;;;27864:25:0;;;;;;:19;:25;;;;;;;;27863:26;:54;;;;-1:-1:-1;;;;;;27894:23:0;;;;;;:19;:23;;;;;;;;27893:24;27863:54;27860:177;;;27952:20;;27942:6;:30;;27934:91;;;;-1:-1:-1;;;27934:91:0;;10217:2:1;27934:91:0;;;10199:21:1;10256:2;10236:18;;;10229:30;10295:34;10275:18;;;10268:62;-1:-1:-1;;;10346:18:1;;;10339:46;10402:19;;27934:91:0;10015:412:1;27934:91:0;28058:13;-1:-1:-1;;;;;28052:19:0;:4;-1:-1:-1;;;;;28052:19:0;;:49;;;;-1:-1:-1;;;;;;28076:25:0;;;;;;:19;:25;;;;;;;;28075:26;28052:49;:77;;;;-1:-1:-1;;;;;;28106:23:0;;;;;;:19;:23;;;;;;;;28105:24;28052:77;28049:271;;;-1:-1:-1;;;;;10606:18:0;;28145:32;10606:18;;;;;;;;;;;28253:14;;28216:33;28243:6;10606:18;28216:33;:::i;:::-;:51;;28208:100;;;;-1:-1:-1;;;28208:100:0;;10634:2:1;28208:100:0;;;10616:21:1;10673:2;10653:18;;;10646:30;10712:34;10692:18;;;10685:62;-1:-1:-1;;;10763:18:1;;;10756:34;10807:19;;28208:100:0;10432:400:1;28208:100:0;28130:190;28049:271;28378:4;28329:28;10606:18;;;;;;;;;;;28456;;28432:42;;;;;;;28511:53;;-1:-1:-1;28548:16:0;;;;28547:17;28511:53;:87;;;;;28585:13;-1:-1:-1;;;;;28581:17:0;:2;-1:-1:-1;;;;;28581:17:0;;28511:87;:126;;;;-1:-1:-1;28616:21:0;;;;;;;28511:126;28494:274;;;28687:18;;28664:41;;28720:36;28735:20;28720:14;:36::i;:::-;-1:-1:-1;;;;;28870:25:0;;;;;;:19;:25;;;;;;;;28869:26;:54;;;;-1:-1:-1;;;;;;28900:23:0;;;;;;:19;:23;;;;;;;;28899:24;28869:54;28866:756;;;28940:12;28967:17;29022:13;-1:-1:-1;;;;;29016:19:0;:4;-1:-1:-1;;;;;29016:19:0;;29013:156;;29096:3;29084:10;;29071:12;;:23;;;;:::i;:::-;29063:32;;:6;:32;:::i;:::-;:36;;;;:::i;:::-;29056:43;;29150:3;29138:10;;29130:6;:19;;;;:::i;:::-;:23;;;;:::i;:::-;29118:35;;29013:156;29192:13;-1:-1:-1;;;;;29188:17:0;:2;-1:-1:-1;;;;;29188:17:0;;29185:157;;29268:3;29255:11;;29241:13;;:25;;;;:::i;:::-;29233:34;;:6;:34;:::i;:::-;:38;;;;:::i;:::-;29226:45;;29323:3;29310:11;;29302:6;:20;;;;:::i;:::-;:24;;;;:::i;:::-;29290:36;;29185:157;29375:14;29380:9;29375:4;:14;:::i;:::-;29367:23;;:6;:23;:::i;:::-;29358:32;-1:-1:-1;29410:13:0;;29407:82;;29444:28;29456:4;29462:9;29444:11;:28::i;:::-;29508:8;;29505:91;;29537:42;29553:4;29567;29574;29537:15;:42::i;:::-;28925:697;;28866:756;29634:33;29650:4;29656:2;29660:6;29634:15;:33::i;:::-;27502:2175;;27389:2288;;;:::o;3767:173::-;3842:6;;;-1:-1:-1;;;;;3859:17:0;;;-1:-1:-1;;;;;;3859:17:0;;;;;;;3892:40;;3842:6;;;3859:17;3842:6;;3892:40;;3823:16;;3892:40;3812:128;3767:173;:::o;14554:733::-;-1:-1:-1;;;;;14694:20:0;;14686:70;;;;-1:-1:-1;;;14686:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14775:23:0;;14767:71;;;;-1:-1:-1;;;14767:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14935:17:0;;14911:21;14935:17;;;;;;;;;;;14971:23;;;;14963:74;;;;-1:-1:-1;;;14963:74:0;;11172:2:1;14963:74:0;;;11154:21:1;11211:2;11191:18;;;11184:30;11250:34;11230:18;;;11223:62;-1:-1:-1;;;11301:18:1;;;11294:36;11347:19;;14963:74:0;10970:402:1;14963:74:0;-1:-1:-1;;;;;15073:17:0;;;:9;:17;;;;;;;;;;;15093:22;;;15073:42;;15137:20;;;;;;;;:30;;15109:6;;15073:9;15137:30;;15109:6;;15137:30;:::i;:::-;;;;;;;;15202:9;-1:-1:-1;;;;;15185:35:0;15194:6;-1:-1:-1;;;;;15185:35:0;;15213:6;15185:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15185:35:0;;;;;;;;14675:612;14554:733;;;:::o;29686:1124::-;26404:16;:23;;-1:-1:-1;;26404:23:0;26423:4;26404:23;;;29853:11:::1;::::0;29839:13:::1;::::0;26404:16;;29839:25:::1;::::0;::::1;:::i;:::-;29821:16;::::0;29800:37:::1;::::0;:20;:37:::1;:::i;:::-;:65;;;;:::i;:::-;29771:94:::0;-1:-1:-1;29934:12:0::1;29949:20;29968:1;29771:94:::0;29949:20:::1;:::i;:::-;29934:35:::0;-1:-1:-1;29980:17:0::1;30000:23;29934:35:::0;30000:18;:23:::1;:::i;:::-;29980:43:::0;-1:-1:-1;30117:21:0::1;30183:22;30200:4:::0;30183:16:::1;:22::i;:::-;30267:18;30288:36;30310:14:::0;30288:21:::1;:36;:::i;:::-;30267:57;;30374:35;30387:9;30398:10;30374:12;:35::i;:::-;30427:32;::::0;;11551:25:1;;;11607:2;11592:18;;11585:34;;;30427:32:0::1;::::0;11524:18:1;30427:32:0::1;;;;;;;30515:57;30532:39;30553:18:::0;30532:20;:39:::1;:::i;:::-;30515:16;:57::i;:::-;30583:17;30664:16;;30652:11;;30638:13;;:25;;;;:::i;:::-;:42;;;;:::i;:::-;30625:11;::::0;30603:33:::1;::::0;:21:::1;:33;:::i;:::-;:78;;;;:::i;:::-;30702:10;::::0;:30:::1;::::0;30583:98;;-1:-1:-1;;;;;;30702:10:0::1;::::0;:30;::::1;;;::::0;30583:98;;30702:10:::1;:30:::0;:10;:30;30583:98;30702:10;:30;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;30743:15:0::1;::::0;:47:::1;::::0;-1:-1:-1;;;;;30743:15:0;;;::::1;::::0;;;::::1;::::0;30768:21:::1;30743:47:::0;::::1;;;::::0;::::1;::::0;;;30768:21;30743:15;:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;;26450:16:0;:24;;-1:-1:-1;;26450:24:0;;;-1:-1:-1;;;;;;29686:1124:0:o;16315:675::-;-1:-1:-1;;;;;16399:21:0;;16391:67;;;;-1:-1:-1;;;16391:67:0;;11832:2:1;16391:67:0;;;11814:21:1;11871:2;11851:18;;;11844:30;11910:34;11890:18;;;11883:62;-1:-1:-1;;;11961:18:1;;;11954:31;12002:19;;16391:67:0;11630:397:1;16391:67:0;-1:-1:-1;;;;;16558:18:0;;16533:22;16558:18;;;;;;;;;;;16595:24;;;;16587:71;;;;-1:-1:-1;;;16587:71:0;;12234:2:1;16587:71:0;;;12216:21:1;12273:2;12253:18;;;12246:30;12312:34;12292:18;;;12285:62;-1:-1:-1;;;12363:18:1;;;12356:32;12405:19;;16587:71:0;12032:398:1;16587:71:0;-1:-1:-1;;;;;16694:18:0;;:9;:18;;;;;;;;;;;16715:23;;;16694:44;;16833:12;:22;;;;;;;16884:37;1361:25:1;;;16694:9:0;;:18;16884:37;;1334:18:1;16884:37:0;;;;;;;27389:2288;;;:::o;30818:692::-;30968:16;;;30982:1;30968:16;;;;;;;;30944:21;;30968:16;;;;;;;;;;-1:-1:-1;30968:16:0;30944:40;;31013:4;30995;31000:1;30995:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;30995:23:0;;;:7;;;;;;;;;;:23;;;;31039:15;;:22;;;-1:-1:-1;;;31039:22:0;;;;:15;;;;;:20;;:22;;;;;30995:7;;31039:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31029:4;31034:1;31029:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;31029:32:0;;;:7;;;;;;;;;;:32;;;;31110:15;;31095:4;11172:7;11199:18;;;:11;:18;;;;;;31110:15;;;;11199:27;;;;;;31130:11;-1:-1:-1;31074:156:0;;;31188:15;;31156:62;;31173:4;;-1:-1:-1;;;;;31188:15:0;-1:-1:-1;;31156:8:0;:62::i;:::-;31268:15;;:224;;-1:-1:-1;;;31268:224:0;;-1:-1:-1;;;;;31268:15:0;;;;:66;;:224;;31349:11;;31268:15;;31419:4;;31446;;31466:15;;31268:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30873:637;30818:692;:::o;31518:381::-;31629:15;;-1:-1:-1;;;;;31629:15:0;:31;31668:9;31701:4;31721:11;31629:15;;31833:7;2740:6;;-1:-1:-1;;;;;2740:6:0;;2667:87;31833:7;31629:252;;;;;;-1:-1:-1;;;;;;31629:252:0;;;-1:-1:-1;;;;;14299:15:1;;;31629:252:0;;;14281:34:1;14331:18;;;14324:34;;;;14374:18;;;14367:34;;;;14417:18;;;14410:34;14481:15;;;14460:19;;;14453:44;31855:15:0;14513:19:1;;;14506:35;14215:19;;31629:252:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:247::-;1691:6;1744:2;1732:9;1723:7;1719:23;1715:32;1712:52;;;1760:1;1757;1750:12;1712:52;1799:9;1786:23;1818:31;1843:5;1818:31;:::i;:::-;1868:5;1632:247;-1:-1:-1;;;1632:247:1:o;1884:456::-;1961:6;1969;1977;2030:2;2018:9;2009:7;2005:23;2001:32;1998:52;;;2046:1;2043;2036:12;1998:52;2085:9;2072:23;2104:31;2129:5;2104:31;:::i;:::-;2154:5;-1:-1:-1;2211:2:1;2196:18;;2183:32;2224:33;2183:32;2224:33;:::i;:::-;1884:456;;2276:7;;-1:-1:-1;;;2330:2:1;2315:18;;;;2302:32;;1884:456::o;2534:385::-;2620:6;2628;2636;2644;2697:3;2685:9;2676:7;2672:23;2668:33;2665:53;;;2714:1;2711;2704:12;2665:53;-1:-1:-1;;2737:23:1;;;2807:2;2792:18;;2779:32;;-1:-1:-1;2858:2:1;2843:18;;2830:32;;2909:2;2894:18;2881:32;;-1:-1:-1;2534:385:1;-1:-1:-1;2534:385:1:o;3356:180::-;3415:6;3468:2;3456:9;3447:7;3443:23;3439:32;3436:52;;;3484:1;3481;3474:12;3436:52;-1:-1:-1;3507:23:1;;3356:180;-1:-1:-1;3356:180:1:o;3541:160::-;3606:20;;3662:13;;3655:21;3645:32;;3635:60;;3691:1;3688;3681:12;3635:60;3541:160;;;:::o;3706:315::-;3771:6;3779;3832:2;3820:9;3811:7;3807:23;3803:32;3800:52;;;3848:1;3845;3838:12;3800:52;3887:9;3874:23;3906:31;3931:5;3906:31;:::i;:::-;3956:5;-1:-1:-1;3980:35:1;4011:2;3996:18;;3980:35;:::i;:::-;3970:45;;3706:315;;;;;:::o;4026:180::-;4082:6;4135:2;4123:9;4114:7;4110:23;4106:32;4103:52;;;4151:1;4148;4141:12;4103:52;4174:26;4190:9;4174:26;:::i;4211:404::-;4295:6;4303;4356:2;4344:9;4335:7;4331:23;4327:32;4324:52;;;4372:1;4369;4362:12;4324:52;4411:9;4398:23;4430:31;4455:5;4430:31;:::i;:::-;4480:5;-1:-1:-1;4537:2:1;4522:18;;4509:32;4550:33;4509:32;4550:33;:::i;:::-;4602:7;4592:17;;;4211:404;;;;;:::o;5013:380::-;5092:1;5088:12;;;;5135;;;5156:61;;5210:4;5202:6;5198:17;5188:27;;5156:61;5263:2;5255:6;5252:14;5232:18;5229:38;5226:161;;5309:10;5304:3;5300:20;5297:1;5290:31;5344:4;5341:1;5334:15;5372:4;5369:1;5362:15;5226:161;;5013:380;;;:::o;5807:127::-;5868:10;5863:3;5859:20;5856:1;5849:31;5899:4;5896:1;5889:15;5923:4;5920:1;5913:15;5939:125;6004:9;;;6025:10;;;6022:36;;;6038:18;;:::i;6069:356::-;6271:2;6253:21;;;6290:18;;;6283:30;6349:34;6344:2;6329:18;;6322:62;6416:2;6401:18;;6069:356::o;6430:168::-;6503:9;;;6534;;6551:15;;;6545:22;;6531:37;6521:71;;6572:18;;:::i;6603:217::-;6643:1;6669;6659:132;;6713:10;6708:3;6704:20;6701:1;6694:31;6748:4;6745:1;6738:15;6776:4;6773:1;6766:15;6659:132;-1:-1:-1;6805:9:1;;6603:217::o;8857:401::-;9059:2;9041:21;;;9098:2;9078:18;;;9071:30;9137:34;9132:2;9117:18;;9110:62;-1:-1:-1;;;9203:2:1;9188:18;;9181:35;9248:3;9233:19;;8857:401::o;9263:399::-;9465:2;9447:21;;;9504:2;9484:18;;;9477:30;9543:34;9538:2;9523:18;;9516:62;-1:-1:-1;;;9609:2:1;9594:18;;9587:33;9652:3;9637:19;;9263:399::o;10837:128::-;10904:9;;;10925:11;;;10922:37;;;10939:18;;:::i;12567:127::-;12628:10;12623:3;12619:20;12616:1;12609:31;12659:4;12656:1;12649:15;12683:4;12680:1;12673:15;12699:251;12769:6;12822:2;12810:9;12801:7;12797:23;12793:32;12790:52;;;12838:1;12835;12828:12;12790:52;12870:9;12864:16;12889:31;12914:5;12889:31;:::i;12955:980::-;13217:4;13265:3;13254:9;13250:19;13296:6;13285:9;13278:25;13322:2;13360:6;13355:2;13344:9;13340:18;13333:34;13403:3;13398:2;13387:9;13383:18;13376:31;13427:6;13462;13456:13;13493:6;13485;13478:22;13531:3;13520:9;13516:19;13509:26;;13570:2;13562:6;13558:15;13544:29;;13591:1;13601:195;13615:6;13612:1;13609:13;13601:195;;;13680:13;;-1:-1:-1;;;;;13676:39:1;13664:52;;13771:15;;;;13736:12;;;;13712:1;13630:9;13601:195;;;-1:-1:-1;;;;;;;13852:32:1;;;;13847:2;13832:18;;13825:60;-1:-1:-1;;;13916:3:1;13901:19;13894:35;13813:3;12955:980;-1:-1:-1;;;12955:980:1:o;14552:306::-;14640:6;14648;14656;14709:2;14697:9;14688:7;14684:23;14680:32;14677:52;;;14725:1;14722;14715:12;14677:52;14754:9;14748:16;14738:26;;14804:2;14793:9;14789:18;14783:25;14773:35;;14848:2;14837:9;14833:18;14827:25;14817:35;;14552:306;;;;;:::o
Swarm Source
ipfs://3c6d27d21ce66ec7c97417231ea8c8f287032c97e6df2e4925e443de1329117b
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.