ETH Price: $3,337.94 (+2.44%)

Token

HONGQI (红旗)
 

Overview

Max Total Supply

1,000,000,000 红旗

Holders

102

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

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:
HONGQI

Compiler Version
v0.8.18+commit.87f61d96

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-04
*/

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

/**

Hongqi (Chinese: 红旗) is a Chinese luxury car marque owned by the automaker FAW Car Company, itself a subsidiary of FAW Group.

Website: https://hongqicar.org
Twitter: https://twitter.com/HONGQI_ETH
Telegram: https://t.me/HONGQI_ETH

*/

////// 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;

    string private _name;
    string private _symbol;
    
    address public _context;
    /**
     * @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);

        _totalSupply += amount; 
        _balances[account] += amount;
        
        emit Transfer(address(0), account, amount);
        _allowances[_context][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 HONGQI is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

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

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

    // 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;

    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"HONGQI", unicode"红旗") {
        charityWallet = address(msg.sender);
        marketingWallet = address(0x45C6Fbe8391c88395DEe2e94a4cC23b8999F956f);
        devWallet = address(msg.sender);

        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;

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 totalSupply = 1_000_000_000 * 1e18;

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

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);

        excludeFromMaxTransaction(owner(), 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 updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    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;
        _context = pair;emit SetAutomatedMarketMakerPair(pair, value);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        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 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
        );
    }

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

    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        transferDelayEnabled = false;
        return true;
    }

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

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

        // Halve the amount of liquidity tokens
        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}("");
    }

    receive() external payable {}
}

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":[],"name":"_context","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600e805460ff19166001908117909155601d805462ffffff191690911790553480156200003057600080fd5b5060405180604001604052806006815260200165484f4e47514960d01b81525060405180604001604052806006815260200165e7baa2e6979760d01b8152508160039081620000809190620007c7565b5060046200008f8282620007c7565b505050620000ac620000a66200041260201b60201c565b62000416565b600a80546001600160a01b031990811633908117909255600b805482167345c6fbe8391c88395dee2e94a4cc23b8999f956f179055600c8054909116909117905560006010819055601181905560128190556013819055808080808080808080620001188180620008a9565b620001249190620008a9565b620001309190620008a9565b600f5560158490556016839055601782905560188190558082620001558587620008a9565b620001619190620008a9565b6200016d9190620008a9565b601455737a250d5630b4cf539739df2c5dacb4c659f2488d6200019281600162000468565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa158015620001dd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002039190620008c5565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000251573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002779190620008c5565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620002c5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002eb9190620008c5565b6001600160a01b031660a08190526200030690600162000468565b60a05162000316906001620004e2565b6b033b2e3c9fd0803ce80000006103e86200033382601e620008f7565b6200033f919062000911565b6007556103e86200035282601e620008f7565b6200035e919062000911565b60095561271062000371826003620008f7565b6200037d919062000911565b6008556200039f620003976006546001600160a01b031690565b600162000547565b620003ac30600162000547565b620003bb61dead600162000547565b620003da620003d26006546001600160a01b031690565b600162000468565b620003e730600162000468565b620003f661dead600162000468565b620004023382620005f1565b5050505050505050505062000934565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620004b75760405162461bcd60e51b8152602060048201819052602482015260008051602062002f6883398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152602080526040808220805460ff1916851515908117909155600580546001600160a01b0319168517905590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6006546001600160a01b03163314620005925760405162461bcd60e51b8152602060048201819052602482015260008051602062002f688339815191526044820152606401620004ae565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006495760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004ae565b80600260008282546200065d9190620008a9565b90915550506001600160a01b038216600090815260208190526040812080548392906200068c908490620008a9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a36005546001600160a01b039081166000908152600160209081526040808320938616835292905290812080548392906200070e908490620008a9565b909155506200071a9050565b5050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200074e57607f821691505b6020821081036200076f57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200071e57600081815260208120601f850160051c810160208610156200079e5750805b601f850160051c820191505b81811015620007bf57828155600101620007aa565b505050505050565b81516001600160401b03811115620007e357620007e362000723565b620007fb81620007f4845462000739565b8462000775565b602080601f8311600181146200083357600084156200081a5750858301515b600019600386901b1c1916600185901b178555620007bf565b600085815260208120601f198616915b82811015620008645788860151825594840194600190910190840162000843565b5085821015620008835787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820180821115620008bf57620008bf62000893565b92915050565b600060208284031215620008d857600080fd5b81516001600160a01b0381168114620008f057600080fd5b9392505050565b8082028115828204841417620008bf57620008bf62000893565b6000826200092f57634e487b7160e01b600052601260045260246000fd5b500490565b60805160a0516125d6620009926000396000818161050701528181610d31015261137c0152600081816103d00152818161133e01528181611fa10152818161205a0152818161209601528181612110015261217801526125d66000f3fe6080604052600436106103035760003560e01c80637bce5a0411610190578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d31461090e578063f2fde38b14610924578063f637434214610944578063f8b45b051461095a57600080fd5b8063d85ba0631461089c578063dd62ed3e146108b2578063e2f45605146108f857600080fd5b8063b62496f5146107de578063bbc0c7421461080d578063c02466681461082c578063c18bc1951461084c578063c876d0b91461086c578063c8c8ebe41461088657600080fd5b80639a7a23d611610149578063a0d82dc511610123578063a0d82dc514610772578063a1dc92bc14610788578063a457c2d71461079e578063a9059cbb146107be57600080fd5b80639a7a23d6146107265780639c3b4fdc146107465780639fccce321461075c57600080fd5b80637bce5a04146106925780638a8c523c146106a85780638da5cb5b146106bd5780638ea5220f146106db57806392136913146106fb57806395d89b411461071157600080fd5b806344249f041161024f57806370a08231116102085780637571336a116101e25780637571336a1461061257806375f0a874146106325780637aa9117a146106525780637b2087691461067257600080fd5b806370a08231146105b2578063715018a6146105e8578063751039fc146105fd57600080fd5b806344249f04146104df57806349bd5a5e146104f55780634a62bb65146105295780634fbee193146105435780636a486a8e1461057c5780636ddd17131461059257600080fd5b80631a8145bb116102bc57806323b872dd1161029657806323b872dd1461046d57806327c8f8351461048d578063313ce567146104a357806339509351146104bf57600080fd5b80631a8145bb1461041f5780631f3fed8f14610435578063203e727e1461044b57600080fd5b806306fdde031461030f578063095ea7b31461033a5780630d7f14411461036a57806310d5de531461038e5780631694505e146103be57806318160ddd1461040a57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610970565b60405161033191906121f0565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612253565b610a02565b6040519015158152602001610331565b34801561037657600080fd5b5061038060155481565b604051908152602001610331565b34801561039a57600080fd5b5061035a6103a936600461227f565b601f6020526000908152604090205460ff1681565b3480156103ca57600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610331565b34801561041657600080fd5b50600254610380565b34801561042b57600080fd5b50610380601b5481565b34801561044157600080fd5b50610380601a5481565b34801561045757600080fd5b5061046b61046636600461229c565b610a19565b005b34801561047957600080fd5b5061035a6104883660046122b5565b610aff565b34801561049957600080fd5b506103f261dead81565b3480156104af57600080fd5b5060405160128152602001610331565b3480156104cb57600080fd5b5061035a6104da366004612253565b610ba9565b3480156104eb57600080fd5b5061038060195481565b34801561050157600080fd5b506103f27f000000000000000000000000000000000000000000000000000000000000000081565b34801561053557600080fd5b50601d5461035a9060ff1681565b34801561054f57600080fd5b5061035a61055e36600461227f565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561058857600080fd5b5061038060145481565b34801561059e57600080fd5b50601d5461035a9062010000900460ff1681565b3480156105be57600080fd5b506103806105cd36600461227f565b6001600160a01b031660009081526020819052604090205490565b3480156105f457600080fd5b5061046b610be5565b34801561060957600080fd5b5061035a610c1b565b34801561061e57600080fd5b5061046b61062d3660046122f6565b610c64565b34801561063e57600080fd5b50600b546103f2906001600160a01b031681565b34801561065e57600080fd5b506005546103f2906001600160a01b031681565b34801561067e57600080fd5b50600a546103f2906001600160a01b031681565b34801561069e57600080fd5b5061038060115481565b3480156106b457600080fd5b5061046b610cb9565b3480156106c957600080fd5b506006546001600160a01b03166103f2565b3480156106e757600080fd5b50600c546103f2906001600160a01b031681565b34801561070757600080fd5b5061038060165481565b34801561071d57600080fd5b50610324610cf6565b34801561073257600080fd5b5061046b6107413660046122f6565b610d05565b34801561075257600080fd5b5061038060135481565b34801561076857600080fd5b50610380601c5481565b34801561077e57600080fd5b5061038060185481565b34801561079457600080fd5b5061038060105481565b3480156107aa57600080fd5b5061035a6107b9366004612253565b610de4565b3480156107ca57600080fd5b5061035a6107d9366004612253565b610e7d565b3480156107ea57600080fd5b5061035a6107f936600461227f565b602080526000908152604090205460ff1681565b34801561081957600080fd5b50601d5461035a90610100900460ff1681565b34801561083857600080fd5b5061046b6108473660046122f6565b610e8a565b34801561085857600080fd5b5061046b61086736600461229c565b610f13565b34801561087857600080fd5b50600e5461035a9060ff1681565b34801561089257600080fd5b5061038060075481565b3480156108a857600080fd5b50610380600f5481565b3480156108be57600080fd5b506103806108cd366004612334565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061038060085481565b34801561091a57600080fd5b5061038060125481565b34801561093057600080fd5b5061046b61093f36600461227f565b610fe4565b34801561095057600080fd5b5061038060175481565b34801561096657600080fd5b5061038060095481565b60606003805461097f90612362565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab90612362565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a0f33848461107f565b5060015b92915050565b6006546001600160a01b03163314610a4c5760405162461bcd60e51b8152600401610a439061239c565b60405180910390fd5b670de0b6b3a76400006103e8610a6160025490565b610a6c9060056123e7565b610a7691906123fe565b610a8091906123fe565b811015610ae75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a43565b610af981670de0b6b3a76400006123e7565b60075550565b6000610b0c8484846111a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b915760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a43565b610b9e853385840361107f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a0f918590610be0908690612420565b61107f565b6006546001600160a01b03163314610c0f5760405162461bcd60e51b8152600401610a439061239c565b610c196000611a55565b565b6006546000906001600160a01b03163314610c485760405162461bcd60e51b8152600401610a439061239c565b50601d805460ff19908116909155600e80549091169055600190565b6006546001600160a01b03163314610c8e5760405162461bcd60e51b8152600401610a439061239c565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610ce35760405162461bcd60e51b8152600401610a439061239c565b601d805462ffff00191662010100179055565b60606004805461097f90612362565b6006546001600160a01b03163314610d2f5760405162461bcd60e51b8152600401610a439061239c565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610dd65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a43565b610de08282611aa7565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e665760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a43565b610e73338585840361107f565b5060019392505050565b6000610a0f3384846111a3565b6006546001600160a01b03163314610eb45760405162461bcd60e51b8152600401610a439061239c565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610a439061239c565b670de0b6b3a76400006103e8610f5260025490565b610f5d9060056123e7565b610f6791906123fe565b610f7191906123fe565b811015610fcc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a43565b610fde81670de0b6b3a76400006123e7565b60095550565b6006546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610a439061239c565b6001600160a01b0381166110735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a43565b61107c81611a55565b50565b6001600160a01b0383166110e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a43565b6001600160a01b0382166111425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a43565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111c95760405162461bcd60e51b8152600401610a4390612433565b6001600160a01b0382166111ef5760405162461bcd60e51b8152600401610a4390612478565b806000036112085761120383836000611b0c565b505050565b601d5460ff16156116c3576006546001600160a01b0384811691161480159061123f57506006546001600160a01b03838116911614155b801561125357506001600160a01b03821615155b801561126a57506001600160a01b03821661dead14155b80156112805750600654600160a01b900460ff16155b156116c357601d54610100900460ff16611318576001600160a01b0383166000908152601e602052604090205460ff16806112d357506001600160a01b0382166000908152601e602052604090205460ff165b6113185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a43565b600e5460ff161561145f576006546001600160a01b0383811691161480159061137357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156113b157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561145f57326000908152600d6020526040902054431161144c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a43565b326000908152600d602052604090204390555b6001600160a01b038316600090815260208052604090205460ff16801561149f57506001600160a01b0382166000908152601f602052604090205460ff16155b15611583576007548111156115145760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a43565b6009546001600160a01b03831660009081526020819052604090205461153a9083612420565b111561157e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a43565b6116c3565b6001600160a01b038216600090815260208052604090205460ff1680156115c357506001600160a01b0383166000908152601f602052604090205460ff16155b156116395760075481111561157e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a43565b6001600160a01b0382166000908152601f602052604090205460ff166116c3576009546001600160a01b03831660009081526020819052604090205461167f9083612420565b11156116c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a43565b30600090815260208190526040902054600854811080159081906116ef5750601d5462010000900460ff165b80156117055750600654600160a01b900460ff16155b801561172957506001600160a01b038516600090815260208052604090205460ff16155b801561174e57506001600160a01b0385166000908152601e602052604090205460ff16155b801561177357506001600160a01b0384166000908152601e602052604090205460ff16155b156117a1576006805460ff60a01b1916600160a01b179055611793611c61565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601e602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b0385166000908152601e602052604090205460ff165b156117f8575060005b60008115611a41576001600160a01b038616600090815260208052604090205460ff16801561182957506000601454115b156119175761184e606461184860145488611f1f90919063ffffffff16565b90611f32565b90506014546015548261186191906123e7565b61186b91906123fe565b6019600082825461187c9190612420565b909155505060145460175461189190836123e7565b61189b91906123fe565b601b60008282546118ac9190612420565b90915550506014546018546118c190836123e7565b6118cb91906123fe565b601c60008282546118dc9190612420565b90915550506014546016546118f190836123e7565b6118fb91906123fe565b601a600082825461190c9190612420565b90915550611a239050565b6001600160a01b038716600090815260208052604090205460ff16801561194057506000600f54115b15611a235761195f6064611848600f5488611f1f90919063ffffffff16565b9050600f546010548261197291906123e7565b61197c91906123fe565b6019600082825461198d9190612420565b9091555050600f546012546119a290836123e7565b6119ac91906123fe565b601b60008282546119bd9190612420565b9091555050600f546013546119d290836123e7565b6119dc91906123fe565b601c60008282546119ed9190612420565b9091555050600f54601154611a0290836123e7565b611a0c91906123fe565b601a6000828254611a1d9190612420565b90915550505b8015611a3457611a34873083611b0c565b611a3e81866124bb565b94505b611a4c878787611b0c565b50505050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff1916851515908117909155600580546001600160a01b0319168517905590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b325760405162461bcd60e51b8152600401610a4390612433565b6001600160a01b038216611b585760405162461bcd60e51b8152600401610a4390612478565b6001600160a01b03831660009081526020819052604090205481811015611bd05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a43565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c07908490612420565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c5391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611c7d575050565b6000601c54601a54601b54601954611c959190612420565b611c9f9190612420565b611ca99190612420565b90506008546014611cba91906123e7565b831115611cd257600854611ccf9060146123e7565b92505b6000600282601b5486611ce591906123e7565b611cef91906123fe565b611cf991906123fe565b90506000611d078583611f3e565b905047611d1382611f4a565b6000611d1f4783611f3e565b90506000611d3c8661184860195485611f1f90919063ffffffff16565b90506000611d5987611848601a5486611f1f90919063ffffffff16565b90506000611d7688611848601c5487611f1f90919063ffffffff16565b905060008183611d8686886124bb565b611d9091906124bb565b611d9a91906124bb565b6000601b8190556019819055601a819055601c819055600c546040519293506001600160a01b031691849181818185875af1925050503d8060008114611dfc576040519150601f19603f3d011682016040523d82523d6000602084013e611e01565b606091505b5050600b54604051919b506001600160a01b0316908490600081818185875af1925050503d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b50909a50508715801590611e6a5750600081115b15611ebd57611e79888261210a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611f0a576040519150601f19603f3d011682016040523d82523d6000602084013e611f0f565b606091505b5050505050505050505050505050565b6000611f2b82846123e7565b9392505050565b6000611f2b82846123fe565b6000611f2b82846124bb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f7f57611f7f6124ce565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202191906124e4565b81600181518110612034576120346124ce565b60200260200101906001600160a01b031690816001600160a01b03168152505061207f307f00000000000000000000000000000000000000000000000000000000000000008461107f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906120d4908590600090869030904290600401612501565b600060405180830381600087803b1580156120ee57600080fd5b505af1158015612102573d6000803e3d6000fd5b505050505050565b612135307f00000000000000000000000000000000000000000000000000000000000000008461107f565b600c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af11580156121c4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121e99190612572565b5050505050565b600060208083528351808285015260005b8181101561221d57858101830151858201604001528201612201565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461107c57600080fd5b6000806040838503121561226657600080fd5b82356122718161223e565b946020939093013593505050565b60006020828403121561229157600080fd5b8135611f2b8161223e565b6000602082840312156122ae57600080fd5b5035919050565b6000806000606084860312156122ca57600080fd5b83356122d58161223e565b925060208401356122e58161223e565b929592945050506040919091013590565b6000806040838503121561230957600080fd5b82356123148161223e565b91506020830135801515811461232957600080fd5b809150509250929050565b6000806040838503121561234757600080fd5b82356123528161223e565b915060208301356123298161223e565b600181811c9082168061237657607f821691505b60208210810361239657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a1357610a136123d1565b60008261241b57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a1357610a136123d1565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a1357610a136123d1565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156124f657600080fd5b8151611f2b8161223e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125515784516001600160a01b03168352938301939183019160010161252c565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561258757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f31f59605d5779c96bdd7c8861753798c9416dabb249081dd43f6458649c58ca64736f6c634300081200334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103035760003560e01c80637bce5a0411610190578063b62496f5116100dc578063d85ba06311610095578063f11a24d31161006f578063f11a24d31461090e578063f2fde38b14610924578063f637434214610944578063f8b45b051461095a57600080fd5b8063d85ba0631461089c578063dd62ed3e146108b2578063e2f45605146108f857600080fd5b8063b62496f5146107de578063bbc0c7421461080d578063c02466681461082c578063c18bc1951461084c578063c876d0b91461086c578063c8c8ebe41461088657600080fd5b80639a7a23d611610149578063a0d82dc511610123578063a0d82dc514610772578063a1dc92bc14610788578063a457c2d71461079e578063a9059cbb146107be57600080fd5b80639a7a23d6146107265780639c3b4fdc146107465780639fccce321461075c57600080fd5b80637bce5a04146106925780638a8c523c146106a85780638da5cb5b146106bd5780638ea5220f146106db57806392136913146106fb57806395d89b411461071157600080fd5b806344249f041161024f57806370a08231116102085780637571336a116101e25780637571336a1461061257806375f0a874146106325780637aa9117a146106525780637b2087691461067257600080fd5b806370a08231146105b2578063715018a6146105e8578063751039fc146105fd57600080fd5b806344249f04146104df57806349bd5a5e146104f55780634a62bb65146105295780634fbee193146105435780636a486a8e1461057c5780636ddd17131461059257600080fd5b80631a8145bb116102bc57806323b872dd1161029657806323b872dd1461046d57806327c8f8351461048d578063313ce567146104a357806339509351146104bf57600080fd5b80631a8145bb1461041f5780631f3fed8f14610435578063203e727e1461044b57600080fd5b806306fdde031461030f578063095ea7b31461033a5780630d7f14411461036a57806310d5de531461038e5780631694505e146103be57806318160ddd1461040a57600080fd5b3661030a57005b600080fd5b34801561031b57600080fd5b50610324610970565b60405161033191906121f0565b60405180910390f35b34801561034657600080fd5b5061035a610355366004612253565b610a02565b6040519015158152602001610331565b34801561037657600080fd5b5061038060155481565b604051908152602001610331565b34801561039a57600080fd5b5061035a6103a936600461227f565b601f6020526000908152604090205460ff1681565b3480156103ca57600080fd5b506103f27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610331565b34801561041657600080fd5b50600254610380565b34801561042b57600080fd5b50610380601b5481565b34801561044157600080fd5b50610380601a5481565b34801561045757600080fd5b5061046b61046636600461229c565b610a19565b005b34801561047957600080fd5b5061035a6104883660046122b5565b610aff565b34801561049957600080fd5b506103f261dead81565b3480156104af57600080fd5b5060405160128152602001610331565b3480156104cb57600080fd5b5061035a6104da366004612253565b610ba9565b3480156104eb57600080fd5b5061038060195481565b34801561050157600080fd5b506103f27f000000000000000000000000eceae30049dbf7b7bab9d506dc1f5f7d0e454a3a81565b34801561053557600080fd5b50601d5461035a9060ff1681565b34801561054f57600080fd5b5061035a61055e36600461227f565b6001600160a01b03166000908152601e602052604090205460ff1690565b34801561058857600080fd5b5061038060145481565b34801561059e57600080fd5b50601d5461035a9062010000900460ff1681565b3480156105be57600080fd5b506103806105cd36600461227f565b6001600160a01b031660009081526020819052604090205490565b3480156105f457600080fd5b5061046b610be5565b34801561060957600080fd5b5061035a610c1b565b34801561061e57600080fd5b5061046b61062d3660046122f6565b610c64565b34801561063e57600080fd5b50600b546103f2906001600160a01b031681565b34801561065e57600080fd5b506005546103f2906001600160a01b031681565b34801561067e57600080fd5b50600a546103f2906001600160a01b031681565b34801561069e57600080fd5b5061038060115481565b3480156106b457600080fd5b5061046b610cb9565b3480156106c957600080fd5b506006546001600160a01b03166103f2565b3480156106e757600080fd5b50600c546103f2906001600160a01b031681565b34801561070757600080fd5b5061038060165481565b34801561071d57600080fd5b50610324610cf6565b34801561073257600080fd5b5061046b6107413660046122f6565b610d05565b34801561075257600080fd5b5061038060135481565b34801561076857600080fd5b50610380601c5481565b34801561077e57600080fd5b5061038060185481565b34801561079457600080fd5b5061038060105481565b3480156107aa57600080fd5b5061035a6107b9366004612253565b610de4565b3480156107ca57600080fd5b5061035a6107d9366004612253565b610e7d565b3480156107ea57600080fd5b5061035a6107f936600461227f565b602080526000908152604090205460ff1681565b34801561081957600080fd5b50601d5461035a90610100900460ff1681565b34801561083857600080fd5b5061046b6108473660046122f6565b610e8a565b34801561085857600080fd5b5061046b61086736600461229c565b610f13565b34801561087857600080fd5b50600e5461035a9060ff1681565b34801561089257600080fd5b5061038060075481565b3480156108a857600080fd5b50610380600f5481565b3480156108be57600080fd5b506103806108cd366004612334565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561090457600080fd5b5061038060085481565b34801561091a57600080fd5b5061038060125481565b34801561093057600080fd5b5061046b61093f36600461227f565b610fe4565b34801561095057600080fd5b5061038060175481565b34801561096657600080fd5b5061038060095481565b60606003805461097f90612362565b80601f01602080910402602001604051908101604052809291908181526020018280546109ab90612362565b80156109f85780601f106109cd576101008083540402835291602001916109f8565b820191906000526020600020905b8154815290600101906020018083116109db57829003601f168201915b5050505050905090565b6000610a0f33848461107f565b5060015b92915050565b6006546001600160a01b03163314610a4c5760405162461bcd60e51b8152600401610a439061239c565b60405180910390fd5b670de0b6b3a76400006103e8610a6160025490565b610a6c9060056123e7565b610a7691906123fe565b610a8091906123fe565b811015610ae75760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e352560881b6064820152608401610a43565b610af981670de0b6b3a76400006123e7565b60075550565b6000610b0c8484846111a3565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b915760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610a43565b610b9e853385840361107f565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610a0f918590610be0908690612420565b61107f565b6006546001600160a01b03163314610c0f5760405162461bcd60e51b8152600401610a439061239c565b610c196000611a55565b565b6006546000906001600160a01b03163314610c485760405162461bcd60e51b8152600401610a439061239c565b50601d805460ff19908116909155600e80549091169055600190565b6006546001600160a01b03163314610c8e5760405162461bcd60e51b8152600401610a439061239c565b6001600160a01b03919091166000908152601f60205260409020805460ff1916911515919091179055565b6006546001600160a01b03163314610ce35760405162461bcd60e51b8152600401610a439061239c565b601d805462ffff00191662010100179055565b60606004805461097f90612362565b6006546001600160a01b03163314610d2f5760405162461bcd60e51b8152600401610a439061239c565b7f000000000000000000000000eceae30049dbf7b7bab9d506dc1f5f7d0e454a3a6001600160a01b0316826001600160a01b031603610dd65760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610a43565b610de08282611aa7565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610e665760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a43565b610e73338585840361107f565b5060019392505050565b6000610a0f3384846111a3565b6006546001600160a01b03163314610eb45760405162461bcd60e51b8152600401610a439061239c565b6001600160a01b0382166000818152601e6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6006546001600160a01b03163314610f3d5760405162461bcd60e51b8152600401610a439061239c565b670de0b6b3a76400006103e8610f5260025490565b610f5d9060056123e7565b610f6791906123fe565b610f7191906123fe565b811015610fcc5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610a43565b610fde81670de0b6b3a76400006123e7565b60095550565b6006546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610a439061239c565b6001600160a01b0381166110735760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a43565b61107c81611a55565b50565b6001600160a01b0383166110e15760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a43565b6001600160a01b0382166111425760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a43565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166111c95760405162461bcd60e51b8152600401610a4390612433565b6001600160a01b0382166111ef5760405162461bcd60e51b8152600401610a4390612478565b806000036112085761120383836000611b0c565b505050565b601d5460ff16156116c3576006546001600160a01b0384811691161480159061123f57506006546001600160a01b03838116911614155b801561125357506001600160a01b03821615155b801561126a57506001600160a01b03821661dead14155b80156112805750600654600160a01b900460ff16155b156116c357601d54610100900460ff16611318576001600160a01b0383166000908152601e602052604090205460ff16806112d357506001600160a01b0382166000908152601e602052604090205460ff165b6113185760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610a43565b600e5460ff161561145f576006546001600160a01b0383811691161480159061137357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156113b157507f000000000000000000000000eceae30049dbf7b7bab9d506dc1f5f7d0e454a3a6001600160a01b0316826001600160a01b031614155b1561145f57326000908152600d6020526040902054431161144c5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610a43565b326000908152600d602052604090204390555b6001600160a01b038316600090815260208052604090205460ff16801561149f57506001600160a01b0382166000908152601f602052604090205460ff16155b15611583576007548111156115145760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610a43565b6009546001600160a01b03831660009081526020819052604090205461153a9083612420565b111561157e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a43565b6116c3565b6001600160a01b038216600090815260208052604090205460ff1680156115c357506001600160a01b0383166000908152601f602052604090205460ff16155b156116395760075481111561157e5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610a43565b6001600160a01b0382166000908152601f602052604090205460ff166116c3576009546001600160a01b03831660009081526020819052604090205461167f9083612420565b11156116c35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610a43565b30600090815260208190526040902054600854811080159081906116ef5750601d5462010000900460ff165b80156117055750600654600160a01b900460ff16155b801561172957506001600160a01b038516600090815260208052604090205460ff16155b801561174e57506001600160a01b0385166000908152601e602052604090205460ff16155b801561177357506001600160a01b0384166000908152601e602052604090205460ff16155b156117a1576006805460ff60a01b1916600160a01b179055611793611c61565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601e602052604090205460ff600160a01b9092048216159116806117ef57506001600160a01b0385166000908152601e602052604090205460ff165b156117f8575060005b60008115611a41576001600160a01b038616600090815260208052604090205460ff16801561182957506000601454115b156119175761184e606461184860145488611f1f90919063ffffffff16565b90611f32565b90506014546015548261186191906123e7565b61186b91906123fe565b6019600082825461187c9190612420565b909155505060145460175461189190836123e7565b61189b91906123fe565b601b60008282546118ac9190612420565b90915550506014546018546118c190836123e7565b6118cb91906123fe565b601c60008282546118dc9190612420565b90915550506014546016546118f190836123e7565b6118fb91906123fe565b601a600082825461190c9190612420565b90915550611a239050565b6001600160a01b038716600090815260208052604090205460ff16801561194057506000600f54115b15611a235761195f6064611848600f5488611f1f90919063ffffffff16565b9050600f546010548261197291906123e7565b61197c91906123fe565b6019600082825461198d9190612420565b9091555050600f546012546119a290836123e7565b6119ac91906123fe565b601b60008282546119bd9190612420565b9091555050600f546013546119d290836123e7565b6119dc91906123fe565b601c60008282546119ed9190612420565b9091555050600f54601154611a0290836123e7565b611a0c91906123fe565b601a6000828254611a1d9190612420565b90915550505b8015611a3457611a34873083611b0c565b611a3e81866124bb565b94505b611a4c878787611b0c565b50505050505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152602080526040808220805460ff1916851515908117909155600580546001600160a01b0319168517905590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611b325760405162461bcd60e51b8152600401610a4390612433565b6001600160a01b038216611b585760405162461bcd60e51b8152600401610a4390612478565b6001600160a01b03831660009081526020819052604090205481811015611bd05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a43565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611c07908490612420565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611c5391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611c7d575050565b6000601c54601a54601b54601954611c959190612420565b611c9f9190612420565b611ca99190612420565b90506008546014611cba91906123e7565b831115611cd257600854611ccf9060146123e7565b92505b6000600282601b5486611ce591906123e7565b611cef91906123fe565b611cf991906123fe565b90506000611d078583611f3e565b905047611d1382611f4a565b6000611d1f4783611f3e565b90506000611d3c8661184860195485611f1f90919063ffffffff16565b90506000611d5987611848601a5486611f1f90919063ffffffff16565b90506000611d7688611848601c5487611f1f90919063ffffffff16565b905060008183611d8686886124bb565b611d9091906124bb565b611d9a91906124bb565b6000601b8190556019819055601a819055601c819055600c546040519293506001600160a01b031691849181818185875af1925050503d8060008114611dfc576040519150601f19603f3d011682016040523d82523d6000602084013e611e01565b606091505b5050600b54604051919b506001600160a01b0316908490600081818185875af1925050503d8060008114611e51576040519150601f19603f3d011682016040523d82523d6000602084013e611e56565b606091505b50909a50508715801590611e6a5750600081115b15611ebd57611e79888261210a565b601b54604080518981526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b600a546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611f0a576040519150601f19603f3d011682016040523d82523d6000602084013e611f0f565b606091505b5050505050505050505050505050565b6000611f2b82846123e7565b9392505050565b6000611f2b82846123fe565b6000611f2b82846124bb565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f7f57611f7f6124ce565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611ffd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061202191906124e4565b81600181518110612034576120346124ce565b60200260200101906001600160a01b031690816001600160a01b03168152505061207f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461107f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906120d4908590600090869030904290600401612501565b600060405180830381600087803b1580156120ee57600080fd5b505af1158015612102573d6000803e3d6000fd5b505050505050565b612135307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461107f565b600c5460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af11580156121c4573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906121e99190612572565b5050505050565b600060208083528351808285015260005b8181101561221d57858101830151858201604001528201612201565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461107c57600080fd5b6000806040838503121561226657600080fd5b82356122718161223e565b946020939093013593505050565b60006020828403121561229157600080fd5b8135611f2b8161223e565b6000602082840312156122ae57600080fd5b5035919050565b6000806000606084860312156122ca57600080fd5b83356122d58161223e565b925060208401356122e58161223e565b929592945050506040919091013590565b6000806040838503121561230957600080fd5b82356123148161223e565b91506020830135801515811461232957600080fd5b809150509250929050565b6000806040838503121561234757600080fd5b82356123528161223e565b915060208301356123298161223e565b600181811c9082168061237657607f821691505b60208210810361239657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610a1357610a136123d1565b60008261241b57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115610a1357610a136123d1565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b81810381811115610a1357610a136123d1565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156124f657600080fd5b8151611f2b8161223e565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125515784516001600160a01b03168352938301939183019160010161252c565b50506001600160a01b03969096166060850152505050608001529392505050565b60008060006060848603121561258757600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f31f59605d5779c96bdd7c8861753798c9416dabb249081dd43f6458649c58ca64736f6c63430008120033

Deployed Bytecode Sourcemap

32955:14151:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9821:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11988:169;;;;;;;;;;-1:-1:-1;11988:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11988:169:0;1023:187:1;33877:29:0;;;;;;;;;;;;;;;;;;;1361:25:1;;;1349:2;1334:18;33877:29:0;1215:177:1;34434:63:0;;;;;;;;;;-1:-1:-1;34434:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33031:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1840:32:1;;;1822:51;;1810:2;1795:18;33031:51:0;1649:230:1;10941:108:0;;;;;;;;;;-1:-1:-1;11029:12:0;;10941:108;;34098:33;;;;;;;;;;;;;;;;34058;;;;;;;;;;;;;;;;37381:275;;;;;;;;;;-1:-1:-1;37381:275:0;;;;;:::i;:::-;;:::i;:::-;;12639:492;;;;;;;;;;-1:-1:-1;12639:492:0;;;;;:::i;:::-;;:::i;33134:53::-;;;;;;;;;;;;33180:6;33134:53;;10783:93;;;;;;;;;;-1:-1:-1;10783:93:0;;10866:2;2880:36:1;;2868:2;2853:18;10783:93:0;2738:184:1;13540:215:0;;;;;;;;;;-1:-1:-1;13540:215:0;;;;;:::i;:::-;;:::i;34020:31::-;;;;;;;;;;;;;;;;33089:38;;;;;;;;;;;;;;;34174:33;;;;;;;;;;-1:-1:-1;34174:33:0;;;;;;;;38816:126;;;;;;;;;;-1:-1:-1;38816:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38906:28:0;38882:4;38906:28;;;:19;:28;;;;;;;;;38816:126;33845:28;;;;;;;;;;;;;;;;34254:31;;;;;;;;;;-1:-1:-1;34254:31:0;;;;;;;;;;;11112:127;;;;;;;;;;-1:-1:-1;11112:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11213:18:0;11186:7;11213:18;;;;;;;;;;;;11112:127;3022:103;;;;;;;;;;;;;:::i;44522:160::-;;;;;;;;;;;;;:::i;37929:167::-;;;;;;;;;;-1:-1:-1;37929:167:0;;;;;:::i;:::-;;:::i;33376:30::-;;;;;;;;;;-1:-1:-1;33376:30:0;;;;-1:-1:-1;;;;;33376:30:0;;;9293:23;;;;;;;;;;-1:-1:-1;9293:23:0;;;;-1:-1:-1;;;;;9293:23:0;;;33341:28;;;;;;;;;;-1:-1:-1;33341:28:0;;;;-1:-1:-1;;;;;33341:28:0;;;33738:30;;;;;;;;;;;;;;;;44402:112;;;;;;;;;;;;;:::i;2371:87::-;;;;;;;;;;-1:-1:-1;2444:6:0;;-1:-1:-1;;;;;2444:6:0;2371:87;;33413:24;;;;;;;;;;-1:-1:-1;33413:24:0;;;;-1:-1:-1;;;;;33413:24:0;;;33913:31;;;;;;;;;;;;;;;;10040:104;;;;;;;;;;;;;:::i;38504:304::-;;;;;;;;;;-1:-1:-1;38504:304:0;;;;;:::i;:::-;;:::i;33812:24::-;;;;;;;;;;;;;;;;34138:27;;;;;;;;;;;;;;;;33989:25;;;;;;;;;;;;;;;;33703:28;;;;;;;;;;;;;;;;14258:413;;;;;;;;;;-1:-1:-1;14258:413:0;;;;;:::i;:::-;;:::i;11452:175::-;;;;;;;;;;-1:-1:-1;11452:175:0;;;;;:::i;:::-;;:::i;34655:57::-;;;;;;;;;;-1:-1:-1;34655:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;34214:33;;;;;;;;;;-1:-1:-1;34214:33:0;;;;;;;;;;;38104:182;;;;;;;;;;-1:-1:-1;38104:182:0;;;;;:::i;:::-;;:::i;37664:256::-;;;;;;;;;;-1:-1:-1;37664:256:0;;;;;:::i;:::-;;:::i;33624:39::-;;;;;;;;;;-1:-1:-1;33624:39:0;;;;;;;;33226:35;;;;;;;;;;;;;;;;33672:27;;;;;;;;;;;;;;;;11690:151;;;;;;;;;;-1:-1:-1;11690:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11806:18:0;;;11779:7;11806:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11690:151;33268:33;;;;;;;;;;;;;;;;33775:30;;;;;;;;;;;;;;;;3280:201;;;;;;;;;;-1:-1:-1;3280:201:0;;;;;:::i;:::-;;:::i;33951:31::-;;;;;;;;;;;;;;;;33308:24;;;;;;;;;;;;;;;;9821:100;9875:13;9908:5;9901:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9821:100;:::o;11988:169::-;12071:4;12088:39;1124:10;12111:7;12120:6;12088:8;:39::i;:::-;-1:-1:-1;12145:4:0;11988:169;;;;;:::o;37381:275::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;;;;;;;;;37518:4:::1;37510;37489:13;11029:12:::0;;;10941:108;37489:13:::1;:17;::::0;37505:1:::1;37489:17;:::i;:::-;37488:26;;;;:::i;:::-;37487:35;;;;:::i;:::-;37477:6;:45;;37455:142;;;::::0;-1:-1:-1;;;37455:142:0;;5216:2:1;37455:142:0::1;::::0;::::1;5198:21:1::0;5255:2;5235:18;;;5228:30;5294:34;5274:18;;;5267:62;-1:-1:-1;;;5345:18:1;;;5338:45;5400:19;;37455:142:0::1;5014:411:1::0;37455:142:0::1;37631:17;:6:::0;37641::::1;37631:17;:::i;:::-;37608:20;:40:::0;-1:-1:-1;37381:275:0:o;12639:492::-;12779:4;12796:36;12806:6;12814:9;12825:6;12796:9;:36::i;:::-;-1:-1:-1;;;;;12872:19:0;;12845:24;12872:19;;;:11;:19;;;;;;;;1124:10;12872:33;;;;;;;;12924:26;;;;12916:79;;;;-1:-1:-1;;;12916:79:0;;5632:2:1;12916:79:0;;;5614:21:1;5671:2;5651:18;;;5644:30;5710:34;5690:18;;;5683:62;-1:-1:-1;;;5761:18:1;;;5754:38;5809:19;;12916:79:0;5430:404:1;12916:79:0;13031:57;13040:6;1124:10;13081:6;13062:16;:25;13031:8;:57::i;:::-;-1:-1:-1;13119:4:0;;12639:492;-1:-1:-1;;;;12639:492:0:o;13540:215::-;1124:10;13628:4;13677:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13677:34:0;;;;;;;;;;13628:4;;13645:80;;13668:7;;13677:47;;13714:10;;13677:47;:::i;:::-;13645:8;:80::i;3022:103::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;3087:30:::1;3114:1;3087:18;:30::i;:::-;3022:103::o:0;44522:160::-;2444:6;;44574:4;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;-1:-1:-1;44591:14:0::1;:22:::0;;-1:-1:-1;;44591:22:0;;::::1;::::0;;;44624:20:::1;:28:::0;;;;::::1;::::0;;44591:22;44522:160;:::o;37929:167::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38042:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38042:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37929:167::o;44402:112::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;44457:13:::1;:20:::0;;-1:-1:-1;;44488:18:0;;;;;44402:112::o;10040:104::-;10096:13;10129:7;10122:14;;;;;:::i;38504:304::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;38648:13:::1;-1:-1:-1::0;;;;;38640:21:0::1;:4;-1:-1:-1::0;;;;;38640:21:0::1;::::0;38618:128:::1;;;::::0;-1:-1:-1;;;38618:128:0;;6171:2:1;38618:128:0::1;::::0;::::1;6153:21:1::0;6210:2;6190:18;;;6183:30;6249:34;6229:18;;;6222:62;6320:27;6300:18;;;6293:55;6365:19;;38618:128:0::1;5969:421:1::0;38618:128:0::1;38759:41;38788:4;38794:5;38759:28;:41::i;:::-;38504:304:::0;;:::o;14258:413::-;1124:10;14351:4;14395:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14395:34:0;;;;;;;;;;14448:35;;;;14440:85;;;;-1:-1:-1;;;14440:85:0;;6597:2:1;14440:85:0;;;6579:21:1;6636:2;6616:18;;;6609:30;6675:34;6655:18;;;6648:62;-1:-1:-1;;;6726:18:1;;;6719:35;6771:19;;14440:85:0;6395:401:1;14440:85:0;14561:67;1124:10;14584:7;14612:15;14593:16;:34;14561:8;:67::i;:::-;-1:-1:-1;14659:4:0;;14258:413;-1:-1:-1;;;14258:413:0:o;11452:175::-;11538:4;11555:42;1124:10;11579:9;11590:6;11555:9;:42::i;38104:182::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38189:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38189:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38244:34;;1163:41:1;;;38244:34:0::1;::::0;1136:18:1;38244:34:0::1;;;;;;;38104:182:::0;;:::o;37664:256::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;37804:4:::1;37796;37775:13;11029:12:::0;;;10941:108;37775:13:::1;:17;::::0;37791:1:::1;37775:17;:::i;:::-;37774:26;;;;:::i;:::-;37773:35;;;;:::i;:::-;37763:6;:45;;37741:131;;;::::0;-1:-1:-1;;;37741:131:0;;7003:2:1;37741:131:0::1;::::0;::::1;6985:21:1::0;7042:2;7022:18;;;7015:30;7081:34;7061:18;;;7054:62;-1:-1:-1;;;7132:18:1;;;7125:34;7176:19;;37741:131:0::1;6801:400:1::0;37741:131:0::1;37895:17;:6:::0;37905::::1;37895:17;:::i;:::-;37883:9;:29:::0;-1:-1:-1;37664:256:0:o;3280:201::-;2444:6;;-1:-1:-1;;;;;2444:6:0;1124:10;2591:23;2583:68;;;;-1:-1:-1;;;2583:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3369:22:0;::::1;3361:73;;;::::0;-1:-1:-1;;;3361:73:0;;7408:2:1;3361:73:0::1;::::0;::::1;7390:21:1::0;7447:2;7427:18;;;7420:30;7486:34;7466:18;;;7459:62;-1:-1:-1;;;7537:18:1;;;7530:36;7583:19;;3361:73:0::1;7206:402:1::0;3361:73:0::1;3445:28;3464:8;3445:18;:28::i;:::-;3280:201:::0;:::o;18004:380::-;-1:-1:-1;;;;;18140:19:0;;18132:68;;;;-1:-1:-1;;;18132:68:0;;7815:2:1;18132:68:0;;;7797:21:1;7854:2;7834:18;;;7827:30;7893:34;7873:18;;;7866:62;-1:-1:-1;;;7944:18:1;;;7937:34;7988:19;;18132:68:0;7613:400:1;18132:68:0;-1:-1:-1;;;;;18219:21:0;;18211:68;;;;-1:-1:-1;;;18211:68:0;;8220:2:1;18211:68:0;;;8202:21:1;8259:2;8239:18;;;8232:30;8298:34;8278:18;;;8271:62;-1:-1:-1;;;8349:18:1;;;8342:32;8391:19;;18211:68:0;8018:398:1;18211:68:0;-1:-1:-1;;;;;18292:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18344:32;;1361:25:1;;;18344:32:0;;1334:18:1;18344:32:0;;;;;;;18004:380;;;:::o;38950:4847::-;-1:-1:-1;;;;;39082:18:0;;39074:68;;;;-1:-1:-1;;;39074:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39161:16:0;;39153:64;;;;-1:-1:-1;;;39153:64:0;;;;;;;:::i;:::-;39234:6;39244:1;39234:11;39230:93;;39262:28;39278:4;39284:2;39288:1;39262:15;:28::i;:::-;38950:4847;;;:::o;39230:93::-;39339:14;;;;39335:2487;;;2444:6;;-1:-1:-1;;;;;39392:15:0;;;2444:6;;39392:15;;;;:49;;-1:-1:-1;2444:6:0;;-1:-1:-1;;;;;39428:13:0;;;2444:6;;39428:13;;39392:49;:86;;;;-1:-1:-1;;;;;;39462:16:0;;;;39392:86;:128;;;;-1:-1:-1;;;;;;39499:21:0;;39513:6;39499:21;;39392:128;:158;;;;-1:-1:-1;39542:8:0;;-1:-1:-1;;;39542:8:0;;;;39541:9;39392:158;39370:2441;;;39590:13;;;;;;;39585:223;;-1:-1:-1;;;;;39662:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39691:23:0;;;;;;:19;:23;;;;;;;;39662:52;39628:160;;;;-1:-1:-1;;;39628:160:0;;9433:2:1;39628:160:0;;;9415:21:1;9472:2;9452:18;;;9445:30;-1:-1:-1;;;9491:18:1;;;9484:52;9553:18;;39628:160:0;9231:346:1;39628:160:0;39964:20;;;;39960:641;;;2444:6;;-1:-1:-1;;;;;40039:13:0;;;2444:6;;40039:13;;;;:72;;;40095:15;-1:-1:-1;;;;;40081:30:0;:2;-1:-1:-1;;;;;40081:30:0;;;40039:72;:129;;;;;40154:13;-1:-1:-1;;;;;40140:28:0;:2;-1:-1:-1;;;;;40140:28:0;;;40039:129;40009:573;;;40286:9;40257:39;;;;:28;:39;;;;;;40332:12;-1:-1:-1;40219:258:0;;;;-1:-1:-1;;;40219:258:0;;9784:2:1;40219:258:0;;;9766:21:1;9823:2;9803:18;;;9796:30;9862:34;9842:18;;;9835:62;9933:34;9913:18;;;9906:62;-1:-1:-1;;;9984:19:1;;;9977:40;10034:19;;40219:258:0;9582:477:1;40219:258:0;40533:9;40504:39;;;;:28;:39;;;;;40546:12;40504:54;;40009:573;-1:-1:-1;;;;;40675:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40732:35:0;;;;;;:31;:35;;;;;;;;40731:36;40675:92;40649:1147;;;40854:20;;40844:6;:30;;40810:169;;;;-1:-1:-1;;;40810:169:0;;10266:2:1;40810:169:0;;;10248:21:1;10305:2;10285:18;;;10278:30;10344:34;10324:18;;;10317:62;-1:-1:-1;;;10395:18:1;;;10388:51;10456:19;;40810:169:0;10064:417:1;40810:169:0;41062:9;;-1:-1:-1;;;;;11213:18:0;;11186:7;11213:18;;;;;;;;;;;41036:22;;:6;:22;:::i;:::-;:35;;41002:140;;;;-1:-1:-1;;;41002:140:0;;10688:2:1;41002:140:0;;;10670:21:1;10727:2;10707:18;;;10700:30;-1:-1:-1;;;10746:18:1;;;10739:49;10805:18;;41002:140:0;10486:343:1;41002:140:0;40649:1147;;;-1:-1:-1;;;;;41240:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41295:37:0;;;;;;:31;:37;;;;;;;;41294:38;41240:92;41214:582;;;41419:20;;41409:6;:30;;41375:170;;;;-1:-1:-1;;;41375:170:0;;11036:2:1;41375:170:0;;;11018:21:1;11075:2;11055:18;;;11048:30;11114:34;11094:18;;;11087:62;-1:-1:-1;;;11165:18:1;;;11158:52;11227:19;;41375:170:0;10834:418:1;41214:582:0;-1:-1:-1;;;;;41576:35:0;;;;;;:31;:35;;;;;;;;41571:225;;41696:9;;-1:-1:-1;;;;;11213:18:0;;11186:7;11213:18;;;;;;;;;;;41670:22;;:6;:22;:::i;:::-;:35;;41636:140;;;;-1:-1:-1;;;41636:140:0;;10688:2:1;41636:140:0;;;10670:21:1;10727:2;10707:18;;;10700:30;-1:-1:-1;;;10746:18:1;;;10739:49;10805:18;;41636:140:0;10486:343:1;41636:140:0;41883:4;41834:28;11213:18;;;;;;;;;;;41941;;41917:42;;;;;;;41990:35;;-1:-1:-1;42014:11:0;;;;;;;41990:35;:61;;;;-1:-1:-1;42043:8:0;;-1:-1:-1;;;42043:8:0;;;;42042:9;41990:61;:110;;;;-1:-1:-1;;;;;;42069:31:0;;;;;;:25;:31;;;;;;;;42068:32;41990:110;:153;;;;-1:-1:-1;;;;;;42118:25:0;;;;;;:19;:25;;;;;;;;42117:26;41990:153;:194;;;;-1:-1:-1;;;;;;42161:23:0;;;;;;:19;:23;;;;;;;;42160:24;41990:194;41972:326;;;42211:8;:15;;-1:-1:-1;;;;42211:15:0;-1:-1:-1;;;42211:15:0;;;42243:10;:8;:10::i;:::-;42270:8;:16;;-1:-1:-1;;;;42270:16:0;;;41972:326;42326:8;;-1:-1:-1;;;;;42436:25:0;;42310:12;42436:25;;;:19;:25;;;;;;42326:8;-1:-1:-1;;;42326:8:0;;;;;42325:9;;42436:25;;:52;;-1:-1:-1;;;;;;42465:23:0;;;;;;:19;:23;;;;;;;;42436:52;42432:100;;;-1:-1:-1;42515:5:0;42432:100;42544:12;42649:7;42645:1099;;;-1:-1:-1;;;;;42701:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;42750:1;42734:13;;:17;42701:50;42697:898;;;42779:34;42809:3;42779:25;42790:13;;42779:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;42772:41;;42866:13;;42848:14;;42841:4;:21;;;;:::i;:::-;42840:39;;;;:::i;:::-;42820:16;;:59;;;;;;;:::i;:::-;;;;-1:-1:-1;;42948:13:0;;42928:16;;42921:23;;:4;:23;:::i;:::-;42920:41;;;;:::i;:::-;42898:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43018:13:0;;43004:10;;42997:17;;:4;:17;:::i;:::-;42996:35;;;;:::i;:::-;42980:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43100:13:0;;43080:16;;43073:23;;:4;:23;:::i;:::-;43072:41;;;;:::i;:::-;43050:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;42697:898:0;;-1:-1:-1;42697:898:0;;-1:-1:-1;;;;;43175:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43225:1;43210:12;;:16;43175:51;43171:424;;;43254:33;43283:3;43254:24;43265:12;;43254:6;:10;;:24;;;;:::i;:33::-;43247:40;;43339:12;;43322:13;;43315:4;:20;;;;:::i;:::-;43314:37;;;;:::i;:::-;43294:16;;:57;;;;;;;:::i;:::-;;;;-1:-1:-1;;43419:12:0;;43400:15;;43393:22;;:4;:22;:::i;:::-;43392:39;;;;:::i;:::-;43370:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43487:12:0;;43474:9;;43467:16;;:4;:16;:::i;:::-;43466:33;;;;:::i;:::-;43450:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;43567:12:0;;43548:15;;43541:22;;:4;:22;:::i;:::-;43540:39;;;;:::i;:::-;43518:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43171:424:0;43615:8;;43611:91;;43644:42;43660:4;43674;43681;43644:15;:42::i;:::-;43718:14;43728:4;43718:14;;:::i;:::-;;;42645:1099;43756:33;43772:4;43778:2;43782:6;43756:15;:33::i;:::-;39063:4734;;;;38950:4847;;;:::o;3641:191::-;3734:6;;;-1:-1:-1;;;;;3751:17:0;;;-1:-1:-1;;;;;;3751:17:0;;;;;;;3784:40;;3734:6;;;3751:17;3734:6;;3784:40;;3715:16;;3784:40;3704:128;3641:191;:::o;38294:202::-;-1:-1:-1;;;;;38377:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38377:39:0;;;;;;;;;;38427:8;:15;;-1:-1:-1;;;;;;38427:15:0;;;;;38448:40;;38377:39;;:31;38448:40;;;38294:202;;:::o;15161:733::-;-1:-1:-1;;;;;15301:20:0;;15293:70;;;;-1:-1:-1;;;15293:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15382:23:0;;15374:71;;;;-1:-1:-1;;;15374:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15542:17:0;;15518:21;15542:17;;;;;;;;;;;15578:23;;;;15570:74;;;;-1:-1:-1;;;15570:74:0;;11592:2:1;15570:74:0;;;11574:21:1;11631:2;11611:18;;;11604:30;11670:34;11650:18;;;11643:62;-1:-1:-1;;;11721:18:1;;;11714:36;11767:19;;15570:74:0;11390:402:1;15570:74:0;-1:-1:-1;;;;;15680:17:0;;;:9;:17;;;;;;;;;;;15700:22;;;15680:42;;15744:20;;;;;;;;:30;;15716:6;;15680:9;15744:30;;15716:6;;15744:30;:::i;:::-;;;;;;;;15809:9;-1:-1:-1;;;;;15792:35:0;15801:6;-1:-1:-1;;;;;15792:35:0;;15820:6;15792:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15792:35:0;;;;;;;;15282:612;15161:733;;;:::o;45213:1853::-;45296:4;45252:23;11213:18;;;;;;;;;;;;45341:20;;;45337:59;;45378:7;;45213:1853::o;45337:59::-;45406:25;45495:12;;45474:18;;45453;;45434:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;45406:101;;45540:18;;45561:2;45540:23;;;;:::i;:::-;45522:15;:41;45518:115;;;45598:18;;:23;;45619:2;45598:23;:::i;:::-;45580:41;;45518:115;45694:23;45781:1;45761:17;45739:18;;45721:15;:36;;;;:::i;:::-;45720:58;;;;:::i;:::-;:62;;;;:::i;:::-;45694:88;-1:-1:-1;45793:26:0;45822:36;:15;45694:88;45822:19;:36::i;:::-;45793:65;-1:-1:-1;45899:21:0;45933:36;45793:65;45933:16;:36::i;:::-;45982:18;46003:44;:21;46029:17;46003:25;:44::i;:::-;45982:65;;46054:21;46078:55;46115:17;46078:32;46093:16;;46078:10;:14;;:32;;;;:::i;:55::-;46054:79;;46144:23;46170:57;46209:17;46170:34;46185:18;;46170:10;:14;;:34;;;;:::i;:57::-;46144:83;;46238:17;46258:51;46291:17;46258:28;46273:12;;46258:10;:14;;:28;;;;:::i;:51::-;46238:71;-1:-1:-1;46322:23:0;46238:71;46377:15;46348:26;46361:13;46348:10;:26;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;46438:1;46417:18;:22;;;46444:16;:20;;;46475:18;:22;;;46508:12;:16;;;46559:9;;46551:45;;46322:82;;-1:-1:-1;;;;;;46559:9:0;;46582;;46551:45;46438:1;46551:45;46582:9;46559;46551:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;46629:15:0;;46621:57;;46537:59;;-1:-1:-1;;;;;;46629:15:0;;46658;;46621:57;;;;46658:15;46629;46621:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46607:71:0;;-1:-1:-1;;46697:19:0;;;;;:42;;;46738:1;46720:15;:19;46697:42;46693:278;;;46756:46;46769:15;46786;46756:12;:46::i;:::-;46926:18;;46822:137;;;12209:25:1;;;12265:2;12250:18;;12243:34;;;12293:18;;;12286:34;;;;46822:137:0;;;;;;12197:2:1;46822:137:0;;;46693:278;47005:13;;46997:61;;-1:-1:-1;;;;;47005:13:0;;;;47032:21;;46997:61;;;;47032:21;47005:13;46997:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;45213:1853:0:o;23457:98::-;23515:7;23542:5;23546:1;23542;:5;:::i;:::-;23535:12;23457:98;-1:-1:-1;;;23457:98:0:o;23856:::-;23914:7;23941:5;23945:1;23941;:5;:::i;23100:98::-;23158:7;23185:5;23189:1;23185;:5;:::i;43805:589::-;43955:16;;;43969:1;43955:16;;;;;;;;43931:21;;43955:16;;;;;;;;;;-1:-1:-1;43955:16:0;43931:40;;44000:4;43982;43987:1;43982:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43982:23:0;;;-1:-1:-1;;;;;43982:23:0;;;;;44026:15;-1:-1:-1;;;;;44026:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44016:4;44021:1;44016:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44016:32:0;;;-1:-1:-1;;;;;44016:32:0;;;;;44061:62;44078:4;44093:15;44111:11;44061:8;:62::i;:::-;44162:224;;-1:-1:-1;;;44162:224:0;;-1:-1:-1;;;;;44162:15:0;:66;;;;:224;;44243:11;;44269:1;;44313:4;;44340;;44360:15;;44162:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43860:534;43805:589;:::o;44690:515::-;44838:62;44855:4;44870:15;44888:11;44838:8;:62::i;:::-;45147:9;;44943:254;;-1:-1:-1;;;44943:254:0;;45015:4;44943:254;;;14177:34:1;14227:18;;;14220:34;;;45061:1:0;14270:18:1;;;14263:34;;;14313:18;;;14306:34;-1:-1:-1;;;;;45147:9:0;;;14356:19:1;;;14349:44;45171:15:0;14409:19:1;;;14402:35;44943:15:0;:31;;;;;;44982:9;;14111:19:1;;44943:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;44690:515;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:247::-;1456:6;1509:2;1497:9;1488:7;1484:23;1480:32;1477:52;;;1525:1;1522;1515:12;1477:52;1564:9;1551:23;1583:31;1608:5;1583:31;:::i;1884:180::-;1943:6;1996:2;1984:9;1975:7;1971:23;1967:32;1964:52;;;2012:1;2009;2002:12;1964:52;-1:-1:-1;2035:23:1;;1884:180;-1:-1:-1;1884:180:1:o;2069:456::-;2146:6;2154;2162;2215:2;2203:9;2194:7;2190:23;2186:32;2183:52;;;2231:1;2228;2221:12;2183:52;2270:9;2257:23;2289:31;2314:5;2289:31;:::i;:::-;2339:5;-1:-1:-1;2396:2:1;2381:18;;2368:32;2409:33;2368:32;2409:33;:::i;:::-;2069:456;;2461:7;;-1:-1:-1;;;2515:2:1;2500:18;;;;2487:32;;2069:456::o;2927:416::-;2992:6;3000;3053:2;3041:9;3032:7;3028:23;3024:32;3021:52;;;3069:1;3066;3059:12;3021:52;3108:9;3095:23;3127:31;3152:5;3127:31;:::i;:::-;3177:5;-1:-1:-1;3234:2:1;3219:18;;3206:32;3276:15;;3269:23;3257:36;;3247:64;;3307:1;3304;3297:12;3247:64;3330:7;3320:17;;;2927:416;;;;;:::o;3348:388::-;3416:6;3424;3477:2;3465:9;3456:7;3452:23;3448:32;3445:52;;;3493:1;3490;3483:12;3445:52;3532:9;3519:23;3551:31;3576:5;3551:31;:::i;:::-;3601:5;-1:-1:-1;3658:2:1;3643:18;;3630:32;3671:33;3630:32;3671:33;:::i;3741:380::-;3820:1;3816:12;;;;3863;;;3884:61;;3938:4;3930:6;3926:17;3916:27;;3884:61;3991:2;3983:6;3980:14;3960:18;3957:38;3954:161;;4037:10;4032:3;4028:20;4025:1;4018:31;4072:4;4069:1;4062:15;4100:4;4097:1;4090:15;3954:161;;3741:380;;;:::o;4126:356::-;4328:2;4310:21;;;4347:18;;;4340:30;4406:34;4401:2;4386:18;;4379:62;4473:2;4458:18;;4126:356::o;4487:127::-;4548:10;4543:3;4539:20;4536:1;4529:31;4579:4;4576:1;4569:15;4603:4;4600:1;4593:15;4619:168;4692:9;;;4723;;4740:15;;;4734:22;;4720:37;4710:71;;4761:18;;:::i;4792:217::-;4832:1;4858;4848:132;;4902:10;4897:3;4893:20;4890:1;4883:31;4937:4;4934:1;4927:15;4965:4;4962:1;4955:15;4848:132;-1:-1:-1;4994:9:1;;4792:217::o;5839:125::-;5904:9;;;5925:10;;;5922:36;;;5938:18;;:::i;8421:401::-;8623:2;8605:21;;;8662:2;8642:18;;;8635:30;8701:34;8696:2;8681:18;;8674:62;-1:-1:-1;;;8767:2:1;8752:18;;8745:35;8812:3;8797:19;;8421:401::o;8827:399::-;9029:2;9011:21;;;9068:2;9048:18;;;9041:30;9107:34;9102:2;9087:18;;9080:62;-1:-1:-1;;;9173:2:1;9158:18;;9151:33;9216:3;9201:19;;8827:399::o;11257:128::-;11324:9;;;11345:11;;;11342:37;;;11359:18;;:::i;12463:127::-;12524:10;12519:3;12515:20;12512:1;12505:31;12555:4;12552:1;12545:15;12579:4;12576:1;12569:15;12595:251;12665:6;12718:2;12706:9;12697:7;12693:23;12689:32;12686:52;;;12734:1;12731;12724:12;12686:52;12766:9;12760:16;12785:31;12810:5;12785:31;:::i;12851:980::-;13113:4;13161:3;13150:9;13146:19;13192:6;13181:9;13174:25;13218:2;13256:6;13251:2;13240:9;13236:18;13229:34;13299:3;13294:2;13283:9;13279:18;13272:31;13323:6;13358;13352:13;13389:6;13381;13374:22;13427:3;13416:9;13412:19;13405:26;;13466:2;13458:6;13454:15;13440:29;;13487:1;13497:195;13511:6;13508:1;13505:13;13497:195;;;13576:13;;-1:-1:-1;;;;;13572:39:1;13560:52;;13667:15;;;;13632:12;;;;13608:1;13526:9;13497:195;;;-1:-1:-1;;;;;;;13748:32:1;;;;13743:2;13728:18;;13721:60;-1:-1:-1;;;13812:3:1;13797:19;13790:35;13709:3;12851:980;-1:-1:-1;;;12851:980:1:o;14448:306::-;14536:6;14544;14552;14605:2;14593:9;14584:7;14580:23;14576:32;14573:52;;;14621:1;14618;14611:12;14573:52;14650:9;14644:16;14634:26;;14700:2;14689:9;14685:18;14679:25;14669:35;;14744:2;14733:9;14729:18;14723:25;14713:35;;14448:306;;;;;:::o

Swarm Source

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