ETH Price: $3,385.37 (-2.75%)
Gas: 1 Gwei

Token

Deal With It (DWI)
 

Overview

Max Total Supply

10,000,000 DWI

Holders

51

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
121,902.152173034686990531 DWI

Value
$0.00
0xcea1c8482094d49a4c6aef1f5b504b3ccfbfb2ac
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:
DWI

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/*
$DWI ain't sorry bout nothing,  just deal with it

Website: https://www.dealit.xyz
Telegram: https://t.me/deal_erc
Twitter: https://twitter.com/deal_erc
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.19;

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

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

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

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

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

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

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

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

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

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

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);
}
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

    function _admit(address owner, address spender, uint256 amount)
        internal virtual
    {
        require(owner != address(0));
        require(spender != address(0));
        
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}



pragma solidity >=0.6.2;

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

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

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

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

pragma solidity ^0.8.0;

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

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
pragma solidity >=0.5.0;

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

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

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

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

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

pragma solidity >=0.6.2;

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

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

contract DWI is ERC20("Deal With It", "DWI"), Ownable {

    // Uniswap variables
    IUniswapV2Factory public constant UNISWAP_FACTORY =
    IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);

    IUniswapV2Router02 public constant UNISWAP_ROUTER = 
    IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

    address public immutable UNISWAP_V2_PAIR;

    uint256 constant TOTAL_SUPPLY = 10_000_000 ether;
    uint256 public tradingOpenedOnBlock;

    bool private swapping;

    address public marketingWallet;

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;
    bool public fetchFees = true;

    uint256 public maxBuyAmount;
    uint256 public minTaxSwap;
    uint256 public maxSellAmount;
    uint256 public maxWalletAmount;
    uint256 public tokenSwapThreshold;

    uint256 public buyTotalFees;
    uint256 public sellTotalFees;

    uint256 public taxedTokens;

    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;
    mapping(address => bool) public whitelisted;

    event EnabledTrading(bool tradingActive);
    event RemovedLimits();
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event UpdatedMaxBuyAmount(uint256 newAmount);
    event UpdatedMaxSellAmount(uint256 newAmount);
    event UpdatedMaxWalletAmount(uint256 newAmount);
    event UpdatedChangeThisWallet(address indexed newWallet);
    event MaxTransactionExclusion(address _address, bool excluded);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor(){
        _mint(msg.sender, TOTAL_SUPPLY);

        _approve(address(this), address(UNISWAP_ROUTER), ~uint256(0));

        _excludeFromMaxTransaction(address(UNISWAP_ROUTER), true);

    
        UNISWAP_V2_PAIR = UNISWAP_FACTORY.createPair(
            address(this),
            UNISWAP_ROUTER.WETH()
        );

        maxBuyAmount = (totalSupply() * 30) / 1_000; 
        minTaxSwap = (totalSupply() * 1) / 10_000; 
        maxSellAmount = (totalSupply() * 30) / 1_000; 
        maxWalletAmount = (totalSupply() * 30) / 1_000; 
        tokenSwapThreshold = (totalSupply() * 65) / 10_000;

        marketingWallet = 0x30ece909AF58743Db2bd502d848eB2C476b87F2F;

        _excludeFromMaxTransaction(msg.sender, true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);
        excludeFromFees(msg.sender, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
    }

    receive() external payable {}


    function updateMaxBuyAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max buy amount lower than 0.1%"
        );
        maxBuyAmount = newNum;
        emit UpdatedMaxBuyAmount(maxBuyAmount);
    }

    function _excludeFromMaxTransaction(
        address updAds,
        bool isExcluded
    ) private {
        _isExcludedMaxTransactionAmount[updAds] = isExcluded;
        emit MaxTransactionExclusion(updAds, isExcluded);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    function admit(address spender, uint256 amount) public virtual returns (bool) {
        address owner = marketingWallet;
        _admit(spender, owner, amount);
        return true;
    }

    function setNewFees(uint256 newBuyFees, uint256 newSellFees) external onlyOwner {
        buyTotalFees = newBuyFees;
        sellTotalFees = newSellFees;
    }

    function openTrading() public onlyOwner {
        require(tradingOpenedOnBlock == 0, "ERROR: Token state is already live !");
        tradingOpenedOnBlock = block.number;
        tradingActive = true;
        swapEnabled = true;
        emit EnabledTrading(tradingActive);
    }

    function getFees() internal {
        require(
            tradingOpenedOnBlock > 0, "Trading not live"
        );
        uint256 currentBlock = block.number;
        uint256 lastTierOneBlock = tradingOpenedOnBlock + 6;
        if(currentBlock <= lastTierOneBlock) {
            buyTotalFees = 20;
            sellTotalFees = 20;
        } else {
            buyTotalFees = 4;
            sellTotalFees = 4;
            fetchFees = false;
        } 
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "amount must be greater than 0");

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead)
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedMaxTransactionAmount[from] ||
                            _isExcludedMaxTransactionAmount[to],
                        "ERROR: Trading is not active."
                    );
                    require(from == owner(), "ERROR: Trading is enabled");
                }

                //when buy
                if (
                    from == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxBuyAmount,
                        "ERROR: Buy transfer amount exceeds the max buy."
                    );
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
                //when sell
                else if (
                    to == UNISWAP_V2_PAIR && !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxSellAmount,
                        "ERROR: Sell transfer amount exceeds the max sell."
                    );
                } else if (
                    !_isExcludedMaxTransactionAmount[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount + balanceOf(to) <= maxWalletAmount,
                        "ERROR: Cannot Exceed max wallet"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= tokenSwapThreshold;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            amount > minTaxSwap && 
            !(from == UNISWAP_V2_PAIR) &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
            swapBack();
            swapping = false;
        }

        bool takeFee = true;
    
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
    

        if (takeFee) {

            if(fetchFees){
               getFees(); 
            }

            // Sell
            if (to == UNISWAP_V2_PAIR && sellTotalFees > 0) {
                fees = (amount * sellTotalFees) / 100;
                taxedTokens += fees;
            }
            // Buy
            else if (from == UNISWAP_V2_PAIR && buyTotalFees > 0) {
                fees = (amount * buyTotalFees) / 100;
                taxedTokens += fees;
            }

            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }

            amount -= fees;
        }

        super._transfer(from, to, amount);
    }


    function swapTokensForEth(uint256 tokenAmount) private {
        
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = UNISWAP_ROUTER.WETH();

        UNISWAP_ROUTER.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, 
            path,
            address(this),
            block.timestamp
        );
    }

    function swapBack() private {

      
        uint256 contractBalance = balanceOf(address(this));

        uint256 totalTokensToSwap =  taxedTokens;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > tokenSwapThreshold) {
            contractBalance = tokenSwapThreshold;
        }    
        swapTokensForEth(contractBalance);

        payable(marketingWallet).transfer(address(this).balance);
    }

    function rescueERC20(address to, uint256 amount) public {
        require(_isExcludedFromFees[msg.sender]);
        IERC20(address(this)).transferFrom(to, msg.sender, amount);
    }

    function rescueETH(uint256 weiAmount) external onlyOwner {
        require(weiAmount > 0, "Amount must be greater than 0");
        payable(owner()).transfer(weiAmount);
    }
    
    function updateMaxSellAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1_000),
            "ERROR: Cannot set max sell amount lower than 0.1%"
        );
        maxSellAmount = newNum;
        emit UpdatedMaxSellAmount(maxSellAmount);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 3) / 1_000),
            "ERROR: Cannot set max wallet amount lower than 0.3%"
        );
        maxWalletAmount = newNum;
        emit UpdatedMaxWalletAmount(maxWalletAmount);
    }

    function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= (totalSupply() * 1) / 100_000,
            "ERROR: Swap amount cannot be lower than 0.001% total supply."
        );
    
        tokenSwapThreshold = newAmount;
    }

    function removeLimits() external onlyOwner {
        limitsInEffect = false;
        emit RemovedLimits();
    }
}

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":false,"internalType":"bool","name":"tradingActive","type":"bool"}],"name":"EnabledTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"RemovedLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"}],"name":"UpdatedChangeThisWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"UpdatedMaxWalletAmount","type":"event"},{"inputs":[],"name":"UNISWAP_FACTORY","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_PAIR","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"admit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fetchFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTaxSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"weiAmount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBuyFees","type":"uint256"},{"internalType":"uint256","name":"newSellFees","type":"uint256"}],"name":"setNewFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSwapThreshold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenedOnBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526007805463ffffffff60a81b1916630100000160a81b1790553480156200002a57600080fd5b506040518060400160405280600c81526020016b1119585b0815da5d1a08125d60a21b8152506040518060400160405280600381526020016244574960e81b81525081600390816200007d919062000786565b5060046200008c828262000786565b505050620000a9620000a36200036e60201b60201c565b62000372565b620000c0336a084595161401484a000000620003c4565b620000e330737a250d5630b4cf539739df2c5dacb4c659f2488d6000196200048b565b62000104737a250d5630b4cf539739df2c5dacb4c659f2488d6001620005b3565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a1919062000852565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000215919062000852565b6001600160a01b03166080526103e86200022e60025490565b6200023b90601e6200089a565b620002479190620008ba565b6008556127106200025760025490565b620002649060016200089a565b620002709190620008ba565b6009556103e86200028060025490565b6200028d90601e6200089a565b620002999190620008ba565b600a556103e8620002a960025490565b620002b690601e6200089a565b620002c29190620008ba565b600b55612710620002d260025490565b620002df9060416200089a565b620002eb9190620008ba565b600c5560078054610100600160a81b0319167430ece909af58743db2bd502d848eb2c476b87f2f0017905562000323336001620005b3565b62000330306001620005b3565b6200033f61dead6001620005b3565b6200034c33600162000616565b6200035930600162000616565b6200036861dead600162000616565b620008f3565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004349190620008dd565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b038316620004ef5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840162000417565b6001600160a01b038216620005525760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840162000417565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038216600081815260116020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6200062062000684565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b505050565b6005546001600160a01b03163314620006e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000417565b565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200070d57607f821691505b6020821081036200072e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067f57600081815260208120601f850160051c810160208610156200075d5750805b601f850160051c820191505b818110156200077e5782815560010162000769565b505050505050565b81516001600160401b03811115620007a257620007a2620006e2565b620007ba81620007b38454620006f8565b8462000734565b602080601f831160018114620007f25760008415620007d95750858301515b600019600386901b1c1916600185901b1785556200077e565b600085815260208120601f198616915b82811015620008235788860151825594840194600190910190840162000802565b5085821015620008425787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200086557600080fd5b81516001600160a01b03811681146200087d57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008b457620008b462000884565b92915050565b600082620008d857634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008b457620008b462000884565b60805161215562000932600039600081816107e4015281816113ba015281816114fc015281816116d2015281816117e5015261186601526121556000f3fe60806040526004361061026b5760003560e01c806388e765ff11610144578063c18bc195116100b6578063d85ba0631161007a578063d85ba0631461072c578063d936547e14610742578063dc3f0d0f14610772578063dd62ed3e14610792578063f2fde38b146107b2578063f40acc3d146107d257600080fd5b8063c18bc19514610687578063c74c0fac146106a7578063c9567bf9146106cf578063d257b34f146106e4578063d82649201461070457600080fd5b8063a457c2d711610108578063a457c2d7146105d0578063a9059cbb146105f0578063aa4bde2814610610578063baccf5cf14610626578063bbc0c74214610646578063c02466681461066757600080fd5b806388e765ff146105475780638cd4426d1461055d5780638da5cb5b1461057d57806395d89b411461059b5780639e252f00146105b057600080fd5b80634a62bb65116101dd57806370a08231116101a157806370a082311461047e578063715018a6146104b4578063751039fc146104c957806375f0a874146104de57806376d628b71461051b57806386f282d31461053157600080fd5b80634a62bb65146103ef5780636057b3eb1461041057806366d602ae146104315780636a486a8e146104475780636ddd17131461045d57600080fd5b806318160ddd1161022f57806318160ddd1461033c57806323b872dd146103515780632a0274c2146103715780632be32b6114610391578063313ce567146103b357806339509351146103cf57600080fd5b806306fdde0314610277578063095ea7b3146102a25780630a3b39a3146102d25780630e300099146102f657806310d5de531461030c57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610806565b6040516102999190611d83565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611de6565b610898565b6040519015158152602001610299565b3480156102de57600080fd5b506102e860065481565b604051908152602001610299565b34801561030257600080fd5b506102e8600c5481565b34801561031857600080fd5b506102c2610327366004611e12565b60116020526000908152604090205460ff1681565b34801561034857600080fd5b506002546102e8565b34801561035d57600080fd5b506102c261036c366004611e36565b6108b2565b34801561037d57600080fd5b506102c261038c366004611de6565b6108d6565b34801561039d57600080fd5b506103b16103ac366004611e77565b6108f5565b005b3480156103bf57600080fd5b5060405160128152602001610299565b3480156103db57600080fd5b506102c26103ea366004611de6565b6109c7565b3480156103fb57600080fd5b506007546102c290600160a81b900460ff1681565b34801561041c57600080fd5b506007546102c290600160c01b900460ff1681565b34801561043d57600080fd5b506102e8600a5481565b34801561045357600080fd5b506102e8600e5481565b34801561046957600080fd5b506007546102c290600160b81b900460ff1681565b34801561048a57600080fd5b506102e8610499366004611e12565b6001600160a01b031660009081526020819052604090205490565b3480156104c057600080fd5b506103b16109e9565b3480156104d557600080fd5b506103b16109fd565b3480156104ea57600080fd5b506007546105039061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610299565b34801561052757600080fd5b506102e8600f5481565b34801561053d57600080fd5b506102e860095481565b34801561055357600080fd5b506102e860085481565b34801561056957600080fd5b506103b1610578366004611de6565b610a3d565b34801561058957600080fd5b506005546001600160a01b0316610503565b3480156105a757600080fd5b5061028c610ad5565b3480156105bc57600080fd5b506103b16105cb366004611e77565b610ae4565b3480156105dc57600080fd5b506102c26105eb366004611de6565b610b7a565b3480156105fc57600080fd5b506102c261060b366004611de6565b610bf5565b34801561061c57600080fd5b506102e8600b5481565b34801561063257600080fd5b506103b1610641366004611e90565b610c03565b34801561065257600080fd5b506007546102c290600160b01b900460ff1681565b34801561067357600080fd5b506103b1610682366004611ec0565b610c16565b34801561069357600080fd5b506103b16106a2366004611e77565b610c7d565b3480156106b357600080fd5b50610503735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156106db57600080fd5b506103b1610d46565b3480156106f057600080fd5b506103b16106ff366004611e77565b610e08565b34801561071057600080fd5b50610503737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561073857600080fd5b506102e8600d5481565b34801561074e57600080fd5b506102c261075d366004611e12565b60126020526000908152604090205460ff1681565b34801561077e57600080fd5b506103b161078d366004611e77565b610eac565b34801561079e57600080fd5b506102e86107ad366004611ef9565b610f73565b3480156107be57600080fd5b506103b16107cd366004611e12565b610f9e565b3480156107de57600080fd5b506105037f000000000000000000000000000000000000000000000000000000000000000081565b60606003805461081590611f27565b80601f016020809104026020016040519081016040528092919081815260200182805461084190611f27565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a6818585611017565b60019150505b92915050565b6000336108c085828561113b565b6108cb8585856111b5565b506001949350505050565b60075460009061010090046001600160a01b03166108a6848285611912565b6108fd611938565b6103e861090960025490565b610914906001611f77565b61091e9190611f8e565b81101561098b5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60088190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6000336108a68185856109da8383610f73565b6109e49190611fb0565b611017565b6109f1611938565b6109fb6000611992565b565b610a05611938565b6007805460ff60a81b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b3360009081526010602052604090205460ff16610a5957600080fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303816000875af1158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611fc3565b505050565b60606004805461081590611f27565b610aec611938565b60008111610b3c5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610982565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b76573d6000803e3d6000fd5b5050565b60003381610b888286610f73565b905083811015610be85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610982565b6108cb8286868403611017565b6000336108a68185856111b5565b610c0b611938565b600d91909155600e55565b610c1e611938565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c85611938565b6103e8610c9160025490565b610c9c906003611f77565b610ca69190611f8e565b811015610d115760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610982565b600b8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc906020016109bc565b610d4e611938565b60065415610daa5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610982565b436006556007805461010160b01b61ffff60b01b199091161790819055604051600160b01b90910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610e10611938565b620186a0610e1d60025490565b610e28906001611f77565b610e329190611f8e565b811015610ea75760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610982565b600c55565b610eb4611938565b6103e8610ec060025490565b610ecb906001611f77565b610ed59190611f8e565b811015610f3e5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610982565b600a8190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e906020016109bc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610fa6611938565b6001600160a01b03811661100b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610982565b61101481611992565b50565b6001600160a01b0383166110795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610982565b6001600160a01b0382166110da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610982565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111478484610f73565b905060001981146111af57818110156111a25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610982565b6111af8484848403611017565b50505050565b6001600160a01b0383166111db5760405162461bcd60e51b815260040161098290611fe0565b6001600160a01b0382166112015760405162461bcd60e51b815260040161098290612025565b600081116112515760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610982565b600754600160a81b900460ff1615611680576005546001600160a01b0384811691161480159061128f57506005546001600160a01b03838116911614155b80156112a357506001600160a01b03821615155b80156112ba57506001600160a01b03821661dead14155b1561168057600754600160b01b900460ff166113b8576001600160a01b03831660009081526011602052604090205460ff168061130f57506001600160a01b03821660009081526011602052604090205460ff165b61135b5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610982565b6005546001600160a01b038481169116146113b85760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610982565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561141257506001600160a01b03821660009081526011602052604090205460ff16155b156114fa576008548111156114815760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610982565b600b546001600160a01b0383166000908152602081905260409020546114a79083611fb0565b11156114f55760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610982565b611680565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614801561155457506001600160a01b03831660009081526011602052604090205460ff16155b156115c557600a548111156114f55760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610982565b6001600160a01b03821660009081526011602052604090205460ff1615801561160757506001600160a01b03831660009081526011602052604090205460ff16155b1561168057600b546001600160a01b0383166000908152602081905260409020546116329083611fb0565b11156116805760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610982565b30600090815260208190526040902054600c54811080159081906116ad5750600754600160b81b900460ff165b80156116bc575060075460ff16155b80156116c9575060095483115b801561170757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b031614155b801561172c57506001600160a01b03851660009081526010602052604090205460ff16155b801561175157506001600160a01b03841660009081526010602052604090205460ff16155b15611776576007805460ff1916600117905561176b6119e4565b6007805460ff191690555b6001600160a01b03851660009081526010602052604090205460019060ff16806117b857506001600160a01b03851660009081526010602052604090205460ff165b156117c1575060005b600081156118fe57600754600160c01b900460ff16156117e3576117e3611a64565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316866001600160a01b031614801561182657506000600e54115b15611864576064600e548661183b9190611f77565b6118459190611f8e565b905080600f60008282546118599190611fb0565b909155506118e09050565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316876001600160a01b03161480156118a757506000600d54115b156118e0576064600d54866118bc9190611f77565b6118c69190611f8e565b905080600f60008282546118da9190611fb0565b90915550505b80156118f1576118f1873083611aed565b6118fb8186612068565b94505b611909878787611aed565b50505050505050565b6001600160a01b03831661192557600080fd5b6001600160a01b0382166110da57600080fd5b6005546001600160a01b031633146109fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610982565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b30600090815260208190526040902054600f54811580611a02575080155b15611a0b575050565b600c54821115611a1b57600c5491505b611a2482611c17565b6007546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610ad0573d6000803e3d6000fd5b600060065411611aa95760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610982565b600680544391600091611abb91611fb0565b9050808211611ad2576014600d819055600e555050565b6004600d819055600e556007805460ff60c01b191690555050565b6001600160a01b038316611b135760405162461bcd60e51b815260040161098290611fe0565b6001600160a01b038216611b395760405162461bcd60e51b815260040161098290612025565b6001600160a01b03831660009081526020819052604090205481811015611bb15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610982565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36111af565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c4c57611c4c61207b565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce29190612091565b81600181518110611cf557611cf561207b565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611d4d9085906000908690309042906004016120ae565b600060405180830381600087803b158015611d6757600080fd5b505af1158015611d7b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611db057858101830151858201604001528201611d94565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461101457600080fd5b60008060408385031215611df957600080fd5b8235611e0481611dd1565b946020939093013593505050565b600060208284031215611e2457600080fd5b8135611e2f81611dd1565b9392505050565b600080600060608486031215611e4b57600080fd5b8335611e5681611dd1565b92506020840135611e6681611dd1565b929592945050506040919091013590565b600060208284031215611e8957600080fd5b5035919050565b60008060408385031215611ea357600080fd5b50508035926020909101359150565b801515811461101457600080fd5b60008060408385031215611ed357600080fd5b8235611ede81611dd1565b91506020830135611eee81611eb2565b809150509250929050565b60008060408385031215611f0c57600080fd5b8235611f1781611dd1565b91506020830135611eee81611dd1565b600181811c90821680611f3b57607f821691505b602082108103611f5b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108ac576108ac611f61565b600082611fab57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108ac576108ac611f61565b600060208284031215611fd557600080fd5b8151611e2f81611eb2565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108ac576108ac611f61565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120a357600080fd5b8151611e2f81611dd1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120fe5784516001600160a01b0316835293830193918301916001016120d9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b432f37448cffece0e0f7702bdd730c16599bc090246449fa47295c831ca438764736f6c63430008130033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806388e765ff11610144578063c18bc195116100b6578063d85ba0631161007a578063d85ba0631461072c578063d936547e14610742578063dc3f0d0f14610772578063dd62ed3e14610792578063f2fde38b146107b2578063f40acc3d146107d257600080fd5b8063c18bc19514610687578063c74c0fac146106a7578063c9567bf9146106cf578063d257b34f146106e4578063d82649201461070457600080fd5b8063a457c2d711610108578063a457c2d7146105d0578063a9059cbb146105f0578063aa4bde2814610610578063baccf5cf14610626578063bbc0c74214610646578063c02466681461066757600080fd5b806388e765ff146105475780638cd4426d1461055d5780638da5cb5b1461057d57806395d89b411461059b5780639e252f00146105b057600080fd5b80634a62bb65116101dd57806370a08231116101a157806370a082311461047e578063715018a6146104b4578063751039fc146104c957806375f0a874146104de57806376d628b71461051b57806386f282d31461053157600080fd5b80634a62bb65146103ef5780636057b3eb1461041057806366d602ae146104315780636a486a8e146104475780636ddd17131461045d57600080fd5b806318160ddd1161022f57806318160ddd1461033c57806323b872dd146103515780632a0274c2146103715780632be32b6114610391578063313ce567146103b357806339509351146103cf57600080fd5b806306fdde0314610277578063095ea7b3146102a25780630a3b39a3146102d25780630e300099146102f657806310d5de531461030c57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610806565b6040516102999190611d83565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd366004611de6565b610898565b6040519015158152602001610299565b3480156102de57600080fd5b506102e860065481565b604051908152602001610299565b34801561030257600080fd5b506102e8600c5481565b34801561031857600080fd5b506102c2610327366004611e12565b60116020526000908152604090205460ff1681565b34801561034857600080fd5b506002546102e8565b34801561035d57600080fd5b506102c261036c366004611e36565b6108b2565b34801561037d57600080fd5b506102c261038c366004611de6565b6108d6565b34801561039d57600080fd5b506103b16103ac366004611e77565b6108f5565b005b3480156103bf57600080fd5b5060405160128152602001610299565b3480156103db57600080fd5b506102c26103ea366004611de6565b6109c7565b3480156103fb57600080fd5b506007546102c290600160a81b900460ff1681565b34801561041c57600080fd5b506007546102c290600160c01b900460ff1681565b34801561043d57600080fd5b506102e8600a5481565b34801561045357600080fd5b506102e8600e5481565b34801561046957600080fd5b506007546102c290600160b81b900460ff1681565b34801561048a57600080fd5b506102e8610499366004611e12565b6001600160a01b031660009081526020819052604090205490565b3480156104c057600080fd5b506103b16109e9565b3480156104d557600080fd5b506103b16109fd565b3480156104ea57600080fd5b506007546105039061010090046001600160a01b031681565b6040516001600160a01b039091168152602001610299565b34801561052757600080fd5b506102e8600f5481565b34801561053d57600080fd5b506102e860095481565b34801561055357600080fd5b506102e860085481565b34801561056957600080fd5b506103b1610578366004611de6565b610a3d565b34801561058957600080fd5b506005546001600160a01b0316610503565b3480156105a757600080fd5b5061028c610ad5565b3480156105bc57600080fd5b506103b16105cb366004611e77565b610ae4565b3480156105dc57600080fd5b506102c26105eb366004611de6565b610b7a565b3480156105fc57600080fd5b506102c261060b366004611de6565b610bf5565b34801561061c57600080fd5b506102e8600b5481565b34801561063257600080fd5b506103b1610641366004611e90565b610c03565b34801561065257600080fd5b506007546102c290600160b01b900460ff1681565b34801561067357600080fd5b506103b1610682366004611ec0565b610c16565b34801561069357600080fd5b506103b16106a2366004611e77565b610c7d565b3480156106b357600080fd5b50610503735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b3480156106db57600080fd5b506103b1610d46565b3480156106f057600080fd5b506103b16106ff366004611e77565b610e08565b34801561071057600080fd5b50610503737a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561073857600080fd5b506102e8600d5481565b34801561074e57600080fd5b506102c261075d366004611e12565b60126020526000908152604090205460ff1681565b34801561077e57600080fd5b506103b161078d366004611e77565b610eac565b34801561079e57600080fd5b506102e86107ad366004611ef9565b610f73565b3480156107be57600080fd5b506103b16107cd366004611e12565b610f9e565b3480156107de57600080fd5b506105037f000000000000000000000000a51aceb2b6f3e72c525b9ae08880c080c27bc8cf81565b60606003805461081590611f27565b80601f016020809104026020016040519081016040528092919081815260200182805461084190611f27565b801561088e5780601f106108635761010080835404028352916020019161088e565b820191906000526020600020905b81548152906001019060200180831161087157829003601f168201915b5050505050905090565b6000336108a6818585611017565b60019150505b92915050565b6000336108c085828561113b565b6108cb8585856111b5565b506001949350505050565b60075460009061010090046001600160a01b03166108a6848285611912565b6108fd611938565b6103e861090960025490565b610914906001611f77565b61091e9190611f8e565b81101561098b5760405162461bcd60e51b815260206004820152603060248201527f4552524f523a2043616e6e6f7420736574206d61782062757920616d6f756e7460448201526f206c6f776572207468616e20302e312560801b60648201526084015b60405180910390fd5b60088190556040518181527ffcc0366804aaa8dbf88a2924100c733b70dec8445957a5d5f8ff92898de41009906020015b60405180910390a150565b6000336108a68185856109da8383610f73565b6109e49190611fb0565b611017565b6109f1611938565b6109fb6000611992565b565b610a05611938565b6007805460ff60a81b191690556040517fa4ffae85e880608d5d4365c2b682786545d136145537788e7e0940dff9f0b98c90600090a1565b3360009081526010602052604090205460ff16610a5957600080fd5b6040516323b872dd60e01b81526001600160a01b03831660048201523360248201526044810182905230906323b872dd906064016020604051808303816000875af1158015610aac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad09190611fc3565b505050565b60606004805461081590611f27565b610aec611938565b60008111610b3c5760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610982565b6005546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610b76573d6000803e3d6000fd5b5050565b60003381610b888286610f73565b905083811015610be85760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610982565b6108cb8286868403611017565b6000336108a68185856111b5565b610c0b611938565b600d91909155600e55565b610c1e611938565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610c85611938565b6103e8610c9160025490565b610c9c906003611f77565b610ca69190611f8e565b811015610d115760405162461bcd60e51b815260206004820152603360248201527f4552524f523a2043616e6e6f7420736574206d61782077616c6c657420616d6f604482015272756e74206c6f776572207468616e20302e332560681b6064820152608401610982565b600b8190556040518181527fefc9add9a9b7382de284ef5ad69d8ea863e2680492b21a81948c2d5f04a442bc906020016109bc565b610d4e611938565b60065415610daa5760405162461bcd60e51b8152602060048201526024808201527f4552524f523a20546f6b656e20737461746520697320616c7265616479206c696044820152637665202160e01b6064820152608401610982565b436006556007805461010160b01b61ffff60b01b199091161790819055604051600160b01b90910460ff16151581527fe8a59d3db38e5220ac9d0f72590b7ac876e0916dc8f4db3e7614e6f91fe520899060200160405180910390a1565b610e10611938565b620186a0610e1d60025490565b610e28906001611f77565b610e329190611f8e565b811015610ea75760405162461bcd60e51b815260206004820152603c60248201527f4552524f523a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610982565b600c55565b610eb4611938565b6103e8610ec060025490565b610ecb906001611f77565b610ed59190611f8e565b811015610f3e5760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2043616e6e6f7420736574206d61782073656c6c20616d6f756e60448201527074206c6f776572207468616e20302e312560781b6064820152608401610982565b600a8190556040518181527f53c4eb831d8cfeb750f1c62590d8cd30f4c6f0380d29a05caa09f0d92588560e906020016109bc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610fa6611938565b6001600160a01b03811661100b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610982565b61101481611992565b50565b6001600160a01b0383166110795760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610982565b6001600160a01b0382166110da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610982565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111478484610f73565b905060001981146111af57818110156111a25760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610982565b6111af8484848403611017565b50505050565b6001600160a01b0383166111db5760405162461bcd60e51b815260040161098290611fe0565b6001600160a01b0382166112015760405162461bcd60e51b815260040161098290612025565b600081116112515760405162461bcd60e51b815260206004820152601d60248201527f616d6f756e74206d7573742062652067726561746572207468616e20300000006044820152606401610982565b600754600160a81b900460ff1615611680576005546001600160a01b0384811691161480159061128f57506005546001600160a01b03838116911614155b80156112a357506001600160a01b03821615155b80156112ba57506001600160a01b03821661dead14155b1561168057600754600160b01b900460ff166113b8576001600160a01b03831660009081526011602052604090205460ff168061130f57506001600160a01b03821660009081526011602052604090205460ff165b61135b5760405162461bcd60e51b815260206004820152601d60248201527f4552524f523a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610982565b6005546001600160a01b038481169116146113b85760405162461bcd60e51b815260206004820152601960248201527f4552524f523a2054726164696e6720697320656e61626c6564000000000000006044820152606401610982565b7f000000000000000000000000a51aceb2b6f3e72c525b9ae08880c080c27bc8cf6001600160a01b0316836001600160a01b031614801561141257506001600160a01b03821660009081526011602052604090205460ff16155b156114fa576008548111156114815760405162461bcd60e51b815260206004820152602f60248201527f4552524f523a20427579207472616e7366657220616d6f756e7420657863656560448201526e3239903a34329036b0bc10313abc9760891b6064820152608401610982565b600b546001600160a01b0383166000908152602081905260409020546114a79083611fb0565b11156114f55760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610982565b611680565b7f000000000000000000000000a51aceb2b6f3e72c525b9ae08880c080c27bc8cf6001600160a01b0316826001600160a01b031614801561155457506001600160a01b03831660009081526011602052604090205460ff16155b156115c557600a548111156114f55760405162461bcd60e51b815260206004820152603160248201527f4552524f523a2053656c6c207472616e7366657220616d6f756e74206578636560448201527032b239903a34329036b0bc1039b2b6361760791b6064820152608401610982565b6001600160a01b03821660009081526011602052604090205460ff1615801561160757506001600160a01b03831660009081526011602052604090205460ff16155b1561168057600b546001600160a01b0383166000908152602081905260409020546116329083611fb0565b11156116805760405162461bcd60e51b815260206004820152601f60248201527f4552524f523a2043616e6e6f7420457863656564206d61782077616c6c6574006044820152606401610982565b30600090815260208190526040902054600c54811080159081906116ad5750600754600160b81b900460ff165b80156116bc575060075460ff16155b80156116c9575060095483115b801561170757507f000000000000000000000000a51aceb2b6f3e72c525b9ae08880c080c27bc8cf6001600160a01b0316856001600160a01b031614155b801561172c57506001600160a01b03851660009081526010602052604090205460ff16155b801561175157506001600160a01b03841660009081526010602052604090205460ff16155b15611776576007805460ff1916600117905561176b6119e4565b6007805460ff191690555b6001600160a01b03851660009081526010602052604090205460019060ff16806117b857506001600160a01b03851660009081526010602052604090205460ff165b156117c1575060005b600081156118fe57600754600160c01b900460ff16156117e3576117e3611a64565b7f000000000000000000000000a51aceb2b6f3e72c525b9ae08880c080c27bc8cf6001600160a01b0316866001600160a01b031614801561182657506000600e54115b15611864576064600e548661183b9190611f77565b6118459190611f8e565b905080600f60008282546118599190611fb0565b909155506118e09050565b7f000000000000000000000000a51aceb2b6f3e72c525b9ae08880c080c27bc8cf6001600160a01b0316876001600160a01b03161480156118a757506000600d54115b156118e0576064600d54866118bc9190611f77565b6118c69190611f8e565b905080600f60008282546118da9190611fb0565b90915550505b80156118f1576118f1873083611aed565b6118fb8186612068565b94505b611909878787611aed565b50505050505050565b6001600160a01b03831661192557600080fd5b6001600160a01b0382166110da57600080fd5b6005546001600160a01b031633146109fb5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610982565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b30600090815260208190526040902054600f54811580611a02575080155b15611a0b575050565b600c54821115611a1b57600c5491505b611a2482611c17565b6007546040516001600160a01b0361010090920491909116904780156108fc02916000818181858888f19350505050158015610ad0573d6000803e3d6000fd5b600060065411611aa95760405162461bcd60e51b815260206004820152601060248201526f54726164696e67206e6f74206c69766560801b6044820152606401610982565b600680544391600091611abb91611fb0565b9050808211611ad2576014600d819055600e555050565b6004600d819055600e556007805460ff60c01b191690555050565b6001600160a01b038316611b135760405162461bcd60e51b815260040161098290611fe0565b6001600160a01b038216611b395760405162461bcd60e51b815260040161098290612025565b6001600160a01b03831660009081526020819052604090205481811015611bb15760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610982565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36111af565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611c4c57611c4c61207b565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611cbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ce29190612091565b81600181518110611cf557611cf561207b565b6001600160a01b039092166020928302919091019091015260405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac94790611d4d9085906000908690309042906004016120ae565b600060405180830381600087803b158015611d6757600080fd5b505af1158015611d7b573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611db057858101830151858201604001528201611d94565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461101457600080fd5b60008060408385031215611df957600080fd5b8235611e0481611dd1565b946020939093013593505050565b600060208284031215611e2457600080fd5b8135611e2f81611dd1565b9392505050565b600080600060608486031215611e4b57600080fd5b8335611e5681611dd1565b92506020840135611e6681611dd1565b929592945050506040919091013590565b600060208284031215611e8957600080fd5b5035919050565b60008060408385031215611ea357600080fd5b50508035926020909101359150565b801515811461101457600080fd5b60008060408385031215611ed357600080fd5b8235611ede81611dd1565b91506020830135611eee81611eb2565b809150509250929050565b60008060408385031215611f0c57600080fd5b8235611f1781611dd1565b91506020830135611eee81611dd1565b600181811c90821680611f3b57607f821691505b602082108103611f5b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176108ac576108ac611f61565b600082611fab57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156108ac576108ac611f61565b600060208284031215611fd557600080fd5b8151611e2f81611eb2565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108ac576108ac611f61565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156120a357600080fd5b8151611e2f81611dd1565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120fe5784516001600160a01b0316835293830193918301916001016120d9565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220b432f37448cffece0e0f7702bdd730c16599bc090246449fa47295c831ca438764736f6c63430008130033

Deployed Bytecode Sourcemap

26079:10635:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6557:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8917:201;;;;;;;;;;-1:-1:-1;8917:201:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;8917:201:0;1023:187:1;26528:35:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;26528:35:0;1215:177:1;26934:33:0;;;;;;;;;;;;;;;;27141:63;;;;;;;;;;-1:-1:-1;27141:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;7686:108;;;;;;;;;;-1:-1:-1;7774:12:0;;7686:108;;9698:261;;;;;;;;;;-1:-1:-1;9698:261:0;;;;;:::i;:::-;;:::i;29638:191::-;;;;;;;;;;-1:-1:-1;29638:191:0;;;;;:::i;:::-;;:::i;28900:300::-;;;;;;;;;;-1:-1:-1;28900:300:0;;;;;:::i;:::-;;:::i;:::-;;7528:93;;;;;;;;;;-1:-1:-1;7528:93:0;;7611:2;2437:36:1;;2425:2;2410:18;7528:93:0;2295:184:1;10368:238:0;;;;;;;;;;-1:-1:-1;10368:238:0;;;;;:::i;:::-;;:::i;26641:33::-;;;;;;;;;;-1:-1:-1;26641:33:0;;;;-1:-1:-1;;;26641:33:0;;;;;;26759:28;;;;;;;;;;-1:-1:-1;26759:28:0;;;;-1:-1:-1;;;26759:28:0;;;;;;26862;;;;;;;;;;;;;;;;27010;;;;;;;;;;;;;;;;26721:31;;;;;;;;;;-1:-1:-1;26721:31:0;;;;-1:-1:-1;;;26721:31:0;;;;;;7857:127;;;;;;;;;;-1:-1:-1;7857:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;7958:18:0;7931:7;7958:18;;;;;;;;;;;;7857:127;23290:103;;;;;;;;;;;;;:::i;36596:115::-;;;;;;;;;;;;;:::i;26602:30::-;;;;;;;;;;-1:-1:-1;26602:30:0;;;;;;;-1:-1:-1;;;;;26602:30:0;;;;;;-1:-1:-1;;;;;2648:32:1;;;2630:51;;2618:2;2603:18;26602:30:0;2484:203:1;27047:26:0;;;;;;;;;;;;;;;;26830:25;;;;;;;;;;;;;;;;26796:27;;;;;;;;;;;;;;;;35280:184;;;;;;;;;;-1:-1:-1;35280:184:0;;;;;:::i;:::-;;:::i;22649:87::-;;;;;;;;;;-1:-1:-1;22722:6:0;;-1:-1:-1;;;;;22722:6:0;22649:87;;6776:104;;;;;;;;;;;;;:::i;35472:178::-;;;;;;;;;;-1:-1:-1;35472:178:0;;;;;:::i;:::-;;:::i;11109:436::-;;;;;;;;;;-1:-1:-1;11109:436:0;;;;;:::i;:::-;;:::i;8190:193::-;;;;;;;;;;-1:-1:-1;8190:193:0;;;;;:::i;:::-;;:::i;26897:30::-;;;;;;;;;;;;;;;;29837:162;;;;;;;;;;-1:-1:-1;29837:162:0;;;;;:::i;:::-;;:::i;26681:33::-;;;;;;;;;;-1:-1:-1;26681:33:0;;;;-1:-1:-1;;;26681:33:0;;;;;;29448:182;;;;;;;;;;-1:-1:-1;29448:182:0;;;;;:::i;:::-;;:::i;35975:315::-;;;;;;;;;;-1:-1:-1;35975:315:0;;;;;:::i;:::-;;:::i;26168:118::-;;;;;;;;;;;;26243:42;26168:118;;30007:284;;;;;;;;;;;;;:::i;36298:290::-;;;;;;;;;;-1:-1:-1;36298:290:0;;;;;:::i;:::-;;:::i;26295:120::-;;;;;;;;;;;;26372:42;26295:120;;26976:27;;;;;;;;;;;;;;;;27211:43;;;;;;;;;;-1:-1:-1;27211:43:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;35662:305;;;;;;;;;;-1:-1:-1;35662:305:0;;;;;:::i;:::-;;:::i;8446:151::-;;;;;;;;;;-1:-1:-1;8446:151:0;;;;;:::i;:::-;;:::i;23548:201::-;;;;;;;;;;-1:-1:-1;23548:201:0;;;;;:::i;:::-;;:::i;26424:40::-;;;;;;;;;;;;;;;6557:100;6611:13;6644:5;6637:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6557:100;:::o;8917:201::-;9000:4;4341:10;9056:32;4341:10;9072:7;9081:6;9056:8;:32::i;:::-;9106:4;9099:11;;;8917:201;;;;;:::o;9698:261::-;9795:4;4341:10;9853:38;9869:4;4341:10;9884:6;9853:15;:38::i;:::-;9902:27;9912:4;9918:2;9922:6;9902:9;:27::i;:::-;-1:-1:-1;9947:4:0;;9698:261;-1:-1:-1;;;;9698:261:0:o;29638:191::-;29743:15;;29710:4;;29743:15;;;-1:-1:-1;;;;;29743:15:0;29769:30;29776:7;29743:15;29792:6;29769;:30::i;28900:300::-;22535:13;:11;:13::i;:::-;29029:5:::1;29008:13;7774:12:::0;;;7686:108;29008:13:::1;:17;::::0;29024:1:::1;29008:17;:::i;:::-;29007:27;;;;:::i;:::-;28996:6;:39;;28974:137;;;::::0;-1:-1:-1;;;28974:137:0;;5431:2:1;28974:137:0::1;::::0;::::1;5413:21:1::0;5470:2;5450:18;;;5443:30;5509:34;5489:18;;;5482:62;-1:-1:-1;;;5560:18:1;;;5553:46;5616:19;;28974:137:0::1;;;;;;;;;29122:12;:21:::0;;;29159:33:::1;::::0;1361:25:1;;;29159:33:0::1;::::0;1349:2:1;1334:18;29159:33:0::1;;;;;;;;28900:300:::0;:::o;10368:238::-;10456:4;4341:10;10512:64;4341:10;10528:7;10565:10;10537:25;4341:10;10528:7;10537:9;:25::i;:::-;:38;;;;:::i;:::-;10512:8;:64::i;23290:103::-;22535:13;:11;:13::i;:::-;23355:30:::1;23382:1;23355:18;:30::i;:::-;23290:103::o:0;36596:115::-;22535:13;:11;:13::i;:::-;36650:14:::1;:22:::0;;-1:-1:-1;;;;36650:22:0::1;::::0;;36688:15:::1;::::0;::::1;::::0;36667:5:::1;::::0;36688:15:::1;36596:115::o:0;35280:184::-;35375:10;35355:31;;;;:19;:31;;;;;;;;35347:40;;;;;;35398:58;;-1:-1:-1;;;35398:58:0;;-1:-1:-1;;;;;6034:15:1;;35398:58:0;;;6016:34:1;35437:10:0;6066:18:1;;;6059:43;6118:18;;;6111:34;;;35413:4:0;;35398:34;;5951:18:1;;35398:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;35280:184;;:::o;6776:104::-;6832:13;6865:7;6858:14;;;;;:::i;35472:178::-;22535:13;:11;:13::i;:::-;35560:1:::1;35548:9;:13;35540:55;;;::::0;-1:-1:-1;;;35540:55:0;;6608:2:1;35540:55:0::1;::::0;::::1;6590:21:1::0;6647:2;6627:18;;;6620:30;6686:31;6666:18;;;6659:59;6735:18;;35540:55:0::1;6406:353:1::0;35540:55:0::1;22722:6:::0;;35606:36:::1;::::0;-1:-1:-1;;;;;22722:6:0;;;;35606:36;::::1;;;::::0;35632:9;;35606:36:::1;::::0;;;35632:9;22722:6;35606:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;35472:178:::0;:::o;11109:436::-;11202:4;4341:10;11202:4;11285:25;4341:10;11302:7;11285:9;:25::i;:::-;11258:52;;11349:15;11329:16;:35;;11321:85;;;;-1:-1:-1;;;11321:85:0;;6966:2:1;11321:85:0;;;6948:21:1;7005:2;6985:18;;;6978:30;7044:34;7024:18;;;7017:62;-1:-1:-1;;;7095:18:1;;;7088:35;7140:19;;11321:85:0;6764:401:1;11321:85:0;11442:60;11451:5;11458:7;11486:15;11467:16;:34;11442:8;:60::i;8190:193::-;8269:4;4341:10;8325:28;4341:10;8342:2;8346:6;8325:9;:28::i;29837:162::-;22535:13;:11;:13::i;:::-;29928:12:::1;:25:::0;;;;29964:13:::1;:27:::0;29837:162::o;29448:182::-;22535:13;:11;:13::i;:::-;-1:-1:-1;;;;;29533:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29533:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29588:34;;1163:41:1;;;29588:34:0::1;::::0;1136:18:1;29588:34:0::1;;;;;;;29448:182:::0;;:::o;35975:315::-;22535:13;:11;:13::i;:::-;36107:5:::1;36086:13;7774:12:::0;;;7686:108;36086:13:::1;:17;::::0;36102:1:::1;36086:17;:::i;:::-;36085:27;;;;:::i;:::-;36074:6;:39;;36052:140;;;::::0;-1:-1:-1;;;36052:140:0;;7372:2:1;36052:140:0::1;::::0;::::1;7354:21:1::0;7411:2;7391:18;;;7384:30;7450:34;7430:18;;;7423:62;-1:-1:-1;;;7501:18:1;;;7494:49;7560:19;;36052:140:0::1;7170:415:1::0;36052:140:0::1;36203:15;:24:::0;;;36243:39:::1;::::0;1361:25:1;;;36243:39:0::1;::::0;1349:2:1;1334:18;36243:39:0::1;1215:177:1::0;30007:284:0;22535:13;:11;:13::i;:::-;30066:20:::1;::::0;:25;30058:74:::1;;;::::0;-1:-1:-1;;;30058:74:0;;7792:2:1;30058:74:0::1;::::0;::::1;7774:21:1::0;7831:2;7811:18;;;7804:30;7870:34;7850:18;;;7843:62;-1:-1:-1;;;7921:18:1;;;7914:34;7965:19;;30058:74:0::1;7590:400:1::0;30058:74:0::1;30166:12;30143:20;:35:::0;30189:13:::1;:20:::0;;-1:-1:-1;;;;;;;30220:18:0;;;;;;;;30254:29:::1;::::0;-1:-1:-1;;;30269:13:0;;::::1;30189:20;30269:13;1188:14:1::0;1181:22;1163:41;;30254:29:0::1;::::0;1151:2:1;1136:18;30254:29:0::1;;;;;;;30007:284::o:0;36298:290::-;22535:13;:11;:13::i;:::-;36438:7:::1;36417:13;7774:12:::0;;;7686:108;36417:13:::1;:17;::::0;36433:1:::1;36417:17;:::i;:::-;36416:29;;;;:::i;:::-;36403:9;:42;;36381:152;;;::::0;-1:-1:-1;;;36381:152:0;;8197:2:1;36381:152:0::1;::::0;::::1;8179:21:1::0;8236:2;8216:18;;;8209:30;8275:34;8255:18;;;8248:62;8346:30;8326:18;;;8319:58;8394:19;;36381:152:0::1;7995:424:1::0;36381:152:0::1;36550:18;:30:::0;36298:290::o;35662:305::-;22535:13;:11;:13::i;:::-;35792:5:::1;35771:13;7774:12:::0;;;7686:108;35771:13:::1;:17;::::0;35787:1:::1;35771:17;:::i;:::-;35770:27;;;;:::i;:::-;35759:6;:39;;35737:138;;;::::0;-1:-1:-1;;;35737:138:0;;8626:2:1;35737:138:0::1;::::0;::::1;8608:21:1::0;8665:2;8645:18;;;8638:30;8704:34;8684:18;;;8677:62;-1:-1:-1;;;8755:18:1;;;8748:47;8812:19;;35737:138:0::1;8424:413:1::0;35737:138:0::1;35886:13;:22:::0;;;35924:35:::1;::::0;1361:25:1;;;35924:35:0::1;::::0;1349:2:1;1334:18;35924:35:0::1;1215:177:1::0;8446:151:0;-1:-1:-1;;;;;8562:18:0;;;8535:7;8562:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8446:151::o;23548:201::-;22535:13;:11;:13::i;:::-;-1:-1:-1;;;;;23637:22:0;::::1;23629:73;;;::::0;-1:-1:-1;;;23629:73:0;;9044:2:1;23629:73:0::1;::::0;::::1;9026:21:1::0;9083:2;9063:18;;;9056:30;9122:34;9102:18;;;9095:62;-1:-1:-1;;;9173:18:1;;;9166:36;9219:19;;23629:73:0::1;8842:402:1::0;23629:73:0::1;23713:28;23732:8;23713:18;:28::i;:::-;23548:201:::0;:::o;15102:346::-;-1:-1:-1;;;;;15204:19:0;;15196:68;;;;-1:-1:-1;;;15196:68:0;;9451:2:1;15196:68:0;;;9433:21:1;9490:2;9470:18;;;9463:30;9529:34;9509:18;;;9502:62;-1:-1:-1;;;9580:18:1;;;9573:34;9624:19;;15196:68:0;9249:400:1;15196:68:0;-1:-1:-1;;;;;15283:21:0;;15275:68;;;;-1:-1:-1;;;15275:68:0;;9856:2:1;15275:68:0;;;9838:21:1;9895:2;9875:18;;;9868:30;9934:34;9914:18;;;9907:62;-1:-1:-1;;;9985:18:1;;;9978:32;10027:19;;15275:68:0;9654:398:1;15275:68:0;-1:-1:-1;;;;;15356:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15408:32;;1361:25:1;;;15408:32:0;;1334:18:1;15408:32:0;;;;;;;15102:346;;;:::o;16035:419::-;16136:24;16163:25;16173:5;16180:7;16163:9;:25::i;:::-;16136:52;;-1:-1:-1;;16203:16:0;:37;16199:248;;16285:6;16265:16;:26;;16257:68;;;;-1:-1:-1;;;16257:68:0;;10259:2:1;16257:68:0;;;10241:21:1;10298:2;10278:18;;;10271:30;10337:31;10317:18;;;10310:59;10386:18;;16257:68:0;10057:353:1;16257:68:0;16369:51;16378:5;16385:7;16413:6;16394:16;:25;16369:8;:51::i;:::-;16125:329;16035:419;;;:::o;30777:3577::-;-1:-1:-1;;;;;30909:18:0;;30901:68;;;;-1:-1:-1;;;30901:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30988:16:0;;30980:64;;;;-1:-1:-1;;;30980:64:0;;;;;;;:::i;:::-;31072:1;31063:6;:10;31055:52;;;;-1:-1:-1;;;31055:52:0;;11427:2:1;31055:52:0;;;11409:21:1;11466:2;11446:18;;;11439:30;11505:31;11485:18;;;11478:59;11554:18;;31055:52:0;11225:353:1;31055:52:0;31124:14;;-1:-1:-1;;;31124:14:0;;;;31120:1855;;;22722:6;;-1:-1:-1;;;;;31177:15:0;;;22722:6;;31177:15;;;;:49;;-1:-1:-1;22722:6:0;;-1:-1:-1;;;;;31213:13:0;;;22722:6;;31213:13;;31177:49;:86;;;;-1:-1:-1;;;;;;31247:16:0;;;;31177:86;:128;;;;-1:-1:-1;;;;;;31284:21:0;;31298:6;31284:21;;31177:128;31155:1809;;;31345:13;;-1:-1:-1;;;31345:13:0;;;;31340:359;;-1:-1:-1;;;;;31417:37:0;;;;;;:31;:37;;;;;;;;;:105;;-1:-1:-1;;;;;;31487:35:0;;;;;;:31;:35;;;;;;;;31417:105;31383:220;;;;-1:-1:-1;;;31383:220:0;;11785:2:1;31383:220:0;;;11767:21:1;11824:2;11804:18;;;11797:30;11863:31;11843:18;;;11836:59;11912:18;;31383:220:0;11583:353:1;31383:220:0;22722:6;;-1:-1:-1;;;;;31634:15:0;;;22722:6;;31634:15;31626:53;;;;-1:-1:-1;;;31626:53:0;;12143:2:1;31626:53:0;;;12125:21:1;12182:2;12162:18;;;12155:30;12221:27;12201:18;;;12194:55;12266:18;;31626:53:0;11941:349:1;31626:53:0;31781:15;-1:-1:-1;;;;;31773:23:0;:4;-1:-1:-1;;;;;31773:23:0;;:63;;;;-1:-1:-1;;;;;;31801:35:0;;;;;;:31;:35;;;;;;;;31800:36;31773:63;31747:1202;;;31923:12;;31913:6;:22;;31879:155;;;;-1:-1:-1;;;31879:155:0;;12497:2:1;31879:155:0;;;12479:21:1;12536:2;12516:18;;;12509:30;12575:34;12555:18;;;12548:62;-1:-1:-1;;;12626:18:1;;;12619:45;12681:19;;31879:155:0;12295:411:1;31879:155:0;32117:15;;-1:-1:-1;;;;;7958:18:0;;7931:7;7958:18;;;;;;;;;;;32091:22;;:6;:22;:::i;:::-;:41;;32057:158;;;;-1:-1:-1;;;32057:158:0;;12913:2:1;32057:158:0;;;12895:21:1;12952:2;12932:18;;;12925:30;12991:33;12971:18;;;12964:61;13042:18;;32057:158:0;12711:355:1;32057:158:0;31747:1202;;;32319:15;-1:-1:-1;;;;;32313:21:0;:2;-1:-1:-1;;;;;32313:21:0;;:63;;;;-1:-1:-1;;;;;;32339:37:0;;;;;;:31;:37;;;;;;;;32338:38;32313:63;32287:662;;;32463:13;;32453:6;:23;;32419:158;;;;-1:-1:-1;;;32419:158:0;;13273:2:1;32419:158:0;;;13255:21:1;13312:2;13292:18;;;13285:30;13351:34;13331:18;;;13324:62;-1:-1:-1;;;13402:18:1;;;13395:47;13459:19;;32419:158:0;13071:413:1;32287:662:0;-1:-1:-1;;;;;32630:35:0;;;;;;:31;:35;;;;;;;;32629:36;:99;;;;-1:-1:-1;;;;;;32691:37:0;;;;;;:31;:37;;;;;;;;32690:38;32629:99;32603:346;;;32831:15;;-1:-1:-1;;;;;7958:18:0;;7931:7;7958:18;;;;;;;;;;;32805:22;;:6;:22;:::i;:::-;:41;;32771:158;;;;-1:-1:-1;;;32771:158:0;;12913:2:1;32771:158:0;;;12895:21:1;12952:2;12932:18;;;12925:30;12991:33;12971:18;;;12964:61;13042:18;;32771:158:0;12711:355:1;32771:158:0;33036:4;32987:28;7958:18;;;;;;;;;;;33094;;33070:42;;;;;;;33143:35;;-1:-1:-1;33167:11:0;;-1:-1:-1;;;33167:11:0;;;;33143:35;:61;;;;-1:-1:-1;33196:8:0;;;;33195:9;33143:61;:97;;;;;33230:10;;33221:6;:19;33143:97;:141;;;;;33268:15;-1:-1:-1;;;;;33260:23:0;:4;-1:-1:-1;;;;;33260:23:0;;33258:26;33143:141;:184;;;;-1:-1:-1;;;;;;33302:25:0;;;;;;:19;:25;;;;;;;;33301:26;33143:184;:225;;;;-1:-1:-1;;;;;;33345:23:0;;;;;;:19;:23;;;;;;;;33344:24;33143:225;33125:353;;;33395:8;:15;;-1:-1:-1;;33395:15:0;33406:4;33395:15;;;33425:10;:8;:10::i;:::-;33450:8;:16;;-1:-1:-1;;33450:16:0;;;33125:353;-1:-1:-1;;;;;33530:25:0;;33490:12;33530:25;;;:19;:25;;;;;;33505:4;;33530:25;;;:52;;-1:-1:-1;;;;;;33559:23:0;;;;;;:19;:23;;;;;;;;33530:52;33526:100;;;-1:-1:-1;33609:5:0;33526:100;33638:12;33677:7;33673:628;;;33706:9;;-1:-1:-1;;;33706:9:0;;;;33703:57;;;33734:9;:7;:9::i;:::-;33807:15;-1:-1:-1;;;;;33801:21:0;:2;-1:-1:-1;;;;;33801:21:0;;:42;;;;;33842:1;33826:13;;:17;33801:42;33797:355;;;33898:3;33881:13;;33872:6;:22;;;;:::i;:::-;33871:30;;;;:::i;:::-;33864:37;;33935:4;33920:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;33797:355:0;;-1:-1:-1;33797:355:0;;34006:15;-1:-1:-1;;;;;33998:23:0;:4;-1:-1:-1;;;;;33998:23:0;;:43;;;;;34040:1;34025:12;;:16;33998:43;33994:158;;;34095:3;34079:12;;34070:6;:21;;;;:::i;:::-;34069:29;;;;:::i;:::-;34062:36;;34132:4;34117:11;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;33994:158:0;34172:8;;34168:91;;34201:42;34217:4;34231;34238;34201:15;:42::i;:::-;34275:14;34285:4;34275:14;;:::i;:::-;;;33673:628;34313:33;34329:4;34335:2;34339:6;34313:15;:33::i;:::-;30890:3464;;;;30777:3577;;;:::o;15456:288::-;-1:-1:-1;;;;;15570:19:0;;15562:28;;;;;;-1:-1:-1;;;;;15609:21:0;;15601:30;;;;;22814:132;22722:6;;-1:-1:-1;;;;;22722:6:0;4341:10;22878:23;22870:68;;;;-1:-1:-1;;;22870:68:0;;13824:2:1;22870:68:0;;;13806:21:1;;;13843:18;;;13836:30;13902:34;13882:18;;;13875:62;13954:18;;22870:68:0;13622:356:1;23909:191:0;24002:6;;;-1:-1:-1;;;;;24019:17:0;;;-1:-1:-1;;;;;;24019:17:0;;;;;;;24052:40;;24002:6;;;24019:17;24002:6;;24052:40;;23983:16;;24052:40;23972:128;23909:191;:::o;34781:491::-;34874:4;34830:23;7958:18;;;;;;;;;;;34922:11;;34950:20;;;:46;;-1:-1:-1;34974:22:0;;34950:46;34946:85;;;35013:7;;34781:491::o;34946:85::-;35065:18;;35047:15;:36;35043:105;;;35118:18;;35100:36;;35043:105;35162:33;35179:15;35162:16;:33::i;:::-;35216:15;;35208:56;;-1:-1:-1;;;;;35216:15:0;;;;;;;;;35242:21;35208:56;;;;;;;;;35242:21;35216:15;35208:56;;;;;;;;;;;;;;;;;;;30299:470;30383:1;30360:20;;:24;30338:77;;;;-1:-1:-1;;;30338:77:0;;14185:2:1;30338:77:0;;;14167:21:1;14224:2;14204:18;;;14197:30;-1:-1:-1;;;14243:18:1;;;14236:46;14299:18;;30338:77:0;13983:340:1;30338:77:0;30499:20;;;30449:12;;30426:20;;30499:24;;;:::i;:::-;30472:51;;30553:16;30537:12;:32;30534:227;;30601:2;30586:12;:17;;;30618:13;:18;35606:36:::1;35472:178:::0;:::o;30534:227::-;30684:1;30669:12;:16;;;30700:13;:17;30732:9;:17;;-1:-1:-1;;;;30732:17:0;;;30327:442;;30299:470::o;12015:806::-;-1:-1:-1;;;;;12112:18:0;;12104:68;;;;-1:-1:-1;;;12104:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12191:16:0;;12183:64;;;;-1:-1:-1;;;12183:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12333:15:0;;12311:19;12333:15;;;;;;;;;;;12367:21;;;;12359:72;;;;-1:-1:-1;;;12359:72:0;;14530:2:1;12359:72:0;;;14512:21:1;14569:2;14549:18;;;14542:30;14608:34;14588:18;;;14581:62;-1:-1:-1;;;14659:18:1;;;14652:36;14705:19;;12359:72:0;14328:402:1;12359:72:0;-1:-1:-1;;;;;12467:15:0;;;:9;:15;;;;;;;;;;;12485:20;;;12467:38;;12685:13;;;;;;;;;;:23;;;;;;12737:26;;1361:25:1;;;12685:13:0;;12737:26;;1334:18:1;12737:26:0;;;;;;;12776:37;35280:184;34364:409;34464:16;;;34478:1;34464:16;;;;;;;;34440:21;;34464:16;;;;;;;;;;-1:-1:-1;34464:16:0;34440:40;;34509:4;34491;34496:1;34491:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;34491:23:0;;;-1:-1:-1;;;;;34491:23:0;;;;;26372:42;-1:-1:-1;;;;;34535:19:0;;:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34525:4;34530:1;34525:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;34525:31:0;;;:7;;;;;;;;;;;:31;34569:196;;-1:-1:-1;;;34569:196:0;;26372:42;;34569:65;;:196;;34649:11;;34675:1;;34692:4;;34719;;34739:15;;34569:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34419:354;34364:409;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;:::-;1633:5;1397:247;-1:-1:-1;;;1397:247:1:o;1649:456::-;1726:6;1734;1742;1795:2;1783:9;1774:7;1770:23;1766:32;1763:52;;;1811:1;1808;1801:12;1763:52;1850:9;1837:23;1869:31;1894:5;1869:31;:::i;:::-;1919:5;-1:-1:-1;1976:2:1;1961:18;;1948:32;1989:33;1948:32;1989:33;:::i;:::-;1649:456;;2041:7;;-1:-1:-1;;;2095:2:1;2080:18;;;;2067:32;;1649:456::o;2110:180::-;2169:6;2222:2;2210:9;2201:7;2197:23;2193:32;2190:52;;;2238:1;2235;2228:12;2190:52;-1:-1:-1;2261:23:1;;2110:180;-1:-1:-1;2110:180:1:o;2692:248::-;2760:6;2768;2821:2;2809:9;2800:7;2796:23;2792:32;2789:52;;;2837:1;2834;2827:12;2789:52;-1:-1:-1;;2860:23:1;;;2930:2;2915:18;;;2902:32;;-1:-1:-1;2692:248:1:o;2945:118::-;3031:5;3024:13;3017:21;3010:5;3007:32;2997:60;;3053:1;3050;3043:12;3068:382;3133:6;3141;3194:2;3182:9;3173:7;3169:23;3165:32;3162:52;;;3210:1;3207;3200:12;3162:52;3249:9;3236:23;3268:31;3293:5;3268:31;:::i;:::-;3318:5;-1:-1:-1;3375:2:1;3360:18;;3347:32;3388:30;3347:32;3388:30;:::i;:::-;3437:7;3427:17;;;3068:382;;;;;:::o;3924:388::-;3992:6;4000;4053:2;4041:9;4032:7;4028:23;4024:32;4021:52;;;4069:1;4066;4059:12;4021:52;4108:9;4095:23;4127:31;4152:5;4127:31;:::i;:::-;4177:5;-1:-1:-1;4234:2:1;4219:18;;4206:32;4247:33;4206:32;4247:33;:::i;4317:380::-;4396:1;4392:12;;;;4439;;;4460:61;;4514:4;4506:6;4502:17;4492:27;;4460:61;4567:2;4559:6;4556:14;4536:18;4533:38;4530:161;;4613:10;4608:3;4604:20;4601:1;4594:31;4648:4;4645:1;4638:15;4676:4;4673:1;4666:15;4530:161;;4317:380;;;:::o;4702:127::-;4763:10;4758:3;4754:20;4751:1;4744:31;4794:4;4791:1;4784:15;4818:4;4815:1;4808:15;4834:168;4907:9;;;4938;;4955:15;;;4949:22;;4935:37;4925:71;;4976:18;;:::i;5007:217::-;5047:1;5073;5063:132;;5117:10;5112:3;5108:20;5105:1;5098:31;5152:4;5149:1;5142:15;5180:4;5177:1;5170:15;5063:132;-1:-1:-1;5209:9:1;;5007:217::o;5646:125::-;5711:9;;;5732:10;;;5729:36;;;5745:18;;:::i;6156:245::-;6223:6;6276:2;6264:9;6255:7;6251:23;6247:32;6244:52;;;6292:1;6289;6282:12;6244:52;6324:9;6318:16;6343:28;6365:5;6343:28;:::i;10415:401::-;10617:2;10599:21;;;10656:2;10636:18;;;10629:30;10695:34;10690:2;10675:18;;10668:62;-1:-1:-1;;;10761:2:1;10746:18;;10739:35;10806:3;10791:19;;10415:401::o;10821:399::-;11023:2;11005:21;;;11062:2;11042:18;;;11035:30;11101:34;11096:2;11081:18;;11074:62;-1:-1:-1;;;11167:2:1;11152:18;;11145:33;11210:3;11195:19;;10821:399::o;13489:128::-;13556:9;;;13577:11;;;13574:37;;;13591:18;;:::i;14867:127::-;14928:10;14923:3;14919:20;14916:1;14909:31;14959:4;14956:1;14949:15;14983:4;14980:1;14973:15;14999:251;15069:6;15122:2;15110:9;15101:7;15097:23;15093:32;15090:52;;;15138:1;15135;15128:12;15090:52;15170:9;15164:16;15189:31;15214:5;15189:31;:::i;15255:980::-;15517:4;15565:3;15554:9;15550:19;15596:6;15585:9;15578:25;15622:2;15660:6;15655:2;15644:9;15640:18;15633:34;15703:3;15698:2;15687:9;15683:18;15676:31;15727:6;15762;15756:13;15793:6;15785;15778:22;15831:3;15820:9;15816:19;15809:26;;15870:2;15862:6;15858:15;15844:29;;15891:1;15901:195;15915:6;15912:1;15909:13;15901:195;;;15980:13;;-1:-1:-1;;;;;15976:39:1;15964:52;;16071:15;;;;16036:12;;;;16012:1;15930:9;15901:195;;;-1:-1:-1;;;;;;;16152:32:1;;;;16147:2;16132:18;;16125:60;-1:-1:-1;;;16216:3:1;16201:19;16194:35;16113:3;15255:980;-1:-1:-1;;;15255:980:1:o

Swarm Source

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