ETH Price: $2,688.87 (-1.66%)
Gas: 0.84 Gwei

Token

Shadow Token (SHADOW)
 

Overview

Max Total Supply

100,000,000 SHADOW

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
918,755.999999999999999509 SHADOW

Value
$0.00
0x6e7f3bd88ae1bb5e82e5b6fef0ec58c7295a17b1
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:
ShadowToken

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-14
*/

/*
                  (((((((((((((((*                               (((((((((((((((                                        
                  (((((((((((((((                                 ((((((((((((((                                        
                  ((((((########                                   (((((((((((((                                        
                  ((((((((((((#                                    ,((((((((((((                                        
                  ((((((((((((#                                    ,((((((((((((                                        
                  ((((((((((((                                      /(((((((((((                                        
                  (((((((((((.                                       (((((((((((                                        
                  ,                                                            ,                                        
                  ,                                                            ,                                         
                  #,,,,,,,,,,,,,,,.................................,,,,,,,,,,,,,                                        
                  #,,,,,,,,,,,,,,,.................................,,,,,,,,,,,,,                                        
                  #,,/////,/,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,......... %%%%/,,                                        
                  (((((((                                                %######                                        
                  ,,,,,,,         .(,                         @@,         ((((((                                        
                  #######         ..((((#@               ////@.,,         %%%%%%                                        
                  ///////         ...###/#####      (((///,..,,,,         &&&&&&                                        
                  ///////         ############.     (...........,         ######                                        
                  #######,                                               (((((((                                        
                  ########                                              (#######                                        
                  %%%%%%%%%                                            #%%%%%%%%                                        
                  &&&&&&&&&&(                 **@,#,,                 &&&&&&&&&&                                        
                  &&&&&&&&&&&&.            //(//&#(#/##,            ############                                        
                  %%%%%%%%%%%%%/,            #/(#(.,#,            ,#############                                        
                  %%%%%%%%%%%%%/,&(/                           (#/,#############                                        
                  %%%%%%%%%%%%%/,&((///(#                 #(/(/(#/,#############    

https://shadowswap.io

Shrouded in secrecy, powered by blockchain security.

Shadow Swap provides fully anonymous crypto transactions, ensuring your privacy and secury.
Trade with confidence, knowing your transactions are untraceable and your identity remains anonymous.

*/

// SPDX-License-Identifier: MIT

pragma solidity =0.8.17;

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

/**
 * @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.7.0) (access/Ownable.sol)

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

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

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

    /**
     * @dev 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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

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

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

// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface IDEXFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface IDEXRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

contract ShadowToken is Context, ERC20, Ownable {
    using SafeMath for uint256;

    IDEXRouter private _dexRouter;

    mapping (address => uint) private _cooldown;

    mapping (address => bool) private _isExcludedFromFees;
    mapping (address => bool) private _isExcludedMaxTransactionAmount;
    mapping (address => bool) private _isBlacklisted;

    bool public tradingOpen;
    bool private _swapping;
    bool public swapEnabled = false;
    bool public cooldownEnabled = false;
    bool public feesEnabled = true;
    bool public transferFeesEnabled = true;

    uint256 private constant _tSupply = 100_000_000 ether;

    uint256 public maxBuyAmount = _tSupply;
    uint256 public maxSellAmount = _tSupply;
    uint256 public maxWalletAmount = _tSupply;

    uint256 public tradingOpenBlock = 0;
    uint256 private _blocksToBlacklist = 0;
    uint256 private _cooldownBlocks = 1;

    uint256 public constant FEE_DIVISOR = 1000;

    uint256 private _totalFees;
    uint256 private _marketingFee;
    uint256 private _nonkycCEXFee;
    uint256 private _liquidityFee;

    uint256 public buyMarketingFee = 20;
    uint256 private _previousBuyMarketingFee = buyMarketingFee;
    uint256 public buynonkycCEXFee = 10;
    uint256 private _previousBuynonKycCEXFee = buynonkycCEXFee;
    uint256 public buyLiquidityFee = 30;
    uint256 private _previousBuyLiquidityFee = buyLiquidityFee;

    uint256 public sellMarketingFee = 20;
    uint256 private _previousSellMktgFee = sellMarketingFee;
    uint256 public sellnonKycCEXFee = 10;
    uint256 private _previousSellDevFee = sellnonKycCEXFee;
    uint256 public sellLiquidityFee = 30;
    uint256 private _previousSellLiqFee = sellLiquidityFee;

    uint256 public transferMarketingFee = 20;
    uint256 private _previousTransferMarketingFee = transferMarketingFee;
    uint256 public transfernonKycCEXFee = 10;
    uint256 private _previousTransfernonKycCEXFee = transfernonKycCEXFee;
    uint256 public transferLiquidityFee = 30;
    uint256 private _previousTransferLiquidityFee = transferLiquidityFee;

    uint256 private _tokensForMarketing;
    uint256 private _tokensFornonKycCEX;
    uint256 private _tokensForLiquidity;
    uint256 private _swapTokensAtAmount = 0;

    address payable public marketingWalletAddress;
    address payable public nonkycCEXWalletAddress;
    address payable public liquidityWalletAddress;

    address private _dexPair;
    address constant private DEAD = 0x000000000000000000000000000000000000dEaD;
    address constant private ZERO = 0x0000000000000000000000000000000000000000;

    enum TransactionType {
        BUY,
        SELL,
        TRANSFER
    }

    event OpenTrading(uint256 tradingOpenBlock, uint256 _blocksToBlacklist);
    event SetMaxBuyAmount(uint256 newMaxBuyAmount);
    event SetMaxSellAmount(uint256 newMaxSellAmount);
    event SetMaxWalletAmount(uint256 newMaxWalletAmount);
    event SetSwapTokensAtAmount(uint256 newSwapTokensAtAmount);
    event SetBuyFee(uint256 buyMarketingFee, uint256 buynonkycCEXFee, uint256 buyLiquidityFee);
	event SetSellFee(uint256 sellMarketingFee, uint256 sellnonKycCEXFee, uint256 sellLiquidityFee);
    event SetTransferFee(uint256 transferMarketingFee, uint256 transfernonKycCEXFee, uint256 transferLiquidityFee);
    
    constructor (address payable _marketingWalletAddress, address payable _nonkycCEXWalletAddress, address payable _liquidityWalletAddress) ERC20("Shadow Token", "SHADOW") payable {
        require(_marketingWalletAddress != ZERO, "_marketingWalletAddress cannot be 0");
        require(_nonkycCEXWalletAddress != ZERO, "_nonkycCEXWalletAddress cannot be 0");
        require(_liquidityWalletAddress != ZERO, "_liquidityWalletAddress cannot be 0");

        marketingWalletAddress = _marketingWalletAddress;
        nonkycCEXWalletAddress = _nonkycCEXWalletAddress;
        liquidityWalletAddress = _liquidityWalletAddress;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[DEAD] = true;
        _isExcludedFromFees[marketingWalletAddress] = true;
        _isExcludedFromFees[nonkycCEXWalletAddress] = true;
        _isExcludedFromFees[liquidityWalletAddress] = true;

        _isExcludedMaxTransactionAmount[owner()] = true;
        _isExcludedMaxTransactionAmount[address(this)] = true;
        _isExcludedMaxTransactionAmount[DEAD] = true;
        _isExcludedMaxTransactionAmount[marketingWalletAddress] = true;
        _isExcludedMaxTransactionAmount[nonkycCEXWalletAddress] = true;
        _isExcludedMaxTransactionAmount[liquidityWalletAddress] = true;

        _mint(address(this), _tSupply.mul(60).div(100));
        _mint(owner(), _tSupply.mul(40).div(100));
    }

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

        bool takeFee = true;
        TransactionType txType = (from == _dexPair) ? TransactionType.BUY : (to == _dexPair) ? TransactionType.SELL : TransactionType.TRANSFER;
        if (from != owner() && to != owner() && to != ZERO && to != DEAD && !_swapping) {
            require(!_isBlacklisted[from] && !_isBlacklisted[to], "Blacklisted.");

            if(!tradingOpen) require(_isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not allowed yet.");

            if (cooldownEnabled) {
                if (to != address(_dexRouter) && to != address(_dexPair)) {
                    require(_cooldown[tx.origin] < block.number - _cooldownBlocks && _cooldown[to] < block.number - _cooldownBlocks, "Transfer delay enabled. Try again later.");
                    _cooldown[tx.origin] = block.number;
                    _cooldown[to] = block.number;
                }
            }

            if (txType == TransactionType.BUY && to != address(_dexRouter) && !_isExcludedMaxTransactionAmount[to]) {
                
                require(amount <= maxBuyAmount, "Transfer amount exceeds the maxBuyAmount.");
                require(balanceOf(to) + amount <= maxWalletAmount, "Exceeds maximum wallet token amount.");
            }
            
            if (txType == TransactionType.SELL && from != address(_dexRouter) && !_isExcludedMaxTransactionAmount[from]) require(amount <= maxSellAmount, "Transfer amount exceeds the maxSellAmount.");
        }

        if(_isExcludedFromFees[from] || _isExcludedFromFees[to] || !feesEnabled || (!transferFeesEnabled && txType == TransactionType.TRANSFER)) takeFee = false;

        uint256 contractBalance = balanceOf(address(this));
        bool canSwap = (contractBalance > _swapTokensAtAmount) && (txType == TransactionType.SELL);

        if (canSwap && swapEnabled && !_swapping && !_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            _swapping = true;
            _swapBack(contractBalance);
            _swapping = false;
        }

        _tokenTransfer(from, to, amount, takeFee, txType);
    }

    function _swapBack(uint256 contractBalance) internal {
        uint256 totalTokensToSwap =  _tokensForMarketing.add(_tokensFornonKycCEX).add(_tokensForLiquidity);
        bool success;
        
        if (contractBalance == 0 || totalTokensToSwap == 0) return;

        if (contractBalance > _swapTokensAtAmount.mul(5)) contractBalance = _swapTokensAtAmount.mul(5);

        uint256 liquidityTokens = contractBalance.mul(_tokensForLiquidity).div(totalTokensToSwap).div(2);
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        _swapTokensForETH(amountToSwapForETH);
        
        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
        uint256 ethForMktg = ethBalance.mul(_tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(_tokensFornonKycCEX).div(totalTokensToSwap);
        uint256 ethForLiq = ethBalance.sub(ethForMktg).sub(ethForDev);
        
        _tokensForMarketing = 0;
        _tokensFornonKycCEX = 0;
        _tokensForLiquidity = 0;

        if(liquidityTokens > 0 && ethForLiq > 0) _addLiquidity(liquidityTokens, ethForLiq);

        (success,) = address(nonkycCEXWalletAddress).call{value: ethForDev}("");
        (success,) = address(marketingWalletAddress).call{value: address(this).balance}("");
    }

    function _swapTokensForETH(uint256 tokenAmount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = _dexRouter.WETH();
        _approve(address(this), address(_dexRouter), tokenAmount);
        _dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) internal {
        _approve(address(this), address(_dexRouter), tokenAmount);
        _dexRouter.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0,
            0,
            liquidityWalletAddress,
            block.timestamp
        );
    }
        
    function _sendETHToFee(uint256 amount) internal {
        marketingWalletAddress.transfer(amount.div(2));
        nonkycCEXWalletAddress.transfer(amount.div(2));
    }

    function openTrading(uint256 blocks) public onlyOwner {
        require(!tradingOpen, "Trading is already open");
        require(blocks <= 10, "Invalid blocks count.");

        if (block.chainid == 1 || block.chainid == 5) _dexRouter = IDEXRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // ETH: Uniswap V2
        else if (block.chainid == 56) _dexRouter = IDEXRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E); // ETH Chain: PCS V2
        else if (block.chainid == 97) _dexRouter = IDEXRouter(0xD99D1c33F9fC3444f8101754aBC46c52416550D1); // ETH Chain Testnet: PCS V2
        else if (block.chainid == 137 || block.chainid == 80001) _dexRouter = IDEXRouter(0xa5E0829CaCEd8fFDD4De3c43696c57F7D7A678ff); // Polygon: Quickswap 
        else revert("Chain not set.");

        _approve(address(this), address(_dexRouter), totalSupply());
        _dexPair = IDEXFactory(_dexRouter.factory()).createPair(address(this), _dexRouter.WETH());
        _dexRouter.addLiquidityETH{value: address(this).balance}(address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp);
        IERC20(_dexPair).approve(address(_dexRouter), type(uint).max);

        maxBuyAmount = totalSupply().mul(2).div(1000);
        maxSellAmount = totalSupply().mul(2).div(1000);
        maxWalletAmount = totalSupply().mul(1).div(100);
        _swapTokensAtAmount = totalSupply().mul(2).div(10000);
        swapEnabled = true;
        cooldownEnabled = true;
        tradingOpen = true;
        tradingOpenBlock = block.number;
        _blocksToBlacklist = blocks;
        emit OpenTrading(tradingOpenBlock, _blocksToBlacklist);
    }


    function isBlacklisted(address wallet) external view returns (bool) {
        return _isBlacklisted[wallet];
    }

   

    function changeSwapEnabled(bool onoff) public onlyOwner {
        swapEnabled = onoff;
    }


 function changeFeesEnabled(bool onoff) public onlyOwner {
        feesEnabled = onoff;
    }

     function changeTransferFeesEnabled(bool onoff) public onlyOwner {
        transferFeesEnabled = onoff;
    }

    function changeCooldownEnabled(bool onoff) public onlyOwner {
        cooldownEnabled = onoff;
    }
   

    function setMaxBuyAmount(uint256 _maxBuyAmount) public onlyOwner {
        require(_maxBuyAmount >= (totalSupply().mul(1).div(1000)), "Max buy amount cannot be lower than 0.1% total supply.");
        maxBuyAmount = _maxBuyAmount;
        emit SetMaxBuyAmount(maxBuyAmount);
    }

    function setMaxSellAmount(uint256 _maxSellAmount) public onlyOwner {
        require(_maxSellAmount >= (totalSupply().mul(1).div(1000)), "Max sell amount cannot be lower than 0.1% total supply.");
        maxSellAmount = _maxSellAmount;
        emit SetMaxSellAmount(maxSellAmount);
    }
    
    function setMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner {
        require(_maxWalletAmount >= (totalSupply().mul(1).div(1000)), "Max wallet amount cannot be lower than 0.1% total supply.");
        maxWalletAmount = _maxWalletAmount;
        emit SetMaxWalletAmount(maxWalletAmount);
    }
    
    function setSwapTokensAtAmount(uint256 swapTokensAtAmount) public onlyOwner {
        require(swapTokensAtAmount >= (totalSupply().mul(1).div(1000000)), "Swap amount cannot be lower than 0.0001% total supply.");
        require(swapTokensAtAmount <= (totalSupply().mul(5).div(1000)), "Swap amount cannot be higher than 0.5% total supply.");
        _swapTokensAtAmount = swapTokensAtAmount;
        emit SetSwapTokensAtAmount(_swapTokensAtAmount);
    }

    function setMarketingWallet(address _marketingWalletAddress) public onlyOwner {
        require(_marketingWalletAddress != ZERO, "marketingWalletAddress cannot be 0");
        _isExcludedFromFees[marketingWalletAddress] = false;
        _isExcludedMaxTransactionAmount[marketingWalletAddress] = false;
        marketingWalletAddress = payable(_marketingWalletAddress);
        _isExcludedFromFees[marketingWalletAddress] = true;
        _isExcludedMaxTransactionAmount[marketingWalletAddress] = true;
    }

    function setnonKycCEXWallet(address _nonkycCEXWalletAddress) public onlyOwner {
        require(_nonkycCEXWalletAddress != ZERO, "nonkycCEXWalletAddress cannot be 0");
        _isExcludedFromFees[nonkycCEXWalletAddress] = false;
        _isExcludedMaxTransactionAmount[nonkycCEXWalletAddress] = false;
        nonkycCEXWalletAddress = payable(_nonkycCEXWalletAddress);
        _isExcludedFromFees[nonkycCEXWalletAddress] = true;
        _isExcludedMaxTransactionAmount[nonkycCEXWalletAddress] = true;
    }

    function setLiquidityWallet(address _liquidityWalletAddress) public onlyOwner {
        require(_liquidityWalletAddress != ZERO, "liquidityWalletAddress cannot be 0");
        _isExcludedFromFees[liquidityWalletAddress] = false;
        _isExcludedMaxTransactionAmount[liquidityWalletAddress] = false;
        liquidityWalletAddress = payable(_liquidityWalletAddress);
        _isExcludedFromFees[liquidityWalletAddress] = true;
        _isExcludedMaxTransactionAmount[liquidityWalletAddress] = true;
    }

    function setExcludedFromFees(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedFromFees[accounts[i]] = isEx;
    }
    
    function setExcludeFromMaxTransaction(address[] memory accounts, bool isEx) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) _isExcludedMaxTransactionAmount[accounts[i]] = isEx;
    }
    
    function setBlacklist(address[] memory accounts, bool isBL) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            if((accounts[i] != _dexPair) && (accounts[i] != address(_dexRouter)) && (accounts[i] != address(this))) _isBlacklisted[accounts[i]] = isBL;
        }
    }

    function setBuyFee(uint256 _buyMarketingFee, uint256 _buynonkycCEXFee, uint256 _buyLiquidityFee) public onlyOwner {
        buyMarketingFee = _buyMarketingFee;
        buynonkycCEXFee = _buynonkycCEXFee;
        buyLiquidityFee = _buyLiquidityFee;
        emit SetBuyFee(buyMarketingFee, buynonkycCEXFee, buyLiquidityFee);
    }

    function setSellFee(uint256 _sellMarketingFee, uint256 _sellnonKycCEXFee, uint256 _sellLiquidityFee) public onlyOwner {
        sellMarketingFee = _sellMarketingFee;
        sellnonKycCEXFee = _sellnonKycCEXFee;
        sellLiquidityFee = _sellLiquidityFee;
        emit SetSellFee(sellMarketingFee, sellnonKycCEXFee, sellLiquidityFee);
    }

    function setTransferFee(uint256 _transferMarketingFee, uint256 _transfernonKycCEXFee, uint256 _transferLiquidityFee) public onlyOwner {
        transferMarketingFee = _transferMarketingFee;
        transfernonKycCEXFee = _transfernonKycCEXFee;
        transferLiquidityFee = _transferLiquidityFee;
        emit SetTransferFee(transferMarketingFee, transfernonKycCEXFee, transferLiquidityFee);
    }

    function setCooldownBlocks(uint256 blocks) public onlyOwner {
        require(blocks <= 10, "Invalid blocks count.");
        _cooldownBlocks = blocks;
    }

    function _removeAllFee() internal {
        if (buyMarketingFee == 0 && buynonkycCEXFee == 0 && buyLiquidityFee == 0 && 
        sellMarketingFee == 0 && sellnonKycCEXFee == 0 && sellLiquidityFee == 0 &&
        transferMarketingFee == 0 && transfernonKycCEXFee == 0 && transferLiquidityFee == 0) return;

        _previousBuyMarketingFee = buyMarketingFee;
        _previousBuynonKycCEXFee = buynonkycCEXFee;
        _previousBuyLiquidityFee = buyLiquidityFee;
        _previousSellMktgFee = sellMarketingFee;
        _previousSellDevFee = sellnonKycCEXFee;
        _previousSellLiqFee = sellLiquidityFee;
        _previousTransferMarketingFee = transferMarketingFee;
        _previousTransfernonKycCEXFee = transfernonKycCEXFee;
        _previousTransferLiquidityFee = transferLiquidityFee;
        
        buyMarketingFee = 0;
        buynonkycCEXFee = 0;
        buyLiquidityFee = 0;
        sellMarketingFee = 0;
        sellnonKycCEXFee = 0;
        sellLiquidityFee = 0;
        transferMarketingFee = 0;
        transfernonKycCEXFee = 0;
        transferLiquidityFee = 0;
    }
    
    function _restoreAllFee() internal {
        buyMarketingFee = _previousBuyMarketingFee;
        buynonkycCEXFee = _previousBuynonKycCEXFee;
        buyLiquidityFee = _previousBuyLiquidityFee;
        sellMarketingFee = _previousSellMktgFee;
        sellnonKycCEXFee = _previousSellDevFee;
        sellLiquidityFee = _previousSellLiqFee;
        transferMarketingFee = _previousTransferMarketingFee;
        transfernonKycCEXFee = _previousTransfernonKycCEXFee;
        transferLiquidityFee = _previousTransferLiquidityFee;
    }
        
    function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, TransactionType txType) internal {
        if (!takeFee) _removeAllFee();
        else amount = _takeFees(sender, amount, txType);

        super._transfer(sender, recipient, amount);
        
        if (!takeFee) _restoreAllFee();
    }

    function _takeFees(address sender, uint256 amount, TransactionType txType) internal returns (uint256) {
        if(tradingOpenBlock + _blocksToBlacklist >= block.number) _setBotFees();
        else if (txType == TransactionType.SELL) _setSellFees();
        else if (txType == TransactionType.BUY) _setBuyFees();
        else if (txType == TransactionType.TRANSFER) _setTransferFees();
        else revert("Invalid transaction type.");
        
        uint256 fees;
        if (_totalFees > 0) {
            fees = amount.mul(_totalFees).div(FEE_DIVISOR);
            _tokensForMarketing += fees * _marketingFee / _totalFees;
            _tokensFornonKycCEX += fees * _nonkycCEXFee / _totalFees;
            _tokensForLiquidity += fees * _liquidityFee / _totalFees;
        }

        if (fees > 0) super._transfer(sender, address(this), fees);

        return amount -= fees;
    }

    function _setBotFees() internal {
        _marketingFee = 333;
        _nonkycCEXFee = 333;
        _liquidityFee = 333;
        _totalFees = _marketingFee.add(_nonkycCEXFee).add(_liquidityFee);
    }

    function _setSellFees() internal {
        _marketingFee = sellMarketingFee;
        _nonkycCEXFee = sellnonKycCEXFee;
        _liquidityFee = sellLiquidityFee;
        _totalFees = _marketingFee.add(_nonkycCEXFee).add(_liquidityFee);
    }

    function _setBuyFees() internal {
        _marketingFee = buyMarketingFee;
        _nonkycCEXFee = buynonkycCEXFee;
        _liquidityFee = buyLiquidityFee;
        _totalFees = _marketingFee.add(_nonkycCEXFee).add(_liquidityFee);
    }

    function _setTransferFees() internal {
        _marketingFee = transferMarketingFee;
        _nonkycCEXFee = transfernonKycCEXFee;
        _liquidityFee = transferLiquidityFee;
        _totalFees = _marketingFee.add(_nonkycCEXFee).add(_liquidityFee);
    }

    function manualDistributeFees() public onlyOwner {
        uint256 contractETHBalance = address(this).balance;
        _sendETHToFee(contractETHBalance);
    }

    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success,) = address(msg.sender).call{value: address(this).balance}("");
    }

    function withdrawStuckERCTokens(address token) public onlyOwner {
        require(token != address(this), "Cannot withdraw own token");
        require(IERC20(token).balanceOf(address(this)) > 0, "No tokens");
        uint amount = IERC20(token).balanceOf(address(this));
        IERC20(token).transfer(msg.sender, amount);
    }

    function removeAllLimits() public onlyOwner {
        maxBuyAmount = totalSupply() * 1;
        maxSellAmount = totalSupply() * 1;
        maxWalletAmount = totalSupply() * 1;
        cooldownEnabled = false;
    }

    receive() external payable {}
    fallback() external payable {}

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_marketingWalletAddress","type":"address"},{"internalType":"address payable","name":"_nonkycCEXWalletAddress","type":"address"},{"internalType":"address payable","name":"_liquidityWalletAddress","type":"address"}],"stateMutability":"payable","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":"uint256","name":"tradingOpenBlock","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_blocksToBlacklist","type":"uint256"}],"name":"OpenTrading","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"buyMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buynonkycCEXFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyLiquidityFee","type":"uint256"}],"name":"SetBuyFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxBuyAmount","type":"uint256"}],"name":"SetMaxBuyAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxSellAmount","type":"uint256"}],"name":"SetMaxSellAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newMaxWalletAmount","type":"uint256"}],"name":"SetMaxWalletAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellnonKycCEXFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellLiquidityFee","type":"uint256"}],"name":"SetSellFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newSwapTokensAtAmount","type":"uint256"}],"name":"SetSwapTokensAtAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"transferMarketingFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transfernonKycCEXFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"transferLiquidityFee","type":"uint256"}],"name":"SetTransferFee","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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"FEE_DIVISOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buynonkycCEXFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"changeCooldownEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"changeFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"changeSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"changeTransferFeesEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cooldownEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"feesEnabled","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":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualDistributeFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWalletAddress","outputs":[{"internalType":"address payable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonkycCEXWalletAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeAllLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellnonKycCEXFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isBL","type":"bool"}],"name":"setBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buynonkycCEXFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"blocks","type":"uint256"}],"name":"setCooldownBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setExcludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"setExcludedFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidityWalletAddress","type":"address"}],"name":"setLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWalletAddress","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBuyAmount","type":"uint256"}],"name":"setMaxBuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSellAmount","type":"uint256"}],"name":"setMaxSellAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"setMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellnonKycCEXFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_transfernonKycCEXFee","type":"uint256"},{"internalType":"uint256","name":"_transferLiquidityFee","type":"uint256"}],"name":"setTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_nonkycCEXWalletAddress","type":"address"}],"name":"setnonKycCEXWallet","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpenBlock","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":[],"name":"transferFeesEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"transferLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfernonKycCEXFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawStuckERCTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040819052600b805465ffffffff00001916650101000000001790556a52b7d2dcc80cd2e4000000600c819055600d819055600e556000600f81905560108190556001601155601460168190556017819055600a60188190556019819055601e601a819055601b819055601c839055601d839055818155601f82905560208190556021819055602283905560239290925560248190556025556026819055602755602b5562003f0c38819003908190833981016040819052620000c491620005ba565b6040518060400160405280600c81526020016b29b430b237bb902a37b5b2b760a11b81525060405180604001604052806006815260200165534841444f5760d01b8152508160039081620001199190620006a8565b506004620001288282620006a8565b505050620001456200013f6200045a60201b60201c565b6200045e565b6001600160a01b038316620001ad5760405162461bcd60e51b815260206004820152602360248201527f5f6d61726b6574696e6757616c6c6574416464726573732063616e6e6f74206260448201526206520360ec1b60648201526084015b60405180910390fd5b6001600160a01b038216620002115760405162461bcd60e51b815260206004820152602360248201527f5f6e6f6e6b796343455857616c6c6574416464726573732063616e6e6f74206260448201526206520360ec1b6064820152608401620001a4565b6001600160a01b038116620002755760405162461bcd60e51b815260206004820152602360248201527f5f6c697175696469747957616c6c6574416464726573732063616e6e6f74206260448201526206520360ec1b6064820152608401620001a4565b602c80546001600160a01b03199081166001600160a01b03868116919091178355602d80548316868316178155602e80549093168583161783556005805483166000908152600860209081526040808320805460ff1990811660019081179092553080865283862080548316841790557f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd0933429980548316841790558a548916865283862080548316841790558754891686528386208054831684179055895489168652838620805483168417905595548816855260098452828520805482168317905585855282852080548216831790557f960b1051749987b45b5679007fff577a1c2f763ec21c15a6c5eb193075003785805482168317905598548716845281842080548a1682179055945486168352808320805489168617905595549094168152939093208054909416179092556200040e916200040890606490620003f4906a52b7d2dcc80cd2e400000090603c90620004b0811b62001efd17901c565b620004c760201b62001f101790919060201c565b620004d5565b62000451620004256005546001600160a01b031690565b620004086064620003f460286a52b7d2dcc80cd2e4000000620004b060201b62001efd1790919060201c565b505050620007dd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000620004be82846200078a565b90505b92915050565b6000620004be8284620007a4565b6001600160a01b0382166200052d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620001a4565b8060026000828254620005419190620007c7565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b0381168114620005b557600080fd5b919050565b600080600060608486031215620005d057600080fd5b620005db846200059d565b9250620005eb602085016200059d565b9150620005fb604085016200059d565b90509250925092565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200062f57607f821691505b6020821081036200065057634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200059857600081815260208120601f850160051c810160208610156200067f5750805b601f850160051c820191505b81811015620006a0578281556001016200068b565b505050505050565b81516001600160401b03811115620006c457620006c462000604565b620006dc81620006d584546200061a565b8462000656565b602080601f831160018114620007145760008415620006fb5750858301515b600019600386901b1c1916600185901b178555620006a0565b600085815260208120601f198616915b82811015620007455788860151825594840194600190910190840162000724565b5085821015620007645787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620004c157620004c162000774565b600082620007c257634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620004c157620004c162000774565b61371f80620007ed6000396000f3fe60806040526004361061036b5760003560e01c80638e5a54b9116101c4578063db05e5cb116100f6578063f2fde38b1161009a578063f63743421161006c578063f637434214610a03578063f7ea98da14610a19578063fe575a8714610a39578063ffb54a9914610a7257005b8063f2fde38b1461098e578063f34eb0b8146109ae578063f5648a4f146109ce578063f5a6682f146109e357005b8063e81ea6a9116100d3578063e81ea6a914610915578063e99c9d0914610935578063effb3c5314610955578063f11a24d31461097857005b8063db05e5cb146108c0578063dd62ed3e146108d5578063e7c89232146108f557005b8063a64e4f8a11610168578063afa4f3b21161013a578063afa4f3b21461084a578063cf1c4d811461086a578063d158272d14610880578063d1633649146108a057005b8063a64e4f8a146107d1578063a9059cbb146107f3578063a985ceef14610813578063aa4bde281461083457005b806395d89b41116101a157806395d89b41146107705780639bb19a32146107855780639e93ad8e1461079b578063a457c2d7146107b157005b80638e5a54b91461071a5780638eb83f251461073a578063921369131461075a57005b8063313ce5671161029d57806370a082311161024157806384652c461161021357806384652c461461069c57806385c5b319146106bc57806388e765ff146106d25780638da5cb5b146106e857005b806370a082311461061b578063715018a61461065157806373e77a0e146106665780637bce5a041461068657005b80635d098b381161027a5780635d098b38146105a557806366d602ae146105c557806368b69b9b146105db5780636ddd1713146105fb57005b8063313ce56714610549578063395093511461056557806339b849361461058557005b806318160ddd1161030f57806325519cf2116102e157806325519cf2146104d45780632773b3ee146104f457806327a14fc214610509578063296f0a0c1461052957005b806318160ddd146104695780631d865c301461047e5780632068eac71461049e57806323b872dd146104b457005b80630e85d1e3116103485780630e85d1e3146103f3578063105222f91461041357806314626dc61461043357806317c60a531461045357005b806306fdde0314610374578063095ea7b31461039f5780630e23500e146103cf57005b3661037257005b005b34801561038057600080fd5b50610389610a8c565b60405161039691906131a2565b60405180910390f35b3480156103ab57600080fd5b506103bf6103ba366004613215565b610b1e565b6040519015158152602001610396565b3480156103db57600080fd5b506103e5600f5481565b604051908152602001610396565b3480156103ff57600080fd5b5061037261040e366004613270565b610b38565b34801561041f57600080fd5b5061037261042e366004613270565b610c6a565b34801561043f57600080fd5b5061037261044e366004613347565b610cd9565b34801561045f57600080fd5b506103e560245481565b34801561047557600080fd5b506002546103e5565b34801561048a57600080fd5b50610372610499366004613360565b610d34565b3480156104aa57600080fd5b506103e560185481565b3480156104c057600080fd5b506103bf6104cf36600461338c565b610d90565b3480156104e057600080fd5b506103726104ef366004613360565b610db4565b34801561050057600080fd5b50610372610e09565b34801561051557600080fd5b50610372610524366004613347565b610e1e565b34801561053557600080fd5b506103726105443660046133cd565b610ef7565b34801561055557600080fd5b5060405160128152602001610396565b34801561057157600080fd5b506103bf610580366004613215565b610fde565b34801561059157600080fd5b506103726105a03660046133ea565b611000565b3480156105b157600080fd5b506103726105c03660046133cd565b61102a565b3480156105d157600080fd5b506103e5600d5481565b3480156105e757600080fd5b506103726105f63660046133ea565b611111565b34801561060757600080fd5b50600b546103bf9062010000900460ff1681565b34801561062757600080fd5b506103e56106363660046133cd565b6001600160a01b031660009081526020819052604090205490565b34801561065d57600080fd5b50610372611137565b34801561067257600080fd5b506103726106813660046133cd565b61114b565b34801561069257600080fd5b506103e560165481565b3480156106a857600080fd5b506103726106b73660046133ea565b611232565b3480156106c857600080fd5b506103e560225481565b3480156106de57600080fd5b506103e5600c5481565b3480156106f457600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610396565b34801561072657600080fd5b50602d54610702906001600160a01b031681565b34801561074657600080fd5b50602e54610702906001600160a01b031681565b34801561076657600080fd5b506103e5601c5481565b34801561077c57600080fd5b5061038961125a565b34801561079157600080fd5b506103e560265481565b3480156107a757600080fd5b506103e56103e881565b3480156107bd57600080fd5b506103bf6107cc366004613215565b611269565b3480156107dd57600080fd5b50600b546103bf90640100000000900460ff1681565b3480156107ff57600080fd5b506103bf61080e366004613215565b6112e4565b34801561081f57600080fd5b50600b546103bf906301000000900460ff1681565b34801561084057600080fd5b506103e5600e5481565b34801561085657600080fd5b50610372610865366004613347565b6112f2565b34801561087657600080fd5b506103e5601e5481565b34801561088c57600080fd5b50602c54610702906001600160a01b031681565b3480156108ac57600080fd5b506103726108bb366004613347565b611432565b3480156108cc57600080fd5b5061037261196d565b3480156108e157600080fd5b506103e56108f0366004613407565b6119b7565b34801561090157600080fd5b50610372610910366004613360565b6119e2565b34801561092157600080fd5b506103726109303660046133ea565b611a37565b34801561094157600080fd5b50610372610950366004613347565b611a5b565b34801561096157600080fd5b50600b546103bf9065010000000000900460ff1681565b34801561098457600080fd5b506103e5601a5481565b34801561099a57600080fd5b506103726109a93660046133cd565b611b21565b3480156109ba57600080fd5b506103726109c9366004613347565b611b97565b3480156109da57600080fd5b50610372611c56565b3480156109ef57600080fd5b506103726109fe366004613270565b611cab565b348015610a0f57600080fd5b506103e560205481565b348015610a2557600080fd5b50610372610a343660046133cd565b611d1a565b348015610a4557600080fd5b506103bf610a543660046133cd565b6001600160a01b03166000908152600a602052604090205460ff1690565b348015610a7e57600080fd5b50600b546103bf9060ff1681565b606060038054610a9b90613440565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790613440565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b5050505050905090565b600033610b2c818585611f1c565b60019150505b92915050565b610b40612040565b60005b8251811015610c6557602f5483516001600160a01b0390911690849083908110610b6f57610b6f61347a565b60200260200101516001600160a01b031614158015610bc0575060065483516001600160a01b0390911690849083908110610bac57610bac61347a565b60200260200101516001600160a01b031614155b8015610bf75750306001600160a01b0316838281518110610be357610be361347a565b60200260200101516001600160a01b031614155b15610c535781600a6000858481518110610c1357610c1361347a565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80610c5d816134a6565b915050610b43565b505050565b610c72612040565b60005b8251811015610c65578160086000858481518110610c9557610c9561347a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610cd1816134a6565b915050610c75565b610ce1612040565b600a811115610d2f5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b210313637b1b5b99031b7bab73a1760591b60448201526064015b60405180910390fd5b601155565b610d3c612040565b601c839055601e82905560208181556040805185815291820184905281018290527f5ff33e060dbf96ff8c11eeadaaa320b34884dc8af8156d77ab6134d2bece22c3906060015b60405180910390a1505050565b600033610d9e85828561209a565b610da985858561210e565b506001949350505050565b610dbc612040565b60168390556018829055601a81905560408051848152602081018490529081018290527f4b44023290188702187818a2359a9d40279e516e5e9bbade40c321936a77362090606001610d83565b610e11612040565b47610e1b81612826565b50565b610e26612040565b610e466103e8610e406001610e3a60025490565b90611efd565b90611f10565b811015610ebb5760405162461bcd60e51b815260206004820152603960248201527f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560448201527f72207468616e20302e312520746f74616c20737570706c792e000000000000006064820152608401610d26565b600e8190556040518181527f0176e9211818debdc4483c2bb0972798b7eb106239c8e465d4f1cee4ce5ae6e7906020015b60405180910390a150565b610eff612040565b6001600160a01b038116610f605760405162461bcd60e51b815260206004820152602260248201527f6c697175696469747957616c6c6574416464726573732063616e6e6f74206265604482015261020360f41b6064820152608401610d26565b602e80546001600160a01b039081166000908152600860208181526040808420805460ff19908116909155865486168552600980845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b600033610b2c818585610ff183836119b7565b610ffb91906134bf565b611f1c565b611008612040565b600b8054911515650100000000000265ff000000000019909216919091179055565b611032612040565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602260248201527f6d61726b6574696e6757616c6c6574416464726573732063616e6e6f74206265604482015261020360f41b6064820152608401610d26565b602c80546001600160a01b039081166000908152600860208181526040808420805460ff19908116909155865486168552600980845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b611119612040565b600b805491151563010000000263ff00000019909216919091179055565b61113f612040565b61114960006128af565b565b611153612040565b6001600160a01b0381166111b45760405162461bcd60e51b815260206004820152602260248201527f6e6f6e6b796343455857616c6c6574416464726573732063616e6e6f74206265604482015261020360f41b6064820152608401610d26565b602d80546001600160a01b039081166000908152600860208181526040808420805460ff19908116909155865486168552600980845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b61123a612040565b600b80549115156401000000000264ff0000000019909216919091179055565b606060048054610a9b90613440565b6000338161127782866119b7565b9050838110156112d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d26565b610da98286868403611f1c565b600033610b2c81858561210e565b6112fa612040565b61130f620f4240610e406001610e3a60025490565b81101561137d5760405162461bcd60e51b815260206004820152603660248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152751018171818181892903a37ba30b61039bab838363c9760511b6064820152608401610d26565b6113916103e8610e406005610e3a60025490565b8111156113fd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610d26565b602b8190556040518181527f09e89af7cbd8410d0ad2a74ab3cc8d9ddeef8ab1177f0f8a1984d355bb9d78f190602001610eec565b61143a612040565b600b5460ff161561148d5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610d26565b600a8111156114d65760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b210313637b1b5b99031b7bab73a1760591b6044820152606401610d26565b46600114806114e55750466005145b1561151557600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556115f5565b4660380361154857600680546001600160a01b0319167310ed43c718714eb63d5aa57b78b54704e256024e1790556115f5565b4660610361157b57600680546001600160a01b03191673d99d1c33f9fc3444f8101754abc46c52416550d11790556115f5565b466089148061158c57504662013881145b156115bc57600680546001600160a01b03191673a5e0829caced8ffdd4de3c43696c57f7d7a678ff1790556115f5565b60405162461bcd60e51b815260206004820152600e60248201526d21b430b4b7103737ba1039b2ba1760911b6044820152606401610d26565b6006546116109030906001600160a01b0316610ffb60025490565b600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611663573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168791906134d2565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170d91906134d2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561175a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177e91906134d2565b602f80546001600160a01b039283166001600160a01b03199091161790556006541663f305d71947306117c6816001600160a01b031660009081526020819052604090205490565b6000806117db6005546001600160a01b031690565b426040518863ffffffff1660e01b81526004016117fd969594939291906134ef565b60606040518083038185885af115801561181b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611840919061352a565b5050602f5460065460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015611899573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bd9190613558565b506118d26103e8610e406002610e3a60025490565b600c556118e96103e8610e406002610e3a60025490565b600d556118ff6064610e406001610e3a60025490565b600e55611916612710610e406002610e3a60025490565b602b55600b805463ffff00ff1916630101000117905543600f819055601082905560408051918252602082018390527f8d3438059bb853597d71f33faf1d080795f797da60ef1c460fe5849903c24adb9101610eec565b611975612040565b600254611983906001613575565b600c55600254611994906001613575565b600d556002546119a5906001613575565b600e55600b805463ff00000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6119ea612040565b60228390556024829055602681905560408051848152602081018490529081018290527f0a1ca1cf020cce18eb2c1acd1eb2fbb0911b33f048c9592de691823a416a94bb90606001610d83565b611a3f612040565b600b8054911515620100000262ff000019909216919091179055565b611a63612040565b611a776103e8610e406001610e3a60025490565b811015611aec5760405162461bcd60e51b815260206004820152603760248201527f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060448201527f7468616e20302e312520746f74616c20737570706c792e0000000000000000006064820152608401610d26565b600d8190556040518181527fa37090cc2feed4f3799a43ad59e5dab1cb6e70a7c1be92b72dbf9610550d5ac890602001610eec565b611b29612040565b6001600160a01b038116611b8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d26565b610e1b816128af565b611b9f612040565b611bb36103e8610e406001610e3a60025490565b811015611c215760405162461bcd60e51b815260206004820152603660248201527f4d61782062757920616d6f756e742063616e6e6f74206265206c6f77657220746044820152753430b71018171892903a37ba30b61039bab838363c9760511b6064820152608401610d26565b600c8190556040518181527f3a0b1f960db2351f13a6a83576ad81b35de3396cf92b9150216f2a6eea641d9a90602001610eec565b611c5e612040565b604051600090339047908381818185875af1925050503d8060008114611ca0576040519150601f19603f3d011682016040523d82523d6000602084013e611ca5565b606091505b50505050565b611cb3612040565b60005b8251811015610c65578160096000858481518110611cd657611cd661347a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611d12816134a6565b915050611cb6565b611d22612040565b306001600160a01b03821603611d7a5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207769746864726177206f776e20746f6b656e000000000000006044820152606401610d26565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611dc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de5919061358c565b11611e1e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610d26565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e89919061358c565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611ed9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c659190613558565b6000611f098284613575565b9392505050565b6000611f0982846135a5565b6001600160a01b038316611f7e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d26565b6001600160a01b038216611fdf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d26565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146111495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d26565b60006120a684846119b7565b90506000198114611ca557818110156121015760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d26565b611ca58484848403611f1c565b6001600160a01b0383166121345760405162461bcd60e51b8152600401610d26906135c7565b6001600160a01b03821661215a5760405162461bcd60e51b8152600401610d269061360c565b600081116121bc5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610d26565b602f546001906000906001600160a01b038681169116146121fa57602f546001600160a01b038581169116146121f35760026121fd565b60016121fd565b60005b90506122116005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561224057506005546001600160a01b03858116911614155b801561225457506001600160a01b03841615155b801561226b57506001600160a01b03841661dead14155b801561227f5750600b54610100900460ff16155b156126aa576001600160a01b0385166000908152600a602052604090205460ff161580156122c657506001600160a01b0384166000908152600a602052604090205460ff16155b6123015760405162461bcd60e51b815260206004820152600c60248201526b213630b1b5b634b9ba32b21760a11b6044820152606401610d26565b600b5460ff16612396576001600160a01b03851660009081526008602052604090205460ff168061234a57506001600160a01b03841660009081526008602052604090205460ff165b6123965760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610d26565b600b546301000000900460ff16156124a8576006546001600160a01b038581169116148015906123d45750602f546001600160a01b03858116911614155b156124a8576011546123e6904361364f565b32600090815260076020526040902054108015612426575060115461240b904361364f565b6001600160a01b038516600090815260076020526040902054105b6124835760405162461bcd60e51b815260206004820152602860248201527f5472616e736665722064656c617920656e61626c65642e20547279206167616960448201526737103630ba32b91760c11b6064820152608401610d26565b3260009081526007602052604080822043908190556001600160a01b03871683529120555b60008160028111156124bc576124bc613662565b1480156124d757506006546001600160a01b03858116911614155b80156124fc57506001600160a01b03841660009081526009602052604090205460ff16155b156125ec57600c548311156125655760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610d26565b600e5483612588866001600160a01b031660009081526020819052604090205490565b61259291906134bf565b11156125ec5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610d26565b600181600281111561260057612600613662565b14801561261b57506006546001600160a01b03868116911614155b801561264057506001600160a01b03851660009081526009602052604090205460ff16155b156126aa57600d548311156126aa5760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610d26565b6001600160a01b03851660009081526008602052604090205460ff16806126e957506001600160a01b03841660009081526008602052604090205460ff165b806126ff5750600b54640100000000900460ff16155b806127325750600b5465010000000000900460ff161580156127325750600281600281111561273057612730613662565b145b1561273c57600091505b3060009081526020819052604081205490506000602b54821180156127725750600183600281111561277057612770613662565b145b90508080156127895750600b5462010000900460ff165b801561279d5750600b54610100900460ff16155b80156127c257506001600160a01b03871660009081526008602052604090205460ff16155b80156127e757506001600160a01b03861660009081526008602052604090205460ff16155b1561281057600b805461ff00191661010017905561280482612901565b600b805461ff00191690555b61281d8787878787612ae2565b50505050505050565b602c546001600160a01b03166108fc612840836002611f10565b6040518115909202916000818181858888f19350505050158015612868573d6000803e3d6000fd5b50602d546001600160a01b03166108fc612883836002611f10565b6040518115909202916000818181858888f193505050501580156128ab573d6000803e3d6000fd5b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612926602a54612920602954602854612b5490919063ffffffff16565b90612b54565b90506000821580612935575081155b1561293f57505050565b602b5461294d906005611efd565b83111561296557602b54612962906005611efd565b92505b60006129856002610e4085610e40602a5489611efd90919063ffffffff16565b905060006129938583612b60565b90504761299f82612b6c565b60006129ab4783612b60565b905060006129c887610e4060285485611efd90919063ffffffff16565b905060006129e588610e4060295486611efd90919063ffffffff16565b905060006129fd826129f78686612b60565b90612b60565b600060288190556029819055602a5590508615801590612a1d5750600081115b15612a2c57612a2c8782612cc6565b602d546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612a79576040519150601f19603f3d011682016040523d82523d6000602084013e612a7e565b606091505b5050602c546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114612ace576040519150601f19603f3d011682016040523d82523d6000602084013e612ad3565b606091505b50505050505050505050505050565b81612af457612aef612d61565b612b02565b612aff858483612e2d565b92505b612b0d858585612fdb565b81612b4d57612b4d601754601655601954601855601b54601a55601d54601c55601f54601e55602154602055602354602255602554602455602754602655565b5050505050565b6000611f0982846134bf565b6000611f09828461364f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ba157612ba161347a565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612bfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1e91906134d2565b81600181518110612c3157612c3161347a565b6001600160a01b039283166020918202929092010152600654612c579130911684611f1c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612c90908590600090869030904290600401613678565b600060405180830381600087803b158015612caa57600080fd5b505af1158015612cbe573d6000803e3d6000fd5b505050505050565b600654612cde9030906001600160a01b031684611f1c565b600654602e5460405163f305d71960e01b81526001600160a01b039283169263f305d719928592612d1e92309289926000928392169042906004016134ef565b60606040518083038185885af1158015612d3c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b4d919061352a565b601654158015612d715750601854155b8015612d7d5750601a54155b8015612d895750601c54155b8015612d955750601e54155b8015612da15750602054155b8015612dad5750602254155b8015612db95750602454155b8015612dc55750602654155b15612dcc57565b6016805460175560188054601955601a8054601b55601c8054601d55601e8054601f55602080546021556022805460235560248054602555602680546027556000988990559688905594879055928690559085905584905583905582905555565b600043601054600f54612e4091906134bf565b10612e5257612e4d613105565b612efd565b6001826002811115612e6657612e66613662565b03612e7357612e4d61312a565b6000826002811115612e8757612e87613662565b03612e9457612e4d613152565b6002826002811115612ea857612ea8613662565b03612eb557612e4d61317a565b60405162461bcd60e51b815260206004820152601960248201527f496e76616c6964207472616e73616374696f6e20747970652e000000000000006044820152606401610d26565b60125460009015612fb757612f236103e8610e4060125487611efd90919063ffffffff16565b905060125460135482612f369190613575565b612f4091906135a5565b60286000828254612f5191906134bf565b9091555050601254601454612f669083613575565b612f7091906135a5565b60296000828254612f8191906134bf565b9091555050601254601554612f969083613575565b612fa091906135a5565b602a6000828254612fb191906134bf565b90915550505b8015612fc857612fc8853083612fdb565b612fd2818561364f565b95945050505050565b6001600160a01b0383166130015760405162461bcd60e51b8152600401610d26906135c7565b6001600160a01b0382166130275760405162461bcd60e51b8152600401610d269061360c565b6001600160a01b0383166000908152602081905260409020548181101561309f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d26565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611ca5565b61014d601381905560148190556015819055613125906129208180612b54565b601255565b601c546013819055601e54601481905560205460158190556131259290916129209190612b54565b60165460138190556018546014819055601a5460158190556131259290916129209190612b54565b6022546013819055602454601481905560265460158190556131259290916129209190612b54565b600060208083528351808285015260005b818110156131cf578581018301518582016040015282016131b3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e1b57600080fd5b8035613210816131f0565b919050565b6000806040838503121561322857600080fd5b8235613233816131f0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610e1b57600080fd5b803561321081613257565b6000806040838503121561328357600080fd5b823567ffffffffffffffff8082111561329b57600080fd5b818501915085601f8301126132af57600080fd5b81356020828211156132c3576132c3613241565b8160051b604051601f19603f830116810181811086821117156132e8576132e8613241565b60405292835281830193508481018201928984111561330657600080fd5b948201945b8386101561332b5761331c86613205565b8552948201949382019361330b565b965061333a9050878201613265565b9450505050509250929050565b60006020828403121561335957600080fd5b5035919050565b60008060006060848603121561337557600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156133a157600080fd5b83356133ac816131f0565b925060208401356133bc816131f0565b929592945050506040919091013590565b6000602082840312156133df57600080fd5b8135611f09816131f0565b6000602082840312156133fc57600080fd5b8135611f0981613257565b6000806040838503121561341a57600080fd5b8235613425816131f0565b91506020830135613435816131f0565b809150509250929050565b600181811c9082168061345457607f821691505b60208210810361347457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016134b8576134b8613490565b5060010190565b80820180821115610b3257610b32613490565b6000602082840312156134e457600080fd5b8151611f09816131f0565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561353f57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561356a57600080fd5b8151611f0981613257565b8082028115828204841417610b3257610b32613490565b60006020828403121561359e57600080fd5b5051919050565b6000826135c257634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b3257610b32613490565b634e487b7160e01b600052602160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136c85784516001600160a01b0316835293830193918301916001016136a3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220caf1a200f0113654e4769b11c1de017fdf495afe93e6c0e0a544e919041ea7b264736f6c634300081100330000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff73470000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff73470000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff7347

Deployed Bytecode

0x60806040526004361061036b5760003560e01c80638e5a54b9116101c4578063db05e5cb116100f6578063f2fde38b1161009a578063f63743421161006c578063f637434214610a03578063f7ea98da14610a19578063fe575a8714610a39578063ffb54a9914610a7257005b8063f2fde38b1461098e578063f34eb0b8146109ae578063f5648a4f146109ce578063f5a6682f146109e357005b8063e81ea6a9116100d3578063e81ea6a914610915578063e99c9d0914610935578063effb3c5314610955578063f11a24d31461097857005b8063db05e5cb146108c0578063dd62ed3e146108d5578063e7c89232146108f557005b8063a64e4f8a11610168578063afa4f3b21161013a578063afa4f3b21461084a578063cf1c4d811461086a578063d158272d14610880578063d1633649146108a057005b8063a64e4f8a146107d1578063a9059cbb146107f3578063a985ceef14610813578063aa4bde281461083457005b806395d89b41116101a157806395d89b41146107705780639bb19a32146107855780639e93ad8e1461079b578063a457c2d7146107b157005b80638e5a54b91461071a5780638eb83f251461073a578063921369131461075a57005b8063313ce5671161029d57806370a082311161024157806384652c461161021357806384652c461461069c57806385c5b319146106bc57806388e765ff146106d25780638da5cb5b146106e857005b806370a082311461061b578063715018a61461065157806373e77a0e146106665780637bce5a041461068657005b80635d098b381161027a5780635d098b38146105a557806366d602ae146105c557806368b69b9b146105db5780636ddd1713146105fb57005b8063313ce56714610549578063395093511461056557806339b849361461058557005b806318160ddd1161030f57806325519cf2116102e157806325519cf2146104d45780632773b3ee146104f457806327a14fc214610509578063296f0a0c1461052957005b806318160ddd146104695780631d865c301461047e5780632068eac71461049e57806323b872dd146104b457005b80630e85d1e3116103485780630e85d1e3146103f3578063105222f91461041357806314626dc61461043357806317c60a531461045357005b806306fdde0314610374578063095ea7b31461039f5780630e23500e146103cf57005b3661037257005b005b34801561038057600080fd5b50610389610a8c565b60405161039691906131a2565b60405180910390f35b3480156103ab57600080fd5b506103bf6103ba366004613215565b610b1e565b6040519015158152602001610396565b3480156103db57600080fd5b506103e5600f5481565b604051908152602001610396565b3480156103ff57600080fd5b5061037261040e366004613270565b610b38565b34801561041f57600080fd5b5061037261042e366004613270565b610c6a565b34801561043f57600080fd5b5061037261044e366004613347565b610cd9565b34801561045f57600080fd5b506103e560245481565b34801561047557600080fd5b506002546103e5565b34801561048a57600080fd5b50610372610499366004613360565b610d34565b3480156104aa57600080fd5b506103e560185481565b3480156104c057600080fd5b506103bf6104cf36600461338c565b610d90565b3480156104e057600080fd5b506103726104ef366004613360565b610db4565b34801561050057600080fd5b50610372610e09565b34801561051557600080fd5b50610372610524366004613347565b610e1e565b34801561053557600080fd5b506103726105443660046133cd565b610ef7565b34801561055557600080fd5b5060405160128152602001610396565b34801561057157600080fd5b506103bf610580366004613215565b610fde565b34801561059157600080fd5b506103726105a03660046133ea565b611000565b3480156105b157600080fd5b506103726105c03660046133cd565b61102a565b3480156105d157600080fd5b506103e5600d5481565b3480156105e757600080fd5b506103726105f63660046133ea565b611111565b34801561060757600080fd5b50600b546103bf9062010000900460ff1681565b34801561062757600080fd5b506103e56106363660046133cd565b6001600160a01b031660009081526020819052604090205490565b34801561065d57600080fd5b50610372611137565b34801561067257600080fd5b506103726106813660046133cd565b61114b565b34801561069257600080fd5b506103e560165481565b3480156106a857600080fd5b506103726106b73660046133ea565b611232565b3480156106c857600080fd5b506103e560225481565b3480156106de57600080fd5b506103e5600c5481565b3480156106f457600080fd5b506005546001600160a01b03165b6040516001600160a01b039091168152602001610396565b34801561072657600080fd5b50602d54610702906001600160a01b031681565b34801561074657600080fd5b50602e54610702906001600160a01b031681565b34801561076657600080fd5b506103e5601c5481565b34801561077c57600080fd5b5061038961125a565b34801561079157600080fd5b506103e560265481565b3480156107a757600080fd5b506103e56103e881565b3480156107bd57600080fd5b506103bf6107cc366004613215565b611269565b3480156107dd57600080fd5b50600b546103bf90640100000000900460ff1681565b3480156107ff57600080fd5b506103bf61080e366004613215565b6112e4565b34801561081f57600080fd5b50600b546103bf906301000000900460ff1681565b34801561084057600080fd5b506103e5600e5481565b34801561085657600080fd5b50610372610865366004613347565b6112f2565b34801561087657600080fd5b506103e5601e5481565b34801561088c57600080fd5b50602c54610702906001600160a01b031681565b3480156108ac57600080fd5b506103726108bb366004613347565b611432565b3480156108cc57600080fd5b5061037261196d565b3480156108e157600080fd5b506103e56108f0366004613407565b6119b7565b34801561090157600080fd5b50610372610910366004613360565b6119e2565b34801561092157600080fd5b506103726109303660046133ea565b611a37565b34801561094157600080fd5b50610372610950366004613347565b611a5b565b34801561096157600080fd5b50600b546103bf9065010000000000900460ff1681565b34801561098457600080fd5b506103e5601a5481565b34801561099a57600080fd5b506103726109a93660046133cd565b611b21565b3480156109ba57600080fd5b506103726109c9366004613347565b611b97565b3480156109da57600080fd5b50610372611c56565b3480156109ef57600080fd5b506103726109fe366004613270565b611cab565b348015610a0f57600080fd5b506103e560205481565b348015610a2557600080fd5b50610372610a343660046133cd565b611d1a565b348015610a4557600080fd5b506103bf610a543660046133cd565b6001600160a01b03166000908152600a602052604090205460ff1690565b348015610a7e57600080fd5b50600b546103bf9060ff1681565b606060038054610a9b90613440565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac790613440565b8015610b145780601f10610ae957610100808354040283529160200191610b14565b820191906000526020600020905b815481529060010190602001808311610af757829003601f168201915b5050505050905090565b600033610b2c818585611f1c565b60019150505b92915050565b610b40612040565b60005b8251811015610c6557602f5483516001600160a01b0390911690849083908110610b6f57610b6f61347a565b60200260200101516001600160a01b031614158015610bc0575060065483516001600160a01b0390911690849083908110610bac57610bac61347a565b60200260200101516001600160a01b031614155b8015610bf75750306001600160a01b0316838281518110610be357610be361347a565b60200260200101516001600160a01b031614155b15610c535781600a6000858481518110610c1357610c1361347a565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff0219169083151502179055505b80610c5d816134a6565b915050610b43565b505050565b610c72612040565b60005b8251811015610c65578160086000858481518110610c9557610c9561347a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610cd1816134a6565b915050610c75565b610ce1612040565b600a811115610d2f5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b210313637b1b5b99031b7bab73a1760591b60448201526064015b60405180910390fd5b601155565b610d3c612040565b601c839055601e82905560208181556040805185815291820184905281018290527f5ff33e060dbf96ff8c11eeadaaa320b34884dc8af8156d77ab6134d2bece22c3906060015b60405180910390a1505050565b600033610d9e85828561209a565b610da985858561210e565b506001949350505050565b610dbc612040565b60168390556018829055601a81905560408051848152602081018490529081018290527f4b44023290188702187818a2359a9d40279e516e5e9bbade40c321936a77362090606001610d83565b610e11612040565b47610e1b81612826565b50565b610e26612040565b610e466103e8610e406001610e3a60025490565b90611efd565b90611f10565b811015610ebb5760405162461bcd60e51b815260206004820152603960248201527f4d61782077616c6c657420616d6f756e742063616e6e6f74206265206c6f776560448201527f72207468616e20302e312520746f74616c20737570706c792e000000000000006064820152608401610d26565b600e8190556040518181527f0176e9211818debdc4483c2bb0972798b7eb106239c8e465d4f1cee4ce5ae6e7906020015b60405180910390a150565b610eff612040565b6001600160a01b038116610f605760405162461bcd60e51b815260206004820152602260248201527f6c697175696469747957616c6c6574416464726573732063616e6e6f74206265604482015261020360f41b6064820152608401610d26565b602e80546001600160a01b039081166000908152600860208181526040808420805460ff19908116909155865486168552600980845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b600033610b2c818585610ff183836119b7565b610ffb91906134bf565b611f1c565b611008612040565b600b8054911515650100000000000265ff000000000019909216919091179055565b611032612040565b6001600160a01b0381166110935760405162461bcd60e51b815260206004820152602260248201527f6d61726b6574696e6757616c6c6574416464726573732063616e6e6f74206265604482015261020360f41b6064820152608401610d26565b602c80546001600160a01b039081166000908152600860208181526040808420805460ff19908116909155865486168552600980845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b611119612040565b600b805491151563010000000263ff00000019909216919091179055565b61113f612040565b61114960006128af565b565b611153612040565b6001600160a01b0381166111b45760405162461bcd60e51b815260206004820152602260248201527f6e6f6e6b796343455857616c6c6574416464726573732063616e6e6f74206265604482015261020360f41b6064820152608401610d26565b602d80546001600160a01b039081166000908152600860208181526040808420805460ff19908116909155865486168552600980845282862080548316905587546001600160a01b03191698871698891788559785529282528084208054841660019081179091559554909416835294909452208054909216179055565b61123a612040565b600b80549115156401000000000264ff0000000019909216919091179055565b606060048054610a9b90613440565b6000338161127782866119b7565b9050838110156112d75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610d26565b610da98286868403611f1c565b600033610b2c81858561210e565b6112fa612040565b61130f620f4240610e406001610e3a60025490565b81101561137d5760405162461bcd60e51b815260206004820152603660248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e6044820152751018171818181892903a37ba30b61039bab838363c9760511b6064820152608401610d26565b6113916103e8610e406005610e3a60025490565b8111156113fd5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610d26565b602b8190556040518181527f09e89af7cbd8410d0ad2a74ab3cc8d9ddeef8ab1177f0f8a1984d355bb9d78f190602001610eec565b61143a612040565b600b5460ff161561148d5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610d26565b600a8111156114d65760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b210313637b1b5b99031b7bab73a1760591b6044820152606401610d26565b46600114806114e55750466005145b1561151557600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556115f5565b4660380361154857600680546001600160a01b0319167310ed43c718714eb63d5aa57b78b54704e256024e1790556115f5565b4660610361157b57600680546001600160a01b03191673d99d1c33f9fc3444f8101754abc46c52416550d11790556115f5565b466089148061158c57504662013881145b156115bc57600680546001600160a01b03191673a5e0829caced8ffdd4de3c43696c57f7d7a678ff1790556115f5565b60405162461bcd60e51b815260206004820152600e60248201526d21b430b4b7103737ba1039b2ba1760911b6044820152606401610d26565b6006546116109030906001600160a01b0316610ffb60025490565b600660009054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015611663573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061168791906134d2565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116e9573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170d91906134d2565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801561175a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061177e91906134d2565b602f80546001600160a01b039283166001600160a01b03199091161790556006541663f305d71947306117c6816001600160a01b031660009081526020819052604090205490565b6000806117db6005546001600160a01b031690565b426040518863ffffffff1660e01b81526004016117fd969594939291906134ef565b60606040518083038185885af115801561181b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611840919061352a565b5050602f5460065460405163095ea7b360e01b81526001600160a01b03918216600482015260001960248201529116915063095ea7b3906044016020604051808303816000875af1158015611899573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118bd9190613558565b506118d26103e8610e406002610e3a60025490565b600c556118e96103e8610e406002610e3a60025490565b600d556118ff6064610e406001610e3a60025490565b600e55611916612710610e406002610e3a60025490565b602b55600b805463ffff00ff1916630101000117905543600f819055601082905560408051918252602082018390527f8d3438059bb853597d71f33faf1d080795f797da60ef1c460fe5849903c24adb9101610eec565b611975612040565b600254611983906001613575565b600c55600254611994906001613575565b600d556002546119a5906001613575565b600e55600b805463ff00000019169055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6119ea612040565b60228390556024829055602681905560408051848152602081018490529081018290527f0a1ca1cf020cce18eb2c1acd1eb2fbb0911b33f048c9592de691823a416a94bb90606001610d83565b611a3f612040565b600b8054911515620100000262ff000019909216919091179055565b611a63612040565b611a776103e8610e406001610e3a60025490565b811015611aec5760405162461bcd60e51b815260206004820152603760248201527f4d61782073656c6c20616d6f756e742063616e6e6f74206265206c6f7765722060448201527f7468616e20302e312520746f74616c20737570706c792e0000000000000000006064820152608401610d26565b600d8190556040518181527fa37090cc2feed4f3799a43ad59e5dab1cb6e70a7c1be92b72dbf9610550d5ac890602001610eec565b611b29612040565b6001600160a01b038116611b8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610d26565b610e1b816128af565b611b9f612040565b611bb36103e8610e406001610e3a60025490565b811015611c215760405162461bcd60e51b815260206004820152603660248201527f4d61782062757920616d6f756e742063616e6e6f74206265206c6f77657220746044820152753430b71018171892903a37ba30b61039bab838363c9760511b6064820152608401610d26565b600c8190556040518181527f3a0b1f960db2351f13a6a83576ad81b35de3396cf92b9150216f2a6eea641d9a90602001610eec565b611c5e612040565b604051600090339047908381818185875af1925050503d8060008114611ca0576040519150601f19603f3d011682016040523d82523d6000602084013e611ca5565b606091505b50505050565b611cb3612040565b60005b8251811015610c65578160096000858481518110611cd657611cd661347a565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611d12816134a6565b915050611cb6565b611d22612040565b306001600160a01b03821603611d7a5760405162461bcd60e51b815260206004820152601960248201527f43616e6e6f74207769746864726177206f776e20746f6b656e000000000000006044820152606401610d26565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611dc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de5919061358c565b11611e1e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610d26565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e65573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e89919061358c565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611ed9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c659190613558565b6000611f098284613575565b9392505050565b6000611f0982846135a5565b6001600160a01b038316611f7e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610d26565b6001600160a01b038216611fdf5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610d26565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146111495760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610d26565b60006120a684846119b7565b90506000198114611ca557818110156121015760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610d26565b611ca58484848403611f1c565b6001600160a01b0383166121345760405162461bcd60e51b8152600401610d26906135c7565b6001600160a01b03821661215a5760405162461bcd60e51b8152600401610d269061360c565b600081116121bc5760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610d26565b602f546001906000906001600160a01b038681169116146121fa57602f546001600160a01b038581169116146121f35760026121fd565b60016121fd565b60005b90506122116005546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561224057506005546001600160a01b03858116911614155b801561225457506001600160a01b03841615155b801561226b57506001600160a01b03841661dead14155b801561227f5750600b54610100900460ff16155b156126aa576001600160a01b0385166000908152600a602052604090205460ff161580156122c657506001600160a01b0384166000908152600a602052604090205460ff16155b6123015760405162461bcd60e51b815260206004820152600c60248201526b213630b1b5b634b9ba32b21760a11b6044820152606401610d26565b600b5460ff16612396576001600160a01b03851660009081526008602052604090205460ff168061234a57506001600160a01b03841660009081526008602052604090205460ff165b6123965760405162461bcd60e51b815260206004820152601b60248201527f54726164696e67206973206e6f7420616c6c6f776564207965742e00000000006044820152606401610d26565b600b546301000000900460ff16156124a8576006546001600160a01b038581169116148015906123d45750602f546001600160a01b03858116911614155b156124a8576011546123e6904361364f565b32600090815260076020526040902054108015612426575060115461240b904361364f565b6001600160a01b038516600090815260076020526040902054105b6124835760405162461bcd60e51b815260206004820152602860248201527f5472616e736665722064656c617920656e61626c65642e20547279206167616960448201526737103630ba32b91760c11b6064820152608401610d26565b3260009081526007602052604080822043908190556001600160a01b03871683529120555b60008160028111156124bc576124bc613662565b1480156124d757506006546001600160a01b03858116911614155b80156124fc57506001600160a01b03841660009081526009602052604090205460ff16155b156125ec57600c548311156125655760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206578636565647320746865206d6178426044820152683abca0b6b7bab73a1760b91b6064820152608401610d26565b600e5483612588866001600160a01b031660009081526020819052604090205490565b61259291906134bf565b11156125ec5760405162461bcd60e51b8152602060048201526024808201527f45786365656473206d6178696d756d2077616c6c657420746f6b656e20616d6f6044820152633ab73a1760e11b6064820152608401610d26565b600181600281111561260057612600613662565b14801561261b57506006546001600160a01b03868116911614155b801561264057506001600160a01b03851660009081526009602052604090205460ff16155b156126aa57600d548311156126aa5760405162461bcd60e51b815260206004820152602a60248201527f5472616e7366657220616d6f756e74206578636565647320746865206d61785360448201526932b63620b6b7bab73a1760b11b6064820152608401610d26565b6001600160a01b03851660009081526008602052604090205460ff16806126e957506001600160a01b03841660009081526008602052604090205460ff165b806126ff5750600b54640100000000900460ff16155b806127325750600b5465010000000000900460ff161580156127325750600281600281111561273057612730613662565b145b1561273c57600091505b3060009081526020819052604081205490506000602b54821180156127725750600183600281111561277057612770613662565b145b90508080156127895750600b5462010000900460ff165b801561279d5750600b54610100900460ff16155b80156127c257506001600160a01b03871660009081526008602052604090205460ff16155b80156127e757506001600160a01b03861660009081526008602052604090205460ff16155b1561281057600b805461ff00191661010017905561280482612901565b600b805461ff00191690555b61281d8787878787612ae2565b50505050505050565b602c546001600160a01b03166108fc612840836002611f10565b6040518115909202916000818181858888f19350505050158015612868573d6000803e3d6000fd5b50602d546001600160a01b03166108fc612883836002611f10565b6040518115909202916000818181858888f193505050501580156128ab573d6000803e3d6000fd5b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612926602a54612920602954602854612b5490919063ffffffff16565b90612b54565b90506000821580612935575081155b1561293f57505050565b602b5461294d906005611efd565b83111561296557602b54612962906005611efd565b92505b60006129856002610e4085610e40602a5489611efd90919063ffffffff16565b905060006129938583612b60565b90504761299f82612b6c565b60006129ab4783612b60565b905060006129c887610e4060285485611efd90919063ffffffff16565b905060006129e588610e4060295486611efd90919063ffffffff16565b905060006129fd826129f78686612b60565b90612b60565b600060288190556029819055602a5590508615801590612a1d5750600081115b15612a2c57612a2c8782612cc6565b602d546040516001600160a01b03909116908390600081818185875af1925050503d8060008114612a79576040519150601f19603f3d011682016040523d82523d6000602084013e612a7e565b606091505b5050602c546040519199506001600160a01b0316904790600081818185875af1925050503d8060008114612ace576040519150601f19603f3d011682016040523d82523d6000602084013e612ad3565b606091505b50505050505050505050505050565b81612af457612aef612d61565b612b02565b612aff858483612e2d565b92505b612b0d858585612fdb565b81612b4d57612b4d601754601655601954601855601b54601a55601d54601c55601f54601e55602154602055602354602255602554602455602754602655565b5050505050565b6000611f0982846134bf565b6000611f09828461364f565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110612ba157612ba161347a565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015612bfa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c1e91906134d2565b81600181518110612c3157612c3161347a565b6001600160a01b039283166020918202929092010152600654612c579130911684611f1c565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac94790612c90908590600090869030904290600401613678565b600060405180830381600087803b158015612caa57600080fd5b505af1158015612cbe573d6000803e3d6000fd5b505050505050565b600654612cde9030906001600160a01b031684611f1c565b600654602e5460405163f305d71960e01b81526001600160a01b039283169263f305d719928592612d1e92309289926000928392169042906004016134ef565b60606040518083038185885af1158015612d3c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190612b4d919061352a565b601654158015612d715750601854155b8015612d7d5750601a54155b8015612d895750601c54155b8015612d955750601e54155b8015612da15750602054155b8015612dad5750602254155b8015612db95750602454155b8015612dc55750602654155b15612dcc57565b6016805460175560188054601955601a8054601b55601c8054601d55601e8054601f55602080546021556022805460235560248054602555602680546027556000988990559688905594879055928690559085905584905583905582905555565b600043601054600f54612e4091906134bf565b10612e5257612e4d613105565b612efd565b6001826002811115612e6657612e66613662565b03612e7357612e4d61312a565b6000826002811115612e8757612e87613662565b03612e9457612e4d613152565b6002826002811115612ea857612ea8613662565b03612eb557612e4d61317a565b60405162461bcd60e51b815260206004820152601960248201527f496e76616c6964207472616e73616374696f6e20747970652e000000000000006044820152606401610d26565b60125460009015612fb757612f236103e8610e4060125487611efd90919063ffffffff16565b905060125460135482612f369190613575565b612f4091906135a5565b60286000828254612f5191906134bf565b9091555050601254601454612f669083613575565b612f7091906135a5565b60296000828254612f8191906134bf565b9091555050601254601554612f969083613575565b612fa091906135a5565b602a6000828254612fb191906134bf565b90915550505b8015612fc857612fc8853083612fdb565b612fd2818561364f565b95945050505050565b6001600160a01b0383166130015760405162461bcd60e51b8152600401610d26906135c7565b6001600160a01b0382166130275760405162461bcd60e51b8152600401610d269061360c565b6001600160a01b0383166000908152602081905260409020548181101561309f5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610d26565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3611ca5565b61014d601381905560148190556015819055613125906129208180612b54565b601255565b601c546013819055601e54601481905560205460158190556131259290916129209190612b54565b60165460138190556018546014819055601a5460158190556131259290916129209190612b54565b6022546013819055602454601481905560265460158190556131259290916129209190612b54565b600060208083528351808285015260005b818110156131cf578581018301518582016040015282016131b3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610e1b57600080fd5b8035613210816131f0565b919050565b6000806040838503121561322857600080fd5b8235613233816131f0565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b8015158114610e1b57600080fd5b803561321081613257565b6000806040838503121561328357600080fd5b823567ffffffffffffffff8082111561329b57600080fd5b818501915085601f8301126132af57600080fd5b81356020828211156132c3576132c3613241565b8160051b604051601f19603f830116810181811086821117156132e8576132e8613241565b60405292835281830193508481018201928984111561330657600080fd5b948201945b8386101561332b5761331c86613205565b8552948201949382019361330b565b965061333a9050878201613265565b9450505050509250929050565b60006020828403121561335957600080fd5b5035919050565b60008060006060848603121561337557600080fd5b505081359360208301359350604090920135919050565b6000806000606084860312156133a157600080fd5b83356133ac816131f0565b925060208401356133bc816131f0565b929592945050506040919091013590565b6000602082840312156133df57600080fd5b8135611f09816131f0565b6000602082840312156133fc57600080fd5b8135611f0981613257565b6000806040838503121561341a57600080fd5b8235613425816131f0565b91506020830135613435816131f0565b809150509250929050565b600181811c9082168061345457607f821691505b60208210810361347457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016134b8576134b8613490565b5060010190565b80820180821115610b3257610b32613490565b6000602082840312156134e457600080fd5b8151611f09816131f0565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b60008060006060848603121561353f57600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561356a57600080fd5b8151611f0981613257565b8082028115828204841417610b3257610b32613490565b60006020828403121561359e57600080fd5b5051919050565b6000826135c257634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610b3257610b32613490565b634e487b7160e01b600052602160045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156136c85784516001600160a01b0316835293830193918301916001016136a3565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220caf1a200f0113654e4769b11c1de017fdf495afe93e6c0e0a544e919041ea7b264736f6c63430008110033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff73470000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff73470000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff7347

-----Decoded View---------------
Arg [0] : _marketingWalletAddress (address): 0x4035A29E8Ee2bb101a17a90Db0Fc0603B3FF7347
Arg [1] : _nonkycCEXWalletAddress (address): 0x4035A29E8Ee2bb101a17a90Db0Fc0603B3FF7347
Arg [2] : _liquidityWalletAddress (address): 0x4035A29E8Ee2bb101a17a90Db0Fc0603B3FF7347

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff7347
Arg [1] : 0000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff7347
Arg [2] : 0000000000000000000000004035a29e8ee2bb101a17a90db0fc0603b3ff7347


Deployed Bytecode Sourcemap

31149:21761:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19213:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21564:201;;;;;;;;;;-1:-1:-1;21564:201:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;21564:201:0;1162:187:1;31944:35:0;;;;;;;;;;;;;;;;;;;1500:25:1;;;1488:2;1473:18;31944:35:0;1354:177:1;46437:303:0;;;;;;;;;;-1:-1:-1;46437:303:0;;;;;:::i;:::-;;:::i;46022:185::-;;;;;;;;;;-1:-1:-1;46022:185:0;;;;;:::i;:::-;;:::i;47855:160::-;;;;;;;;;;-1:-1:-1;47855:160:0;;;;;:::i;:::-;;:::i;33029:40::-;;;;;;;;;;;;;;;;20333:108;;;;;;;;;;-1:-1:-1;20421:12:0;;20333:108;;47089:347;;;;;;;;;;-1:-1:-1;47089:347:0;;;;;:::i;:::-;;:::i;32376:35::-;;;;;;;;;;;;;;;;22345:295;;;;;;;;;;-1:-1:-1;22345:295:0;;;;;:::i;:::-;;:::i;46748:333::-;;;;;;;;;;-1:-1:-1;46748:333:0;;;;;:::i;:::-;;:::i;51935:162::-;;;;;;;;;;;;;:::i;43673:308::-;;;;;;;;;;-1:-1:-1;43673:308:0;;;;;:::i;:::-;;:::i;45501:513::-;;;;;;;;;;-1:-1:-1;45501:513:0;;;;;:::i;:::-;;:::i;20175:93::-;;;;;;;;;;-1:-1:-1;20175:93:0;;20258:2;4481:36:1;;4469:2;4454:18;20175:93:0;4339:184:1;23049:238:0;;;;;;;;;;-1:-1:-1;23049:238:0;;;;;:::i;:::-;;:::i;42844:110::-;;;;;;;;;;-1:-1:-1;42844:110:0;;;;;:::i;:::-;;:::i;44459:513::-;;;;;;;;;;-1:-1:-1;44459:513:0;;;;;:::i;:::-;;:::i;31848:39::-;;;;;;;;;;;;;;;;42962:102;;;;;;;;;;-1:-1:-1;42962:102:0;;;;;:::i;:::-;;:::i;31577:31::-;;;;;;;;;;-1:-1:-1;31577:31:0;;;;;;;;;;;20504:127;;;;;;;;;;-1:-1:-1;20504:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;20605:18:0;20578:7;20605:18;;;;;;;;;;;;20504:127;5976:103;;;;;;;;;;;;;:::i;44980:513::-;;;;;;;;;;-1:-1:-1;44980:513:0;;;;;:::i;:::-;;:::i;32269:35::-;;;;;;;;;;;;;;;;42741:94;;;;;;;;;;-1:-1:-1;42741:94:0;;;;;:::i;:::-;;:::i;32907:40::-;;;;;;;;;;;;;;;;31803:38;;;;;;;;;;;;;;;;5328:87;;;;;;;;;;-1:-1:-1;5401:6:0;;-1:-1:-1;;;;;5401:6:0;5328:87;;;-1:-1:-1;;;;;4938:32:1;;;4920:51;;4908:2;4893:18;5328:87:0;4774:203:1;33501:45:0;;;;;;;;;;-1:-1:-1;33501:45:0;;;;-1:-1:-1;;;;;33501:45:0;;;33553;;;;;;;;;;-1:-1:-1;33553:45:0;;;;-1:-1:-1;;;;;33553:45:0;;;32592:36;;;;;;;;;;;;;;;;19432:104;;;;;;;;;;;;;:::i;33151:40::-;;;;;;;;;;;;;;;;32075:42;;;;;;;;;;;;32113:4;32075:42;;23790:436;;;;;;;;;;-1:-1:-1;23790:436:0;;;;;:::i;:::-;;:::i;31657:30::-;;;;;;;;;;-1:-1:-1;31657:30:0;;;;;;;;;;;20837:193;;;;;;;;;;-1:-1:-1;20837:193:0;;;;;:::i;:::-;;:::i;31615:35::-;;;;;;;;;;-1:-1:-1;31615:35:0;;;;;;;;;;;31894:41;;;;;;;;;;;;;;;;43993:458;;;;;;;;;;-1:-1:-1;43993:458:0;;;;;:::i;:::-;;:::i;32697:36::-;;;;;;;;;;;;;;;;33449:45;;;;;;;;;;-1:-1:-1;33449:45:0;;;;-1:-1:-1;;;;;33449:45:0;;;40855:1644;;;;;;;;;;-1:-1:-1;40855:1644:0;;;;;:::i;:::-;;:::i;52613:219::-;;;;;;;;;;;;;:::i;21093:151::-;;;;;;;;;;-1:-1:-1;21093:151:0;;;;;:::i;:::-;;:::i;47444:403::-;;;;;;;;;;-1:-1:-1;47444:403:0;;;;;:::i;:::-;;:::i;42640:94::-;;;;;;;;;;-1:-1:-1;42640:94:0;;;;;:::i;:::-;;:::i;43369:292::-;;;;;;;;;;-1:-1:-1;43369:292:0;;;;;:::i;:::-;;:::i;31694:38::-;;;;;;;;;;-1:-1:-1;31694:38:0;;;;;;;;;;;32483:35;;;;;;;;;;;;;;;;6234:201;;;;;;;;;;-1:-1:-1;6234:201:0;;;;;:::i;:::-;;:::i;43077:284::-;;;;;;;;;;-1:-1:-1;43077:284:0;;;;;:::i;:::-;;:::i;52105:158::-;;;;;;;;;;;;;:::i;46219:206::-;;;;;;;;;;-1:-1:-1;46219:206:0;;;;;:::i;:::-;;:::i;32801:36::-;;;;;;;;;;;;;;;;52271:334;;;;;;;;;;-1:-1:-1;52271:334:0;;;;;:::i;:::-;;:::i;42509:116::-;;;;;;;;;;-1:-1:-1;42509:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;42595:22:0;42571:4;42595:22;;;:14;:22;;;;;;;;;42509:116;31518:23;;;;;;;;;;-1:-1:-1;31518:23:0;;;;;;;;19213:100;19267:13;19300:5;19293:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19213:100;:::o;21564:201::-;21647:4;4045:10;21703:32;4045:10;21719:7;21728:6;21703:8;:32::i;:::-;21753:4;21746:11;;;21564:201;;;;;:::o;46437:303::-;5214:13;:11;:13::i;:::-;46530:6:::1;46525:208;46546:8;:15;46542:1;:19;46525:208;;;46602:8;::::0;46587:11;;-1:-1:-1;;;;;46602:8:0;;::::1;::::0;46587;;46596:1;;46587:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;46587:23:0::1;;;46586:65;;;;-1:-1:-1::0;46639:10:0::1;::::0;46616:11;;-1:-1:-1;;;;;46639:10:0;;::::1;::::0;46616:8;;46625:1;;46616:11;::::1;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;46616:34:0::1;;;46586:65;:99;;;;;46679:4;-1:-1:-1::0;;;;;46656:28:0::1;:8;46665:1;46656:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;46656:28:0::1;;;46586:99;46583:138;;;46717:4;46687:14;:27;46702:8;46711:1;46702:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;46687:27:0::1;-1:-1:-1::0;;;;;46687:27:0::1;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;46583:138;46563:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46525:208;;;;46437:303:::0;;:::o;46022:185::-;5214:13;:11;:13::i;:::-;46122:6:::1;46117:82;46138:8;:15;46134:1;:19;46117:82;;;46195:4;46160:19;:32;46180:8;46189:1;46180:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46160:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46160:32:0;:39;;-1:-1:-1;;46160:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46155:3;::::1;::::0;::::1;:::i;:::-;;;;46117:82;;47855:160:::0;5214:13;:11;:13::i;:::-;47944:2:::1;47934:6;:12;;47926:46;;;::::0;-1:-1:-1;;;47926:46:0;;6590:2:1;47926:46:0::1;::::0;::::1;6572:21:1::0;6629:2;6609:18;;;6602:30;-1:-1:-1;;;6648:18:1;;;6641:51;6709:18;;47926:46:0::1;;;;;;;;;47983:15;:24:::0;47855:160::o;47089:347::-;5214:13;:11;:13::i;:::-;47218:16:::1;:36:::0;;;47265:16:::1;:36:::0;;;47312:16:::1;:36:::0;;;47364:64:::1;::::0;;6940:25:1;;;6981:18;;;6974:34;;;7024:18;;7017:34;;;47364:64:0::1;::::0;6928:2:1;6913:18;47364:64:0::1;;;;;;;;47089:347:::0;;;:::o;22345:295::-;22476:4;4045:10;22534:38;22550:4;4045:10;22565:6;22534:15;:38::i;:::-;22583:27;22593:4;22599:2;22603:6;22583:9;:27::i;:::-;-1:-1:-1;22628:4:0;;22345:295;-1:-1:-1;;;;22345:295:0:o;46748:333::-;5214:13;:11;:13::i;:::-;46873:15:::1;:34:::0;;;46918:15:::1;:34:::0;;;46963:15:::1;:34:::0;;;47013:60:::1;::::0;;6940:25:1;;;6996:2;6981:18;;6974:34;;;7024:18;;;7017:34;;;47013:60:0::1;::::0;6928:2:1;6913:18;47013:60:0::1;6738:319:1::0;51935:162:0;5214:13;:11;:13::i;:::-;52024:21:::1;52056:33;52024:21:::0;52056:13:::1;:33::i;:::-;51984:113;51935:162::o:0;43673:308::-;5214:13;:11;:13::i;:::-;43784:30:::1;43809:4;43784:20;43802:1;43784:13;20421:12:::0;;;20333:108;43784:13:::1;:17:::0;::::1;:20::i;:::-;:24:::0;::::1;:30::i;:::-;43763:16;:52;;43755:122;;;::::0;-1:-1:-1;;;43755:122:0;;7264:2:1;43755:122:0::1;::::0;::::1;7246:21:1::0;7303:2;7283:18;;;7276:30;7342:34;7322:18;;;7315:62;7413:27;7393:18;;;7386:55;7458:19;;43755:122:0::1;7062:421:1::0;43755:122:0::1;43888:15;:34:::0;;;43938:35:::1;::::0;1500:25:1;;;43938:35:0::1;::::0;1488:2:1;1473:18;43938:35:0::1;;;;;;;;43673:308:::0;:::o;45501:513::-;5214:13;:11;:13::i;:::-;-1:-1:-1;;;;;45598:31:0;::::1;45590:78;;;::::0;-1:-1:-1;;;45590:78:0;;7690:2:1;45590:78:0::1;::::0;::::1;7672:21:1::0;7729:2;7709:18;;;7702:30;7768:34;7748:18;;;7741:62;-1:-1:-1;;;7819:18:1;;;7812:32;7861:19;;45590:78:0::1;7488:398:1::0;45590:78:0::1;45699:22;::::0;;-1:-1:-1;;;;;45699:22:0;;::::1;45725:5;45679:43:::0;;;:19:::1;:43;::::0;;;;;;;:51;;-1:-1:-1;;45679:51:0;;::::1;::::0;;;45773:22;;;::::1;45741:55:::0;;:31:::1;:55:::0;;;;;;:63;;;::::1;::::0;;45815:57;;-1:-1:-1;;;;;;45815:57:0::1;::::0;;::::1;::::0;;::::1;::::0;;45883:43;;;;;;;;;:50;;;::::1;-1:-1:-1::0;45883:50:0;;::::1;::::0;;;45976:22;;;;::::1;45944:55:::0;;;;;;;:62;;;;::::1;;::::0;;45501:513::o;23049:238::-;23137:4;4045:10;23193:64;4045:10;23209:7;23246:10;23218:25;4045:10;23209:7;23218:9;:25::i;:::-;:38;;;;:::i;:::-;23193:8;:64::i;42844:110::-;5214:13;:11;:13::i;:::-;42919:19:::1;:27:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;42919:27:0;;::::1;::::0;;;::::1;::::0;;42844:110::o;44459:513::-;5214:13;:11;:13::i;:::-;-1:-1:-1;;;;;44556:31:0;::::1;44548:78;;;::::0;-1:-1:-1;;;44548:78:0;;8223:2:1;44548:78:0::1;::::0;::::1;8205:21:1::0;8262:2;8242:18;;;8235:30;8301:34;8281:18;;;8274:62;-1:-1:-1;;;8352:18:1;;;8345:32;8394:19;;44548:78:0::1;8021:398:1::0;44548:78:0::1;44657:22;::::0;;-1:-1:-1;;;;;44657:22:0;;::::1;44683:5;44637:43:::0;;;:19:::1;:43;::::0;;;;;;;:51;;-1:-1:-1;;44637:51:0;;::::1;::::0;;;44731:22;;;::::1;44699:55:::0;;:31:::1;:55:::0;;;;;;:63;;;::::1;::::0;;44773:57;;-1:-1:-1;;;;;;44773:57:0::1;::::0;;::::1;::::0;;::::1;::::0;;44841:43;;;;;;;;;:50;;;::::1;-1:-1:-1::0;44841:50:0;;::::1;::::0;;;44934:22;;;;::::1;44902:55:::0;;;;;;;:62;;;;::::1;;::::0;;44459:513::o;42962:102::-;5214:13;:11;:13::i;:::-;43033:15:::1;:23:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43033:23:0;;::::1;::::0;;;::::1;::::0;;42962:102::o;5976:103::-;5214:13;:11;:13::i;:::-;6041:30:::1;6068:1;6041:18;:30::i;:::-;5976:103::o:0;44980:513::-;5214:13;:11;:13::i;:::-;-1:-1:-1;;;;;45077:31:0;::::1;45069:78;;;::::0;-1:-1:-1;;;45069:78:0;;8626:2:1;45069:78: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:32;8797:19;;45069:78:0::1;8424:398:1::0;45069:78:0::1;45178:22;::::0;;-1:-1:-1;;;;;45178:22:0;;::::1;45204:5;45158:43:::0;;;:19:::1;:43;::::0;;;;;;;:51;;-1:-1:-1;;45158:51:0;;::::1;::::0;;;45252:22;;;::::1;45220:55:::0;;:31:::1;:55:::0;;;;;;:63;;;::::1;::::0;;45294:57;;-1:-1:-1;;;;;;45294:57:0::1;::::0;;::::1;::::0;;::::1;::::0;;45362:43;;;;;;;;;:50;;;::::1;-1:-1:-1::0;45362:50:0;;::::1;::::0;;;45455:22;;;;::::1;45423:55:::0;;;;;;;:62;;;;::::1;;::::0;;44980:513::o;42741:94::-;5214:13;:11;:13::i;:::-;42808:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;42808:19:0;;::::1;::::0;;;::::1;::::0;;42741:94::o;19432:104::-;19488:13;19521:7;19514:14;;;;;:::i;23790:436::-;23883:4;4045:10;23883:4;23966:25;4045:10;23983:7;23966:9;:25::i;:::-;23939:52;;24030:15;24010:16;:35;;24002:85;;;;-1:-1:-1;;;24002:85:0;;9029:2:1;24002:85:0;;;9011:21:1;9068:2;9048:18;;;9041:30;9107:34;9087:18;;;9080:62;-1:-1:-1;;;9158:18:1;;;9151:35;9203:19;;24002:85:0;8827:401:1;24002:85:0;24123:60;24132:5;24139:7;24167:15;24148:16;:34;24123:8;:60::i;20837:193::-;20916:4;4045:10;20972:28;4045:10;20989:2;20993:6;20972:9;:28::i;43993:458::-;5214:13;:11;:13::i;:::-;44111:33:::1;44136:7;44111:20;44129:1;44111:13;20421:12:::0;;;20333:108;44111:33:::1;44088:18;:57;;44080:124;;;::::0;-1:-1:-1;;;44080:124:0;;9435:2:1;44080:124:0::1;::::0;::::1;9417:21:1::0;9474:2;9454:18;;;9447:30;9513:34;9493:18;;;9486:62;-1:-1:-1;;;9564:18:1;;;9557:52;9626:19;;44080:124:0::1;9233:418:1::0;44080:124:0::1;44246:30;44271:4;44246:20;44264:1;44246:13;20421:12:::0;;;20333:108;44246:30:::1;44223:18;:54;;44215:119;;;::::0;-1:-1:-1;;;44215:119:0;;9858:2:1;44215:119:0::1;::::0;::::1;9840:21:1::0;9897:2;9877:18;;;9870:30;9936:34;9916:18;;;9909:62;-1:-1:-1;;;9987:18:1;;;9980:50;10047:19;;44215:119:0::1;9656:416:1::0;44215:119:0::1;44345:19;:40:::0;;;44401:42:::1;::::0;1500:25:1;;;44401:42:0::1;::::0;1488:2:1;1473:18;44401:42:0::1;1354:177:1::0;40855:1644:0;5214:13;:11;:13::i;:::-;40929:11:::1;::::0;::::1;;40928:12;40920:48;;;::::0;-1:-1:-1;;;40920:48:0;;10279:2:1;40920:48:0::1;::::0;::::1;10261:21:1::0;10318:2;10298:18;;;10291:30;10357:25;10337:18;;;10330:53;10400:18;;40920:48:0::1;10077:347:1::0;40920:48:0::1;40997:2;40987:6;:12;;40979:46;;;::::0;-1:-1:-1;;;40979:46:0;;6590:2:1;40979:46:0::1;::::0;::::1;6572:21:1::0;6629:2;6609:18;;;6602:30;-1:-1:-1;;;6648:18:1;;;6641:51;6709:18;;40979:46:0::1;6388:345:1::0;40979:46:0::1;41042:13;41059:1;41042:18;:40;;;;41064:13;41081:1;41064:18;41042:40;41038:596;;;41084:10;:67:::0;;-1:-1:-1;;;;;;41084:67:0::1;41108:42;41084:67;::::0;;41038:596:::1;;;41190:13;41207:2;41190:19:::0;41186:448:::1;;41211:10;:67:::0;;-1:-1:-1;;;;;;41211:67:0::1;41235:42;41211:67;::::0;;41186:448:::1;;;41319:13;41336:2;41319:19:::0;41315:319:::1;;41340:10;:67:::0;;-1:-1:-1;;;;;;41340:67:0::1;41364:42;41340:67;::::0;;41315:319:::1;;;41456:13;41473:3;41456:20;:46;;;;41480:13;41497:5;41480:22;41456:46;41452:182;;;41504:10;:67:::0;;-1:-1:-1;;;;;;41504:67:0::1;41528:42;41504:67;::::0;;41452:182:::1;;;41610:24;::::0;-1:-1:-1;;;41610:24:0;;10631:2:1;41610:24:0::1;::::0;::::1;10613:21:1::0;10670:2;10650:18;;;10643:30;-1:-1:-1;;;10689:18:1;;;10682:44;10743:18;;41610:24:0::1;10429:338:1::0;41452:182:0::1;41679:10;::::0;41647:59:::1;::::0;41664:4:::1;::::0;-1:-1:-1;;;;;41679:10:0::1;41692:13;20421:12:::0;;;20333:108;41647:59:::1;41740:10;;;;;;;;;-1:-1:-1::0;;;;;41740:10:0::1;-1:-1:-1::0;;;;;41740:18:0::1;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41728:44:0::1;;41781:4;41788:10;;;;;;;;;-1:-1:-1::0;;;;;41788:10:0::1;-1:-1:-1::0;;;;;41788:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41728:78;::::0;-1:-1:-1;;;;;;41728:78:0::1;::::0;;;;;;-1:-1:-1;;;;;11258:15:1;;;41728:78:0::1;::::0;::::1;11240:34:1::0;11310:15;;11290:18;;;11283:43;11175:18;;41728:78:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41717:8;:89:::0;;-1:-1:-1;;;;;41717:89:0;;::::1;-1:-1:-1::0;;;;;;41717:89:0;;::::1;;::::0;;41817:10:::1;::::0;::::1;:26;41851:21;41882:4;41889:24;41882:4:::0;-1:-1:-1;;;;;20605:18:0;20578:7;20605:18;;;;;;;;;;;;20504:127;41889:24:::1;41915:1;41918::::0;41921:7:::1;5401:6:::0;;-1:-1:-1;;;;;5401:6:0;;5328:87;41921:7:::1;41930:15;41817:129;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;41964:8:0::1;::::0;41990:10:::1;::::0;41957:61:::1;::::0;-1:-1:-1;;;41957:61:0;;-1:-1:-1;;;;;41990:10:0;;::::1;41957:61;::::0;::::1;12434:51:1::0;-1:-1:-1;;12501:18:1;;;12494:34;41964:8:0;::::1;::::0;-1:-1:-1;41957:24:0::1;::::0;12407:18:1;;41957:61:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42046:30;42071:4;42046:20;42064:1;42046:13;20421:12:::0;;;20333:108;42046:30:::1;42031:12;:45:::0;42103:30:::1;42128:4;42103:20;42121:1;42103:13;20421:12:::0;;;20333:108;42103:30:::1;42087:13;:46:::0;42162:29:::1;42187:3;42162:20;42180:1;42162:13;20421:12:::0;;;20333:108;42162:29:::1;42144:15;:47:::0;42224:31:::1;42249:5;42224:20;42242:1;42224:13;20421:12:::0;;;20333:108;42224:31:::1;42202:19;:53:::0;42266:11:::1;:18:::0;;-1:-1:-1;;42328:18:0;;;;;42376:12:::1;42357:16;:31:::0;;;42399:18:::1;:27:::0;;;42442:49:::1;::::0;;12963:25:1;;;-1:-1:-1;13004:18:1;;12997:34;;;42442:49:0::1;::::0;12936:18:1;42442:49:0::1;12789:248:1::0;52613:219:0;5214:13;:11;:13::i;:::-;20421:12;;52683:17:::1;::::0;52699:1:::1;52683:17;:::i;:::-;52668:12;:32:::0;20421:12;;52727:17:::1;::::0;52743:1:::1;52727:17;:::i;:::-;52711:13;:33:::0;20421:12;;52773:17:::1;::::0;52789:1:::1;52773:17;:::i;:::-;52755:15;:35:::0;52801:15:::1;:23:::0;;-1:-1:-1;;52801:23:0::1;::::0;;52613:219::o;21093:151::-;-1:-1:-1;;;;;21209:18:0;;;21182:7;21209:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21093:151::o;47444:403::-;5214:13;:11;:13::i;:::-;47589:20:::1;:44:::0;;;47644:20:::1;:44:::0;;;47699:20:::1;:44:::0;;;47759:80:::1;::::0;;6940:25:1;;;6996:2;6981:18;;6974:34;;;7024:18;;;7017:34;;;47759:80:0::1;::::0;6928:2:1;6913:18;47759:80:0::1;6738:319:1::0;42640:94:0;5214:13;:11;:13::i;:::-;42707:11:::1;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;42707:19:0;;::::1;::::0;;;::::1;::::0;;42640:94::o;43369:292::-;5214:13;:11;:13::i;:::-;43474:30:::1;43499:4;43474:20;43492:1;43474:13;20421:12:::0;;;20333:108;43474:30:::1;43455:14;:50;;43447:118;;;::::0;-1:-1:-1;;;43447:118:0;;13417:2:1;43447:118:0::1;::::0;::::1;13399:21:1::0;13456:2;13436:18;;;13429:30;13495:34;13475:18;;;13468:62;13566:25;13546:18;;;13539:53;13609:19;;43447:118:0::1;13215:419:1::0;43447:118:0::1;43576:13;:30:::0;;;43622:31:::1;::::0;1500:25:1;;;43622:31:0::1;::::0;1488:2:1;1473:18;43622:31:0::1;1354:177:1::0;6234:201:0;5214:13;:11;:13::i;:::-;-1:-1:-1;;;;;6323:22:0;::::1;6315:73;;;::::0;-1:-1:-1;;;6315:73:0;;13841:2:1;6315:73:0::1;::::0;::::1;13823:21:1::0;13880:2;13860:18;;;13853:30;13919:34;13899:18;;;13892:62;-1:-1:-1;;;13970:18:1;;;13963:36;14016:19;;6315:73:0::1;13639:402:1::0;6315:73:0::1;6399:28;6418:8;6399:18;:28::i;43077:284::-:0;5214:13;:11;:13::i;:::-;43179:30:::1;43204:4;43179:20;43197:1;43179:13;20421:12:::0;;;20333:108;43179:30:::1;43161:13;:49;;43153:116;;;::::0;-1:-1:-1;;;43153:116:0;;14248:2:1;43153:116:0::1;::::0;::::1;14230:21:1::0;14287:2;14267:18;;;14260:30;14326:34;14306:18;;;14299:62;-1:-1:-1;;;14377:18:1;;;14370:52;14439:19;;43153:116:0::1;14046:418:1::0;43153:116:0::1;43280:12;:28:::0;;;43324:29:::1;::::0;1500:25:1;;;43324:29:0::1;::::0;1488:2:1;1473:18;43324:29:0::1;1354:177:1::0;52105:158:0;5214:13;:11;:13::i;:::-;52197:58:::1;::::0;52161:12:::1;::::0;52205:10:::1;::::0;52229:21:::1;::::0;52161:12;52197:58;52161:12;52197:58;52229:21;52205:10;52197:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;52105:158:0:o;46219:206::-;5214:13;:11;:13::i;:::-;46328:6:::1;46323:94;46344:8;:15;46340:1;:19;46323:94;;;46413:4;46366:31;:44;46398:8;46407:1;46398:11;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;46366:44:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;46366:44:0;:51;;-1:-1:-1;;46366:51:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46361:3;::::1;::::0;::::1;:::i;:::-;;;;46323:94;;52271:334:::0;5214:13;:11;:13::i;:::-;52371:4:::1;-1:-1:-1::0;;;;;52354:22:0;::::1;::::0;52346:60:::1;;;::::0;-1:-1:-1;;;52346:60:0;;14881:2:1;52346:60:0::1;::::0;::::1;14863:21:1::0;14920:2;14900:18;;;14893:30;14959:27;14939:18;;;14932:55;15004:18;;52346:60:0::1;14679:349:1::0;52346:60:0::1;52425:38;::::0;-1:-1:-1;;;52425:38:0;;52457:4:::1;52425:38;::::0;::::1;4920:51:1::0;52466:1:0::1;::::0;-1:-1:-1;;;;;52425:23:0;::::1;::::0;::::1;::::0;4893:18:1;;52425:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;52417:64;;;::::0;-1:-1:-1;;;52417:64:0;;15424:2:1;52417:64:0::1;::::0;::::1;15406:21:1::0;15463:1;15443:18;;;15436:29;-1:-1:-1;;;15481:18:1;;;15474:39;15530:18;;52417:64:0::1;15222:332:1::0;52417:64:0::1;52506:38;::::0;-1:-1:-1;;;52506:38:0;;52538:4:::1;52506:38;::::0;::::1;4920:51:1::0;52492:11:0::1;::::0;-1:-1:-1;;;;;52506:23:0;::::1;::::0;::::1;::::0;4893:18:1;;52506:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52555:42;::::0;-1:-1:-1;;;52555:42:0;;52578:10:::1;52555:42;::::0;::::1;12434:51:1::0;12501:18;;;12494:34;;;52492:52:0;;-1:-1:-1;;;;;;52555:22:0;::::1;::::0;::::1;::::0;12407:18:1;;52555:42:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;10318:98::-:0;10376:7;10403:5;10407:1;10403;:5;:::i;:::-;10396:12;10318:98;-1:-1:-1;;;10318:98:0:o;10717:::-;10775:7;10802:5;10806:1;10802;:5;:::i;27817:380::-;-1:-1:-1;;;;;27953:19:0;;27945:68;;;;-1:-1:-1;;;27945:68:0;;15983:2:1;27945:68:0;;;15965:21:1;16022:2;16002:18;;;15995:30;16061:34;16041:18;;;16034:62;-1:-1:-1;;;16112:18:1;;;16105:34;16156:19;;27945:68:0;15781:400:1;27945:68:0;-1:-1:-1;;;;;28032:21:0;;28024:68;;;;-1:-1:-1;;;28024:68:0;;16388:2:1;28024:68:0;;;16370:21:1;16427:2;16407:18;;;16400:30;16466:34;16446:18;;;16439:62;-1:-1:-1;;;16517:18:1;;;16510:32;16559:19;;28024:68:0;16186:398:1;28024:68:0;-1:-1:-1;;;;;28105:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;28157:32;;1500:25:1;;;28157:32:0;;1473:18:1;28157:32:0;;;;;;;27817:380;;;:::o;5493:132::-;5401:6;;-1:-1:-1;;;;;5401:6:0;4045:10;5557:23;5549:68;;;;-1:-1:-1;;;5549:68:0;;16791:2:1;5549:68:0;;;16773:21:1;;;16810:18;;;16803:30;16869:34;16849:18;;;16842:62;16921:18;;5549:68:0;16589:356:1;28488:453:0;28623:24;28650:25;28660:5;28667:7;28650:9;:25::i;:::-;28623:52;;-1:-1:-1;;28690:16:0;:37;28686:248;;28772:6;28752:16;:26;;28744:68;;;;-1:-1:-1;;;28744:68:0;;17152:2:1;28744:68:0;;;17134:21:1;17191:2;17171:18;;;17164:30;17230:31;17210:18;;;17203:59;17279:18;;28744:68:0;16950:353:1;28744:68:0;28856:51;28865:5;28872:7;28900:6;28881:16;:25;28856:8;:51::i;35991:2423::-;-1:-1:-1;;;;;36089:12:0;;36081:62;;;;-1:-1:-1;;;36081:62:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36162:10:0;;36154:58;;;;-1:-1:-1;;;36154:58:0;;;;;;;:::i;:::-;36240:1;36231:6;:10;36223:64;;;;-1:-1:-1;;;36223:64:0;;18320:2:1;36223:64:0;;;18302:21:1;18359:2;18339:18;;;18332:30;18398:34;18378:18;;;18371:62;-1:-1:-1;;;18449:18:1;;;18442:39;18498:19;;36223:64:0;18118:405:1;36223:64:0;36364:8;;36315:4;;36300:12;;-1:-1:-1;;;;;36356:16:0;;;36364:8;;36356:16;36355:109;;36405:8;;-1:-1:-1;;;;;36399:14:0;;;36405:8;;36399:14;36398:66;;36440:24;36355:109;;36398:66;36417:20;36355:109;;;36376:19;36355:109;36330:134;;36487:7;5401:6;;-1:-1:-1;;;;;5401:6:0;;5328:87;36487:7;-1:-1:-1;;;;;36479:15:0;:4;-1:-1:-1;;;;;36479:15:0;;;:32;;;;-1:-1:-1;5401:6:0;;-1:-1:-1;;;;;36498:13:0;;;5401:6;;36498:13;;36479:32;:46;;;;-1:-1:-1;;;;;;36515:10:0;;;;36479:46;:60;;;;-1:-1:-1;;;;;;36529:10:0;;33670:42;36529:10;;36479:60;:74;;;;-1:-1:-1;36544:9:0;;;;;;;36543:10;36479:74;36475:1313;;;-1:-1:-1;;;;;36579:20:0;;;;;;:14;:20;;;;;;;;36578:21;:44;;;;-1:-1:-1;;;;;;36604:18:0;;;;;;:14;:18;;;;;;;;36603:19;36578:44;36570:69;;;;-1:-1:-1;;;36570:69:0;;18730:2:1;36570:69:0;;;18712:21:1;18769:2;18749:18;;;18742:30;-1:-1:-1;;;18788:18:1;;;18781:42;18840:18;;36570:69:0;18528:336:1;36570:69:0;36660:11;;;;36656:109;;-1:-1:-1;;;;;36681:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;36710:23:0;;;;;;:19;:23;;;;;;;;36681:52;36673:92;;;;-1:-1:-1;;;36673:92:0;;19071:2:1;36673:92:0;;;19053:21:1;19110:2;19090:18;;;19083:30;19149:29;19129:18;;;19122:57;19196:18;;36673:92:0;18869:351:1;36673:92:0;36786:15;;;;;;;36782:421;;;36840:10;;-1:-1:-1;;;;;36826:25:0;;;36840:10;;36826:25;;;;:52;;-1:-1:-1;36869:8:0;;-1:-1:-1;;;;;36855:23:0;;;36869:8;;36855:23;;36826:52;36822:366;;;36949:15;;36934:30;;:12;:30;:::i;:::-;36921:9;36911:20;;;;:9;:20;;;;;;:53;:103;;;;-1:-1:-1;36999:15:0;;36984:30;;:12;:30;:::i;:::-;-1:-1:-1;;;;;36968:13:0;;;;;;:9;:13;;;;;;:46;36911:103;36903:156;;;;-1:-1:-1;;;36903:156:0;;19560:2:1;36903:156:0;;;19542:21:1;19599:2;19579:18;;;19572:30;19638:34;19618:18;;;19611:62;-1:-1:-1;;;19689:18:1;;;19682:38;19737:19;;36903:156:0;19358:404:1;36903:156:0;37092:9;37082:20;;;;:9;:20;;;;;;37105:12;37082:35;;;;-1:-1:-1;;;;;37140:13:0;;;;;;:28;36822:366;37233:19;37223:6;:29;;;;;;;;:::i;:::-;;:58;;;;-1:-1:-1;37270:10:0;;-1:-1:-1;;;;;37256:25:0;;;37270:10;;37256:25;;37223:58;:98;;;;-1:-1:-1;;;;;;37286:35:0;;;;;;:31;:35;;;;;;;;37285:36;37223:98;37219:342;;;37378:12;;37368:6;:22;;37360:76;;;;-1:-1:-1;;;37360:76:0;;20101:2:1;37360:76:0;;;20083:21:1;20140:2;20120:18;;;20113:30;20179:34;20159:18;;;20152:62;-1:-1:-1;;;20230:18:1;;;20223:39;20279:19;;37360:76:0;19899:405:1;37360:76:0;37489:15;;37479:6;37463:13;37473:2;-1:-1:-1;;;;;20605:18:0;20578:7;20605:18;;;;;;;;;;;;20504:127;37463:13;:22;;;;:::i;:::-;:41;;37455:90;;;;-1:-1:-1;;;37455:90:0;;20511:2:1;37455:90:0;;;20493:21:1;20550:2;20530:18;;;20523:30;20589:34;20569:18;;;20562:62;-1:-1:-1;;;20640:18:1;;;20633:34;20684:19;;37455:90:0;20309:400:1;37455:90:0;37603:20;37593:6;:30;;;;;;;;:::i;:::-;;:61;;;;-1:-1:-1;37643:10:0;;-1:-1:-1;;;;;37627:27:0;;;37643:10;;37627:27;;37593:61;:103;;;;-1:-1:-1;;;;;;37659:37:0;;;;;;:31;:37;;;;;;;;37658:38;37593:103;37589:187;;;37716:13;;37706:6;:23;;37698:78;;;;-1:-1:-1;;;37698:78:0;;20916:2:1;37698:78:0;;;20898:21:1;20955:2;20935:18;;;20928:30;20994:34;20974:18;;;20967:62;-1:-1:-1;;;21045:18:1;;;21038:40;21095:19;;37698:78:0;20714:406:1;37698:78:0;-1:-1:-1;;;;;37803:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;37832:23:0;;;;;;:19;:23;;;;;;;;37803:52;:68;;;-1:-1:-1;37860:11:0;;;;;;;37859:12;37803:68;:132;;;-1:-1:-1;37877:19:0;;;;;;;37876:20;:58;;;;-1:-1:-1;37910:24:0;37900:6;:34;;;;;;;;:::i;:::-;;37876:58;37800:152;;;37947:5;37937:15;;37800:152;38009:4;37965:23;20605:18;;;;;;;;;;;37965:50;;38026:12;38060:19;;38042:15;:37;38041:75;;;;-1:-1:-1;38095:20:0;38085:6;:30;;;;;;;;:::i;:::-;;38041:75;38026:90;;38133:7;:22;;;;-1:-1:-1;38144:11:0;;;;;;;38133:22;:36;;;;-1:-1:-1;38160:9:0;;;;;;;38159:10;38133:36;:66;;;;-1:-1:-1;;;;;;38174:25:0;;;;;;:19;:25;;;;;;;;38173:26;38133:66;:94;;;;-1:-1:-1;;;;;;38204:23:0;;;;;;:19;:23;;;;;;;;38203:24;38133:94;38129:216;;;38244:9;:16;;-1:-1:-1;;38244:16:0;;;;;38275:26;38285:15;38275:9;:26::i;:::-;38316:9;:17;;-1:-1:-1;;38316:17:0;;;38129:216;38357:49;38372:4;38378:2;38382:6;38390:7;38399:6;38357:14;:49::i;:::-;36070:2344;;;;35991:2423;;;:::o;40677:170::-;40736:22;;-1:-1:-1;;;;;40736:22:0;:46;40768:13;:6;40779:1;40768:10;:13::i;:::-;40736:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40793:22:0;;-1:-1:-1;;;;;40793:22:0;:46;40825:13;:6;40836:1;40825:10;:13::i;:::-;40793:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40677:170;:::o;6595:191::-;6688:6;;;-1:-1:-1;;;;;6705:17:0;;;-1:-1:-1;;;;;;6705:17:0;;;;;;;6738:40;;6688:6;;;6705:17;6688:6;;6738:40;;6669:16;;6738:40;6658:128;6595:191;:::o;38422:1398::-;38486:25;38515:69;38564:19;;38515:44;38539:19;;38515;;:23;;:44;;;;:::i;:::-;:48;;:69::i;:::-;38486:98;-1:-1:-1;38595:12:0;38632:20;;;:46;;-1:-1:-1;38656:22:0;;38632:46;38628:59;;;38680:7;;38422:1398;:::o;38628:59::-;38721:19;;:26;;38745:1;38721:23;:26::i;:::-;38703:15;:44;38699:94;;;38767:19;;:26;;38791:1;38767:23;:26::i;:::-;38749:44;;38699:94;38806:23;38832:70;38900:1;38832:63;38877:17;38832:40;38852:19;;38832:15;:19;;:40;;;;:::i;:70::-;38806:96;-1:-1:-1;38913:26:0;38942:36;:15;38806:96;38942:19;:36::i;:::-;38913:65;-1:-1:-1;39019:21:0;39053:37;38913:65;39053:17;:37::i;:::-;39111:18;39132:44;:21;39158:17;39132:25;:44::i;:::-;39111:65;;39187:18;39208:58;39248:17;39208:35;39223:19;;39208:10;:14;;:35;;;;:::i;:58::-;39187:79;;39277:17;39297:58;39337:17;39297:35;39312:19;;39297:10;:14;;:35;;;;:::i;:58::-;39277:78;-1:-1:-1;39366:17:0;39386:41;39277:78;39386:26;:10;39401;39386:14;:26::i;:::-;:30;;:41::i;:::-;39470:1;39448:19;:23;;;39482:19;:23;;;39516:19;:23;39366:61;-1:-1:-1;39555:19:0;;;;;:36;;;39590:1;39578:9;:13;39555:36;39552:82;;;39593:41;39607:15;39624:9;39593:13;:41::i;:::-;39668:22;;39660:58;;-1:-1:-1;;;;;39668:22:0;;;;39704:9;;39660:58;;;;39704:9;39668:22;39660:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;39750:22:0;;39742:70;;39647:71;;-1:-1:-1;;;;;;39750:22:0;;39786:21;;39742:70;;;;39786:21;39750:22;39742:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;38422:1398:0:o;49700:334::-;49838:7;49833:87;;49847:15;:13;:15::i;:::-;49833:87;;;49887:33;49897:6;49905;49913;49887:9;:33::i;:::-;49878:42;;49833:87;49933:42;49949:6;49957:9;49968:6;49933:15;:42::i;:::-;50001:7;49996:30;;50010:16;49209:24;;49191:15;:42;49262:24;;49244:15;:42;49315:24;;49297:15;:42;49369:20;;49350:16;:39;49419:19;;49400:16;:38;49468:19;;49449:16;:38;49521:29;;49498:20;:52;49584:29;;49561:20;:52;49647:29;;49624:20;:52;49145:539;50010:16;49700:334;;;;;:::o;9580:98::-;9638:7;9665:5;9669:1;9665;:5;:::i;9961:98::-;10019:7;10046:5;10050:1;10046;:5;:::i;39828:458::-;39920:16;;;39934:1;39920:16;;;;;;;;39896:21;;39920:16;;;;;;;;;;-1:-1:-1;39920:16:0;39896:40;;39965:4;39947;39952:1;39947:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39947:23:0;;;:7;;;;;;;;;;:23;;;;39991:10;;:17;;;-1:-1:-1;;;39991:17:0;;;;:10;;;;;:15;;:17;;;;;39947:7;;39991:17;;;;;:10;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;39981:4;39986:1;39981:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39981:27:0;;;:7;;;;;;;;;:27;40051:10;;40019:57;;40036:4;;40051:10;40064:11;40019:8;:57::i;:::-;40087:10;;:191;;-1:-1:-1;;;40087:191:0;;-1:-1:-1;;;;;40087:10:0;;;;:61;;:191;;40163:11;;40087:10;;40205:4;;40232;;40252:15;;40087:191;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39885:401;39828:458;:::o;40294:367::-;40409:10;;40377:57;;40394:4;;-1:-1:-1;;;;;40409:10:0;40422:11;40377:8;:57::i;:::-;40445:10;;40590:22;;40445:208;;-1:-1:-1;;;40445:208:0;;-1:-1:-1;;;;;40445:10:0;;;;:26;;40479:9;;40445:208;;40512:4;;40532:11;;40445:10;;;;40590:22;;40627:15;;40445:208;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;48023:1110::-;48072:15;;:20;:44;;;;-1:-1:-1;48096:15:0;;:20;48072:44;:68;;;;-1:-1:-1;48120:15:0;;:20;48072:68;:103;;;;-1:-1:-1;48154:16:0;;:21;48072:103;:128;;;;-1:-1:-1;48179:16:0;;:21;48072:128;:153;;;;-1:-1:-1;48204:16:0;;:21;48072:153;:191;;;;-1:-1:-1;48238:20:0;;:25;48072:191;:220;;;;-1:-1:-1;48267:20:0;;:25;48072:220;:249;;;;-1:-1:-1;48296:20:0;;:25;48072:249;48068:262;;;48023:1110::o;48068:262::-;48369:15;;;48342:24;:42;48422:15;;;48395:24;:42;48475:15;;;48448:24;:42;48524:16;;;48501:20;:39;48573:16;;;48551:19;:38;48622:16;;;48600:19;:38;48681:20;;;48649:29;:52;48744:20;;;48712:29;:52;48807:20;;;48775:29;:52;-1:-1:-1;48848:19:0;;;;48878;;;;48908;;;;48938:20;;;;48969;;;;49000;;;49031:24;;;49066;;;49101;48023:1110::o;50042:901::-;50135:7;50199:12;50177:18;;50158:16;;:37;;;;:::i;:::-;:53;50155:326;;50213:13;:11;:13::i;:::-;50155:326;;;50256:20;50246:6;:30;;;;;;;;:::i;:::-;;50242:239;;50278:14;:12;:14::i;50242:239::-;50322:19;50312:6;:29;;;;;;;;:::i;:::-;;50308:173;;50343:13;:11;:13::i;50308:173::-;50386:24;50376:6;:34;;;;;;;;:::i;:::-;;50372:109;;50412:18;:16;:18::i;50372:109::-;50446:35;;-1:-1:-1;;;50446:35:0;;22932:2:1;50446:35:0;;;22914:21:1;22971:2;22951:18;;;22944:30;23010:27;22990:18;;;22983:55;23055:18;;50446:35:0;22730:349:1;50372:109:0;50529:10;;50502:12;;50529:14;50525:306;;50567:39;32113:4;50567:22;50578:10;;50567:6;:10;;:22;;;;:::i;:39::-;50560:46;;50667:10;;50651:13;;50644:4;:20;;;;:::i;:::-;:33;;;;:::i;:::-;50621:19;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;50738:10:0;;50722:13;;50715:20;;:4;:20;:::i;:::-;:33;;;;:::i;:::-;50692:19;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;50809:10:0;;50793:13;;50786:20;;:4;:20;:::i;:::-;:33;;;;:::i;:::-;50763:19;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;;50525:306:0;50847:8;;50843:58;;50857:44;50873:6;50889:4;50896;50857:15;:44::i;:::-;50921:14;50931:4;50921:14;;:::i;:::-;;50042:901;-1:-1:-1;;;;;50042:901:0:o;24696:840::-;-1:-1:-1;;;;;24827:18:0;;24819:68;;;;-1:-1:-1;;;24819:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24906:16:0;;24898:64;;;;-1:-1:-1;;;24898:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;25048:15:0;;25026:19;25048:15;;;;;;;;;;;25082:21;;;;25074:72;;;;-1:-1:-1;;;25074:72:0;;23286:2:1;25074:72:0;;;23268:21:1;23325:2;23305:18;;;23298:30;23364:34;23344:18;;;23337:62;-1:-1:-1;;;23415:18:1;;;23408:36;23461:19;;25074:72:0;23084:402:1;25074:72:0;-1:-1:-1;;;;;25182:15:0;;;:9;:15;;;;;;;;;;;25200:20;;;25182:38;;25400:13;;;;;;;;;;:23;;;;;;25452:26;;1500:25:1;;;25400:13:0;;25452:26;;1473:18:1;25452:26:0;;;;;;;25491:37;46437:303;50951:205;51010:3;50994:13;:19;;;51024:13;:19;;;51054:13;:19;;;51097:51;;:32;51010:3;;51097:17;:32::i;:51::-;51084:10;:64;50951:205::o;51164:245::-;51224:16;;51208:13;:32;;;51267:16;;51251:13;:32;;;51310:16;;51294:13;:32;;;51350:51;;51310:16;;51350:32;;51224:16;51350:17;:32::i;51417:241::-;51476:15;;51460:13;:31;;;51518:15;;51502:13;:31;;;51560:15;;51544:13;:31;;;51599:51;;51560:15;;51599:32;;51476:15;51599:17;:32::i;51666:261::-;51730:20;;51714:13;:36;;;51777:20;;51761:13;:36;;;51824:20;;51808:13;:36;;;51868:51;;51824:20;;51868:32;;51730:20;51868:17;:32::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;:::-;703:134;;;:::o;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1536:127::-;1597:10;1592:3;1588:20;1585:1;1578:31;1628:4;1625:1;1618:15;1652:4;1649:1;1642:15;1668:118;1754:5;1747:13;1740:21;1733:5;1730:32;1720:60;;1776:1;1773;1766:12;1791:128;1856:20;;1885:28;1856:20;1885:28;:::i;1924:1191::-;2014:6;2022;2075:2;2063:9;2054:7;2050:23;2046:32;2043:52;;;2091:1;2088;2081:12;2043:52;2131:9;2118:23;2160:18;2201:2;2193:6;2190:14;2187:34;;;2217:1;2214;2207:12;2187:34;2255:6;2244:9;2240:22;2230:32;;2300:7;2293:4;2289:2;2285:13;2281:27;2271:55;;2322:1;2319;2312:12;2271:55;2358:2;2345:16;2380:4;2403:2;2399;2396:10;2393:36;;;2409:18;;:::i;:::-;2455:2;2452:1;2448:10;2487:2;2481:9;2550:2;2546:7;2541:2;2537;2533:11;2529:25;2521:6;2517:38;2605:6;2593:10;2590:22;2585:2;2573:10;2570:18;2567:46;2564:72;;;2616:18;;:::i;:::-;2652:2;2645:22;2702:18;;;2736:15;;;;-1:-1:-1;2778:11:1;;;2774:20;;;2806:19;;;2803:39;;;2838:1;2835;2828:12;2803:39;2862:11;;;;2882:148;2898:6;2893:3;2890:15;2882:148;;;2964:23;2983:3;2964:23;:::i;:::-;2952:36;;2915:12;;;;3008;;;;2882:148;;;3049:6;-1:-1:-1;3074:35:1;;-1:-1:-1;3090:18:1;;;3074:35;:::i;:::-;3064:45;;;;;;1924:1191;;;;;:::o;3120:180::-;3179:6;3232:2;3220:9;3211:7;3207:23;3203:32;3200:52;;;3248:1;3245;3238:12;3200:52;-1:-1:-1;3271:23:1;;3120:180;-1:-1:-1;3120:180:1:o;3305:316::-;3382:6;3390;3398;3451:2;3439:9;3430:7;3426:23;3422:32;3419:52;;;3467:1;3464;3457:12;3419:52;-1:-1:-1;;3490:23:1;;;3560:2;3545:18;;3532:32;;-1:-1:-1;3611:2:1;3596:18;;;3583:32;;3305:316;-1:-1:-1;3305:316:1:o;3626:456::-;3703:6;3711;3719;3772:2;3760:9;3751:7;3747:23;3743:32;3740:52;;;3788:1;3785;3778:12;3740:52;3827:9;3814:23;3846:31;3871:5;3846:31;:::i;:::-;3896:5;-1:-1:-1;3953:2:1;3938:18;;3925:32;3966:33;3925:32;3966:33;:::i;:::-;3626:456;;4018:7;;-1:-1:-1;;;4072:2:1;4057:18;;;;4044:32;;3626:456::o;4087:247::-;4146:6;4199:2;4187:9;4178:7;4174:23;4170:32;4167:52;;;4215:1;4212;4205:12;4167:52;4254:9;4241:23;4273:31;4298:5;4273:31;:::i;4528:241::-;4584:6;4637:2;4625:9;4616:7;4612:23;4608:32;4605:52;;;4653:1;4650;4643:12;4605:52;4692:9;4679:23;4711:28;4733:5;4711:28;:::i;5206:388::-;5274:6;5282;5335:2;5323:9;5314:7;5310:23;5306:32;5303:52;;;5351:1;5348;5341:12;5303:52;5390:9;5377:23;5409:31;5434:5;5409:31;:::i;:::-;5459:5;-1:-1:-1;5516:2:1;5501:18;;5488:32;5529:33;5488:32;5529:33;:::i;:::-;5581:7;5571:17;;;5206:388;;;;;:::o;5599:380::-;5678:1;5674:12;;;;5721;;;5742:61;;5796:4;5788:6;5784:17;5774:27;;5742:61;5849:2;5841:6;5838:14;5818:18;5815:38;5812:161;;5895:10;5890:3;5886:20;5883:1;5876:31;5930:4;5927:1;5920:15;5958:4;5955:1;5948:15;5812:161;;5599:380;;;:::o;5984:127::-;6045:10;6040:3;6036:20;6033:1;6026:31;6076:4;6073:1;6066:15;6100:4;6097:1;6090:15;6116:127;6177:10;6172:3;6168:20;6165:1;6158:31;6208:4;6205:1;6198:15;6232:4;6229:1;6222:15;6248:135;6287:3;6308:17;;;6305:43;;6328:18;;:::i;:::-;-1:-1:-1;6375:1:1;6364:13;;6248:135::o;7891:125::-;7956:9;;;7977:10;;;7974:36;;;7990:18;;:::i;10772:251::-;10842:6;10895:2;10883:9;10874:7;10870:23;10866:32;10863:52;;;10911:1;10908;10901:12;10863:52;10943:9;10937:16;10962:31;10987:5;10962:31;:::i;11337:607::-;-1:-1:-1;;;;;11696:15:1;;;11678:34;;11743:2;11728:18;;11721:34;;;;11786:2;11771:18;;11764:34;;;;11829:2;11814:18;;11807:34;;;;11878:15;;;11872:3;11857:19;;11850:44;11658:3;11910:19;;11903:35;;;;11627:3;11612:19;;11337:607::o;11949:306::-;12037:6;12045;12053;12106:2;12094:9;12085:7;12081:23;12077:32;12074:52;;;12122:1;12119;12112:12;12074:52;12151:9;12145:16;12135:26;;12201:2;12190:9;12186:18;12180:25;12170:35;;12245:2;12234:9;12230:18;12224:25;12214:35;;11949:306;;;;;:::o;12539:245::-;12606:6;12659:2;12647:9;12638:7;12634:23;12630:32;12627:52;;;12675:1;12672;12665:12;12627:52;12707:9;12701:16;12726:28;12748:5;12726:28;:::i;13042:168::-;13115:9;;;13146;;13163:15;;;13157:22;;13143:37;13133:71;;13184:18;;:::i;15033:184::-;15103:6;15156:2;15144:9;15135:7;15131:23;15127:32;15124:52;;;15172:1;15169;15162:12;15124:52;-1:-1:-1;15195:16:1;;15033:184;-1:-1:-1;15033:184:1:o;15559:217::-;15599:1;15625;15615:132;;15669:10;15664:3;15660:20;15657:1;15650:31;15704:4;15701:1;15694:15;15732:4;15729:1;15722:15;15615:132;-1:-1:-1;15761:9:1;;15559:217::o;17308:401::-;17510:2;17492:21;;;17549:2;17529:18;;;17522:30;17588:34;17583:2;17568:18;;17561:62;-1:-1:-1;;;17654:2:1;17639:18;;17632:35;17699:3;17684:19;;17308:401::o;17714:399::-;17916:2;17898:21;;;17955:2;17935:18;;;17928:30;17994:34;17989:2;17974:18;;17967:62;-1:-1:-1;;;18060:2:1;18045:18;;18038:33;18103:3;18088:19;;17714:399::o;19225:128::-;19292:9;;;19313:11;;;19310:37;;;19327:18;;:::i;19767:127::-;19828:10;19823:3;19819:20;19816:1;19809:31;19859:4;19856:1;19849:15;19883:4;19880:1;19873:15;21125:980;21387:4;21435:3;21424:9;21420:19;21466:6;21455:9;21448:25;21492:2;21530:6;21525:2;21514:9;21510:18;21503:34;21573:3;21568:2;21557:9;21553:18;21546:31;21597:6;21632;21626:13;21663:6;21655;21648:22;21701:3;21690:9;21686:19;21679:26;;21740:2;21732:6;21728:15;21714:29;;21761:1;21771:195;21785:6;21782:1;21779:13;21771:195;;;21850:13;;-1:-1:-1;;;;;21846:39:1;21834:52;;21941:15;;;;21906:12;;;;21882:1;21800:9;21771:195;;;-1:-1:-1;;;;;;;22022:32:1;;;;22017:2;22002:18;;21995:60;-1:-1:-1;;;22086:3:1;22071:19;22064:35;21983:3;21125:980;-1:-1:-1;;;21125:980:1:o

Swarm Source

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