ETH Price: $2,332.70 (+2.63%)

Token

Gaps Trade (GAPS)
 

Overview

Max Total Supply

1,000,000,000 GAPS

Holders

121

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

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-08-16
*/

//         
//
//                                                                  ██████╗  █████╗ ██████╗ ███████╗
//                                                                ██╔════╝ ██╔══██╗██╔══██╗██╔════╝
//                                                                ██║  ███╗███████║██████╔╝███████╗
//                                                                ██║   ██║██╔══██║██╔═══╝ ╚════██║
//                                                                ╚██████╔╝██║  ██║██║     ███████║
//                                                                 ╚═════╝ ╚═╝  ╚═╝╚═╝     ╚══════╝
//                                
//                     
//                          
//         Ever wanted to try and trade straight from Telegram, both ETH tokens and SOL tokens? Not only that, we don't force you to click a button and switch networks,
//                                          just connect both of your appropriate wallets, scan CAs, and then ape if you'd like to.
//                                 Not only that but, do you want to try and initiate a buy trade from a group? Why not give us a try?
//
//                                                               Bot: https://t.me/gapstradebot
//
//                                                              Website: https://gapstrade.xyz
//                                                              Twitter: https://x.com/gapstrade
//                                      
//                                                             Telegram: https://t.me/gapstrade
//                                                        GitBook: https://gaps-trade.gitbook.io/gaps-trade/
//                              
//                              
//                                                             
//  
//  


pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;


// SPDX-License-Identifier: MIT

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

// pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts (last updated v4.7.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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

// pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts (last updated v4.6.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 subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

// pragma solidity >=0.5.0;

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.6.2;

interface IUniswapV2Router01 {
    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 removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

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

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);

    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);

    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}

// pragma solidity >=0.6.2;

// import './IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public secretShareWallet;
    address public gapsAccountWallet;

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

    bool public tradingActive = false;
    bool public swapEnabled = false;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => bool) blacklisted;

    uint256 public buyTotalFees;
    uint256 private buyMarketingFee;
    uint256 private buySecretShareFee;
    uint256 private buyGapsAccountFee;

    uint256 public sellTotalFees;
    uint256 private sellMarketingFee;
    uint256 private sellSecretShareFee;
    uint256 private sellGapsAccountFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForSecretShare;
    uint256 private tokensForGapsAccount;
    uint256 private previousFee;

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event revShareWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event gapsAccountWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event UniswapV2PairSet(address indexed pair);

    constructor() ERC20("Gaps Trade", "GAPS") {
        uint256 totalSupply = 1_000_000_000 ether;
        address disperse = 0xD152f549545093347A162Dce210e7293f1452150;

        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);

        maxTransactionAmount = totalSupply;
        maxWallet = totalSupply;
        swapTokensAtAmount = (totalSupply * 5) / 10000;

        marketingWallet = address(0x5B00e13036a586800De00837a43986CB6502a38a);
        secretShareWallet = address(0xE7A8F0bA0df0CFCAAcC676b739f941E3f5A628Fe);
        gapsAccountWallet = address(0xc19329650278fDF86e50490B4331adf5fAF02cF8);

        buyMarketingFee = 5;
        buySecretShareFee = 5;
        buyGapsAccountFee = 5;
        buyTotalFees = buyMarketingFee + buySecretShareFee + buyGapsAccountFee;

        sellMarketingFee = 5;
        sellSecretShareFee = 5;
        sellGapsAccountFee = 5;
        sellTotalFees =
            sellMarketingFee +
            sellSecretShareFee +
            sellGapsAccountFee;

        previousFee = sellTotalFees;

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(marketingWallet, true);
        excludeFromFees(secretShareWallet, true);
        excludeFromFees(gapsAccountWallet, true);
        excludeFromFees(disperse, true);

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(marketingWallet, true);
        excludeFromMaxTransaction(secretShareWallet, true);
        excludeFromMaxTransaction(gapsAccountWallet, true);
        excludeFromMaxTransaction(disperse, true);

        _mint(owner(), 1_000_000_000 ether);
    }

    receive() external payable {}

    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }

 
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Trading already active.");

        // Check if the pair already exists
        address existingPair = IUniswapV2Factory(uniswapV2Router.factory()).getPair(
            address(this),
            uniswapV2Router.WETH()
        );

        if (existingPair == address(0)) {
            // Pair does not exist, create a new one
            uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
                address(this),
                uniswapV2Router.WETH()
            );
        } else {
            // Pair already exists, use the existing pair
            uniswapV2Pair = existingPair;
        }

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

        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        maxTransactionAmount = (totalSupply() * 25) / 10000;
        maxWallet = (totalSupply() * 25) / 10000;

        tradingActive = true;
        swapEnabled = true;
    }

function setUniswapV2Pair(address _pair) external onlyOwner {
    require(_pair != address(0), "Invalid pair address");
    uniswapV2Pair = _pair;

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

    _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
    excludeFromMaxTransaction(address(uniswapV2Pair), true);

    emit UniswapV2PairSet(uniswapV2Pair);
}


    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _secretShareFee,
        uint256 _gapsAccountFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buySecretShareFee = _secretShareFee;
        buyGapsAccountFee = _gapsAccountFee;
        buyTotalFees = buyMarketingFee + buySecretShareFee + buyGapsAccountFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _secretShareFee,
        uint256 _gapsAccountFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellSecretShareFee = _secretShareFee;
        sellGapsAccountFee = _gapsAccountFee;
        sellTotalFees =
            sellMarketingFee +
            sellSecretShareFee +
            sellGapsAccountFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }

    function updateMarketingWallet(address _marketingWallet)
        external
        onlyOwner
    {
        require(_marketingWallet != address(0), "ERC20: Address 0");
        address oldWallet = marketingWallet;
        marketingWallet = _marketingWallet;
        emit marketingWalletUpdated(marketingWallet, oldWallet);
    }

    function updateSecretShareWallet(address _secretShareWallet) external onlyOwner {
        require(_secretShareWallet != address(0), "ERC20: Address 0");
        address oldWallet = secretShareWallet;
        secretShareWallet = _secretShareWallet;
        emit revShareWalletUpdated(secretShareWallet, oldWallet);
    }

    function updateGapsAccountWallet(address _gapsAccountWallet)
        external
        onlyOwner
    {
        require(_gapsAccountWallet != address(0), "ERC20: Address 0");
        address oldWallet = gapsAccountWallet;
        gapsAccountWallet = _gapsAccountWallet;
        emit gapsAccountWalletUpdated(gapsAccountWallet, oldWallet);
    }

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

    function blacklist(address[] calldata accounts, bool value)
        public
        onlyOwner
    {
        for (uint256 i = 0; i < accounts.length; i++) {
            if (
                (accounts[i] != uniswapV2Pair) &&
                (accounts[i] != address(uniswapV2Router)) &&
                (accounts[i] != address(this))
            ) blacklisted[accounts[i]] = value;
        }
    }

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

    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    function isBlacklisted(address account) public view returns (bool) {
        return blacklisted[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");
        require(!blacklisted[from], "ERC20: bot detected");
        require(!blacklisted[msg.sender], "ERC20: bot detected");
        require(!blacklisted[tx.origin], "ERC20: bot detected");

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

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

            // Buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            // Sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: 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 (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        uint256 fees = 0;

        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForGapsAccount +=
                    (fees * sellGapsAccountFee) /
                    sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
                tokensForSecretShare += (fees * sellSecretShareFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForGapsAccount +=
                    (fees * buyGapsAccountFee) /
                    buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
                tokensForSecretShare += (fees * buySecretShareFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForGapsAccount +
            tokensForMarketing +
            tokensForSecretShare;
        bool success;

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

        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }

        swapTokensForEth(contractBalance);

        uint256 ethBalance = address(this).balance;

        uint256 ethForSecretShare = ethBalance.mul(tokensForSecretShare).div(
            totalTokensToSwap
        );

        uint256 ethForGapsAccount = ethBalance
            .mul(tokensForGapsAccount)
            .div(totalTokensToSwap);

        tokensForMarketing = 0;
        tokensForSecretShare = 0;
        tokensForGapsAccount = 0;

        (success, ) = address(gapsAccountWallet).call{
            value: ethForGapsAccount
        }("");

        (success, ) = address(secretShareWallet).call{value: ethForSecretShare}("");

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

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"}],"name":"UniswapV2PairSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"gapsAccountWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"revShareWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"value","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"gapsAccountWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"secretShareWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setUniswapV2Pair","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":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_secretShareFee","type":"uint256"},{"internalType":"uint256","name":"_gapsAccountFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_gapsAccountWallet","type":"address"}],"name":"updateGapsAccountWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_secretShareWallet","type":"address"}],"name":"updateSecretShareWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_secretShareFee","type":"uint256"},{"internalType":"uint256","name":"_gapsAccountFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600d805461ffff191690553480156200001c57600080fd5b506040518060400160405280600a8152602001694761707320547261646560b01b815250604051806040016040528060048152602001634741505360e01b81525081600390816200006e919062000726565b5060046200007d828262000726565b5050506200009a620000946200033c60201b60201c565b62000340565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce80000009073d152f549545093347a162dce210e7293f145215090620000e890309060001962000392565b600a829055600c8290556127106200010283600562000808565b6200010e919062000828565b600b55600780546001600160a01b0319908116735b00e13036a586800de00837a43986cb6502a38a1790915560088054821673e7a8f0ba0df0cfcaacc676b739f941e3f5a628fe1790556009805490911673c19329650278fdf86e50490b4331adf5faf02cf817905560056010819055601181905560128190556200019481806200084b565b620001a091906200084b565b600f556005601481905560158190556016819055620001c081806200084b565b620001cc91906200084b565b6013819055601a55620001f3620001eb6005546001600160a01b031690565b6001620004be565b62000200306001620004be565b6200020f61dead6001620004be565b60075462000228906001600160a01b03166001620004be565b60085462000241906001600160a01b03166001620004be565b6009546200025a906001600160a01b03166001620004be565b62000267816001620004be565b620002866200027e6005546001600160a01b031690565b600162000527565b6200029330600162000527565b620002a261dead600162000527565b608051620002b290600162000527565b600754620002cb906001600160a01b0316600162000527565b600854620002e4906001600160a01b0316600162000527565b600954620002fd906001600160a01b0316600162000527565b6200030a81600162000527565b62000334620003216005546001600160a01b031690565b6b033b2e3c9fd0803ce80000006200055c565b505062000861565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620003fa5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b0382166200045d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401620003f1565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620004c86200061f565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b620005316200061f565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6001600160a01b038216620005b45760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003f1565b8060026000828254620005c891906200084b565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b031633146200067b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620003f1565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620006ad57607f821691505b602082108103620006ce57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200067d57600081815260208120601f850160051c81016020861015620006fd5750805b601f850160051c820191505b818110156200071e5782815560010162000709565b505050505050565b81516001600160401b0381111562000742576200074262000682565b6200075a8162000753845462000698565b84620006d4565b602080601f831160018114620007925760008415620007795750858301515b600019600386901b1c1916600185901b1785556200071e565b600085815260208120601f198616915b82811015620007c357888601518255948401946001909101908401620007a2565b5085821015620007e25787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008225762000822620007f2565b92915050565b6000826200084657634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008225762000822620007f2565b608051612ed5620008c3600039600081816102e401528181610a9501528181610b2601528181610c2701528181610cb801528181610e1e015281816110e4015281816113eb01528181612822015281816128db01526129170152612ed56000f3fe60806040526004361061026b5760003560e01c806395d89b4111610144578063cb963728116100b6578063e2f456051161007a578063e2f4560514610758578063eb8de1c51461076e578063f2fde38b1461078e578063f5648a4f146107ae578063f8b45b05146107c3578063fe575a87146107d957600080fd5b8063cb963728146106c2578063ce4ec38a146106e2578063d257b34f14610702578063d85ba06314610722578063dd62ed3e1461073857600080fd5b8063aacebbe311610108578063aacebbe314610612578063bbc0c74214610632578063c02466681461064c578063c17b5b8c1461066c578063c8c8ebe41461068c578063c997eb8d146106a257600080fd5b806395d89b411461057d5780639618839914610592578063a29a6089146105b2578063a457c2d7146105d2578063a9059cbb146105f257600080fd5b80636a486a8e116101dd57806375f0a874116101a157806375f0a874146104ca5780637b8e4fea146104ea5780638095d5641461050a5780638a8c523c1461052a5780638ad60c3d1461053f5780638da5cb5b1461055f57600080fd5b80636a486a8e1461042a5780636ddd17131461044057806370a082311461045f578063715018a6146104955780637571336a146104aa57600080fd5b806327c8f8351161022f57806327c8f8351461035d578063313ce56714610373578063395093511461038f57806342966c68146103af57806349bd5a5e146103d15780634fbee193146103f157600080fd5b806306fdde0314610277578063095ea7b3146102a25780631694505e146102d257806318160ddd1461031e57806323b872dd1461033d57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b604051610299919061298b565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046129ee565b6108a4565b6040519015158152602001610299565b3480156102de57600080fd5b506103067f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561032a57600080fd5b506002545b604051908152602001610299565b34801561034957600080fd5b506102c2610358366004612a1a565b6108be565b34801561036957600080fd5b5061030661dead81565b34801561037f57600080fd5b5060405160128152602001610299565b34801561039b57600080fd5b506102c26103aa3660046129ee565b6108e2565b3480156103bb57600080fd5b506103cf6103ca366004612a5b565b610904565b005b3480156103dd57600080fd5b50600654610306906001600160a01b031681565b3480156103fd57600080fd5b506102c261040c366004612a74565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561043657600080fd5b5061032f60135481565b34801561044c57600080fd5b50600d546102c290610100900460ff1681565b34801561046b57600080fd5b5061032f61047a366004612a74565b6001600160a01b031660009081526020819052604090205490565b3480156104a157600080fd5b506103cf610911565b3480156104b657600080fd5b506103cf6104c5366004612a9f565b610925565b3480156104d657600080fd5b50600754610306906001600160a01b031681565b3480156104f657600080fd5b506103cf610505366004612a74565b610958565b34801561051657600080fd5b506103cf610525366004612ad8565b6109e0565b34801561053657600080fd5b506103cf610a36565b34801561054b57600080fd5b50600854610306906001600160a01b031681565b34801561056b57600080fd5b506005546001600160a01b0316610306565b34801561058957600080fd5b5061028c610f25565b34801561059e57600080fd5b506103cf6105ad366004612b04565b610f34565b3480156105be57600080fd5b506103cf6105cd366004612a74565b611049565b3480156105de57600080fd5b506102c26105ed3660046129ee565b6111cc565b3480156105fe57600080fd5b506102c261060d3660046129ee565b611247565b34801561061e57600080fd5b506103cf61062d366004612a74565b611255565b34801561063e57600080fd5b50600d546102c29060ff1681565b34801561065857600080fd5b506103cf610667366004612a9f565b6112d4565b34801561067857600080fd5b506103cf610687366004612ad8565b61133b565b34801561069857600080fd5b5061032f600a5481565b3480156106ae57600080fd5b506103cf6106bd366004612b26565b611391565b3480156106ce57600080fd5b506103cf6106dd366004612a74565b6114f3565b3480156106ee57600080fd5b50600954610306906001600160a01b031681565b34801561070e57600080fd5b506102c261071d366004612a5b565b61167e565b34801561072e57600080fd5b5061032f600f5481565b34801561074457600080fd5b5061032f610753366004612bac565b6117be565b34801561076457600080fd5b5061032f600b5481565b34801561077a57600080fd5b506103cf610789366004612a74565b6117e9565b34801561079a57600080fd5b506103cf6107a9366004612a74565b611868565b3480156107ba57600080fd5b506103cf6118de565b3480156107cf57600080fd5b5061032f600c5481565b3480156107e557600080fd5b506102c26107f4366004612a74565b6001600160a01b03166000908152600e602052604090205460ff1690565b60606003805461082190612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612bda565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000336108b2818585611928565b60019150505b92915050565b6000336108cc858285611a4c565b6108d7858585611ac0565b506001949350505050565b6000336108b28185856108f583836117be565b6108ff9190612c2a565b611928565b61090e3382612283565b50565b6109196123b5565b610923600061240f565b565b61092d6123b5565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6109606123b5565b6001600160a01b03811661098f5760405162461bcd60e51b815260040161098690612c3d565b60405180910390fd5b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6109e86123b5565b60108390556011829055601281905580610a028385612c2a565b610a0c9190612c2a565b600f819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b505050565b610a3e6123b5565b600d5460ff1615610a915760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610986565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b159190612cab565b6001600160a01b031663e6a43905307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190612cab565b90506001600160a01b038116610dce577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca79190612cab565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da99190612cab565b600680546001600160a01b0319166001600160a01b0392909216919091179055610dea565b600680546001600160a01b0319166001600160a01b0383161790555b600654610e049030906001600160a01b0316600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9c9190612cc8565b50600654610eb4906001600160a01b03166001612461565b600654610ecb906001600160a01b03166001610925565b612710610ed760025490565b610ee2906019612ce5565b610eec9190612cfc565b600a55612710610efb60025490565b610f06906019612ce5565b610f109190612cfc565b600c5550600d805461ffff1916610101179055565b60606004805461082190612bda565b610f3c6123b5565b6103e8610f4860025490565b610f53906005612ce5565b610f5d9190612cfc565b821015610fbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610986565b6103e8610fc960025490565b610fd4906005612ce5565b610fde9190612cfc565b8110156110415760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610986565b600c55600a55565b6110516123b5565b6001600160a01b03811661109e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610986565b600680546001600160a01b0319166001600160a01b0383169081179091556110ca903090600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561113e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111629190612cc8565b5060065461117a906001600160a01b03166001612461565b600654611191906001600160a01b03166001610925565b6006546040516001600160a01b03909116907fb7285c945543323d6c77e154e51651bef3445a7d25101ce12e1fe37e418a5b8990600090a250565b600033816111da82866117be565b90508381101561123a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610986565b6108d78286868403611928565b6000336108b2818585611ac0565b61125d6123b5565b6001600160a01b0381166112835760405162461bcd60e51b815260040161098690612c3d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b6112dc6123b5565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113436123b5565b6014839055601582905560168190558061135d8385612c2a565b6113679190612c2a565b6013819055601a819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b6113996123b5565b60005b828110156114ed576006546001600160a01b03168484838181106113c2576113c2612d1e565b90506020020160208101906113d79190612a74565b6001600160a01b03161415801561144657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031684848381811061142557611425612d1e565b905060200201602081019061143a9190612a74565b6001600160a01b031614155b801561148157503084848381811061146057611460612d1e565b90506020020160208101906114759190612a74565b6001600160a01b031614155b156114db5781600e600086868581811061149d5761149d612d1e565b90506020020160208101906114b29190612a74565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806114e581612d34565b91505061139c565b50505050565b6114fb6123b5565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115669190612d4d565b1161159f5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610986565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160a9190612d4d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561165a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190612cc8565b60006116886123b5565b620186a061169560025490565b6116a0906001612ce5565b6116aa9190612cfc565b82101561171f5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610986565b6103e861172b60025490565b611736906005612ce5565b6117409190612cfc565b8211156117b55760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610986565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6117f16123b5565b6001600160a01b0381166118175760405162461bcd60e51b815260040161098690612c3d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f061b0bef6dde0c1d705d3e3fa79862819a22ed5e6f550be7e22052a9ca7a857790600090a35050565b6118706123b5565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b61090e8161240f565b6118e66123b5565b604051600090339047908381818185875af1925050503d80600081146114ed576040519150601f19603f3d011682016040523d82523d6000602084013e6114ed565b6001600160a01b03831661198a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b6001600160a01b0382166119eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610986565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611a5884846117be565b905060001981146114ed5781811015611ab35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610986565b6114ed8484848403611928565b6001600160a01b038316611ae65760405162461bcd60e51b815260040161098690612d66565b6001600160a01b038216611b0c5760405162461bcd60e51b815260040161098690612dab565b6001600160a01b0383166000908152600e602052604090205460ff1615611b455760405162461bcd60e51b815260040161098690612dee565b336000908152600e602052604090205460ff1615611b755760405162461bcd60e51b815260040161098690612dee565b326000908152600e602052604090205460ff1615611ba55760405162461bcd60e51b815260040161098690612dee565b80600003611bb957610a31838360006124b5565b6005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b15611f4957600d5460ff16611cc0576001600160a01b0383166000908152601b602052604090205460ff1680611c7457506001600160a01b0382166000908152601b602052604090205460ff165b611cc05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610986565b6001600160a01b0383166000908152601d602052604090205460ff168015611d0157506001600160a01b0382166000908152601c602052604090205460ff16155b15611df757600a54811115611d7e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610986565b600c546001600160a01b038316600090815260208190526040902054611da49083612c2a565b1115611df25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b611f49565b6001600160a01b0382166000908152601d602052604090205460ff168015611e3857506001600160a01b0383166000908152601c602052604090205460ff16155b15611eb557600a54811115611df25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610986565b6001600160a01b0382166000908152601c602052604090205460ff16611f4957600c546001600160a01b038316600090815260208190526040902054611efb9083612c2a565b1115611f495760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b30600090815260208190526040902054600b5481108015908190611f745750600d54610100900460ff165b8015611f8a5750600654600160a01b900460ff16155b8015611faf57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611fd457506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff957506001600160a01b0384166000908152601b602052604090205460ff16155b15612027576006805460ff60a01b1916600160a01b1790556120196125df565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061207557506001600160a01b0385166000908152601b602052604090205460ff165b1561207e575060005b60008115612269576001600160a01b0386166000908152601d602052604090205460ff1680156120b057506000601354115b1561216e576120d560646120cf601354886127ac90919063ffffffff16565b906127bf565b9050601354601654826120e89190612ce5565b6120f29190612cfc565b601960008282546121039190612c2a565b90915550506013546014546121189083612ce5565b6121229190612cfc565b601760008282546121339190612c2a565b90915550506013546015546121489083612ce5565b6121529190612cfc565b601860008282546121639190612c2a565b9091555061224b9050565b6001600160a01b0387166000908152601d602052604090205460ff16801561219857506000600f54115b1561224b576121b760646120cf600f54886127ac90919063ffffffff16565b9050600f54601254826121ca9190612ce5565b6121d49190612cfc565b601960008282546121e59190612c2a565b9091555050600f546010546121fa9083612ce5565b6122049190612cfc565b601760008282546122159190612c2a565b9091555050600f5460115461222a9083612ce5565b6122349190612cfc565b601860008282546122459190612c2a565b90915550505b801561225c5761225c8730836124b5565b6122668186612e1b565b94505b6122748787876124b5565b5050601a546013555050505050565b6001600160a01b0382166122e35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610986565b6001600160a01b038216600090815260208190526040902054818110156123575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610986565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146109235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610986565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124db5760405162461bcd60e51b815260040161098690612d66565b6001600160a01b0382166125015760405162461bcd60e51b815260040161098690612dab565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610986565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36114ed565b30600090815260208190526040812054905060006018546017546019546126069190612c2a565b6126109190612c2a565b9050600082158061261f575081155b1561262957505050565b600b54612637906014612ce5565b83111561264f57600b5461264c906014612ce5565b92505b612658836127cb565b60004790506000612678846120cf601854856127ac90919063ffffffff16565b90506000612695856120cf601954866127ac90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461279c576040519150601f19603f3d011682016040523d82523d6000602084013e6127a1565b606091505b505050505050505050565b60006127b88284612ce5565b9392505050565b60006127b88284612cfc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061280057612800612d1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a29190612cab565b816001815181106128b5576128b5612d1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612900307f000000000000000000000000000000000000000000000000000000000000000084611928565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612955908590600090869030904290600401612e2e565b600060405180830381600087803b15801561296f57600080fd5b505af1158015612983573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129b85785810183015185820160400152820161299c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461090e57600080fd5b60008060408385031215612a0157600080fd5b8235612a0c816129d9565b946020939093013593505050565b600080600060608486031215612a2f57600080fd5b8335612a3a816129d9565b92506020840135612a4a816129d9565b929592945050506040919091013590565b600060208284031215612a6d57600080fd5b5035919050565b600060208284031215612a8657600080fd5b81356127b8816129d9565b801515811461090e57600080fd5b60008060408385031215612ab257600080fd5b8235612abd816129d9565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1757600080fd5b50508035926020909101359150565b600080600060408486031215612b3b57600080fd5b833567ffffffffffffffff80821115612b5357600080fd5b818601915086601f830112612b6757600080fd5b813581811115612b7657600080fd5b8760208260051b8501011115612b8b57600080fd5b60209283019550935050840135612ba181612a91565b809150509250925092565b60008060408385031215612bbf57600080fd5b8235612bca816129d9565b91506020830135612acd816129d9565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b8576108b8612c14565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612cbd57600080fd5b81516127b8816129d9565b600060208284031215612cda57600080fd5b81516127b881612a91565b80820281158282048414176108b8576108b8612c14565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4657612d46612c14565b5060010190565b600060208284031215612d5f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b818103818111156108b8576108b8612c14565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e7e5784516001600160a01b031683529383019391830191600101612e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122077a959e3ec255dbcdd6ed3ff0528f184874a3bcf569e0d85cc33603b8012ad4364736f6c63430008110033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806395d89b4111610144578063cb963728116100b6578063e2f456051161007a578063e2f4560514610758578063eb8de1c51461076e578063f2fde38b1461078e578063f5648a4f146107ae578063f8b45b05146107c3578063fe575a87146107d957600080fd5b8063cb963728146106c2578063ce4ec38a146106e2578063d257b34f14610702578063d85ba06314610722578063dd62ed3e1461073857600080fd5b8063aacebbe311610108578063aacebbe314610612578063bbc0c74214610632578063c02466681461064c578063c17b5b8c1461066c578063c8c8ebe41461068c578063c997eb8d146106a257600080fd5b806395d89b411461057d5780639618839914610592578063a29a6089146105b2578063a457c2d7146105d2578063a9059cbb146105f257600080fd5b80636a486a8e116101dd57806375f0a874116101a157806375f0a874146104ca5780637b8e4fea146104ea5780638095d5641461050a5780638a8c523c1461052a5780638ad60c3d1461053f5780638da5cb5b1461055f57600080fd5b80636a486a8e1461042a5780636ddd17131461044057806370a082311461045f578063715018a6146104955780637571336a146104aa57600080fd5b806327c8f8351161022f57806327c8f8351461035d578063313ce56714610373578063395093511461038f57806342966c68146103af57806349bd5a5e146103d15780634fbee193146103f157600080fd5b806306fdde0314610277578063095ea7b3146102a25780631694505e146102d257806318160ddd1461031e57806323b872dd1461033d57600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c610812565b604051610299919061298b565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046129ee565b6108a4565b6040519015158152602001610299565b3480156102de57600080fd5b506103067f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561032a57600080fd5b506002545b604051908152602001610299565b34801561034957600080fd5b506102c2610358366004612a1a565b6108be565b34801561036957600080fd5b5061030661dead81565b34801561037f57600080fd5b5060405160128152602001610299565b34801561039b57600080fd5b506102c26103aa3660046129ee565b6108e2565b3480156103bb57600080fd5b506103cf6103ca366004612a5b565b610904565b005b3480156103dd57600080fd5b50600654610306906001600160a01b031681565b3480156103fd57600080fd5b506102c261040c366004612a74565b6001600160a01b03166000908152601b602052604090205460ff1690565b34801561043657600080fd5b5061032f60135481565b34801561044c57600080fd5b50600d546102c290610100900460ff1681565b34801561046b57600080fd5b5061032f61047a366004612a74565b6001600160a01b031660009081526020819052604090205490565b3480156104a157600080fd5b506103cf610911565b3480156104b657600080fd5b506103cf6104c5366004612a9f565b610925565b3480156104d657600080fd5b50600754610306906001600160a01b031681565b3480156104f657600080fd5b506103cf610505366004612a74565b610958565b34801561051657600080fd5b506103cf610525366004612ad8565b6109e0565b34801561053657600080fd5b506103cf610a36565b34801561054b57600080fd5b50600854610306906001600160a01b031681565b34801561056b57600080fd5b506005546001600160a01b0316610306565b34801561058957600080fd5b5061028c610f25565b34801561059e57600080fd5b506103cf6105ad366004612b04565b610f34565b3480156105be57600080fd5b506103cf6105cd366004612a74565b611049565b3480156105de57600080fd5b506102c26105ed3660046129ee565b6111cc565b3480156105fe57600080fd5b506102c261060d3660046129ee565b611247565b34801561061e57600080fd5b506103cf61062d366004612a74565b611255565b34801561063e57600080fd5b50600d546102c29060ff1681565b34801561065857600080fd5b506103cf610667366004612a9f565b6112d4565b34801561067857600080fd5b506103cf610687366004612ad8565b61133b565b34801561069857600080fd5b5061032f600a5481565b3480156106ae57600080fd5b506103cf6106bd366004612b26565b611391565b3480156106ce57600080fd5b506103cf6106dd366004612a74565b6114f3565b3480156106ee57600080fd5b50600954610306906001600160a01b031681565b34801561070e57600080fd5b506102c261071d366004612a5b565b61167e565b34801561072e57600080fd5b5061032f600f5481565b34801561074457600080fd5b5061032f610753366004612bac565b6117be565b34801561076457600080fd5b5061032f600b5481565b34801561077a57600080fd5b506103cf610789366004612a74565b6117e9565b34801561079a57600080fd5b506103cf6107a9366004612a74565b611868565b3480156107ba57600080fd5b506103cf6118de565b3480156107cf57600080fd5b5061032f600c5481565b3480156107e557600080fd5b506102c26107f4366004612a74565b6001600160a01b03166000908152600e602052604090205460ff1690565b60606003805461082190612bda565b80601f016020809104026020016040519081016040528092919081815260200182805461084d90612bda565b801561089a5780601f1061086f5761010080835404028352916020019161089a565b820191906000526020600020905b81548152906001019060200180831161087d57829003601f168201915b5050505050905090565b6000336108b2818585611928565b60019150505b92915050565b6000336108cc858285611a4c565b6108d7858585611ac0565b506001949350505050565b6000336108b28185856108f583836117be565b6108ff9190612c2a565b611928565b61090e3382612283565b50565b6109196123b5565b610923600061240f565b565b61092d6123b5565b6001600160a01b03919091166000908152601c60205260409020805460ff1916911515919091179055565b6109606123b5565b6001600160a01b03811661098f5760405162461bcd60e51b815260040161098690612c3d565b60405180910390fd5b600880546001600160a01b038381166001600160a01b03198316811790935560405191169182917fc9f2d63eee8632b33d7a7db5252eb29036e81ee4fbe29260febe0c49ffb8a7bb90600090a35050565b6109e86123b5565b60108390556011829055601281905580610a028385612c2a565b610a0c9190612c2a565b600f819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b505050565b610a3e6123b5565b600d5460ff1615610a915760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610986565b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610af1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b159190612cab565b6001600160a01b031663e6a43905307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba69190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381865afa158015610bf1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c159190612cab565b90506001600160a01b038116610dce577f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca79190612cab565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d14573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d389190612cab565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610d85573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da99190612cab565b600680546001600160a01b0319166001600160a01b0392909216919091179055610dea565b600680546001600160a01b0319166001600160a01b0383161790555b600654610e049030906001600160a01b0316600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610e78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e9c9190612cc8565b50600654610eb4906001600160a01b03166001612461565b600654610ecb906001600160a01b03166001610925565b612710610ed760025490565b610ee2906019612ce5565b610eec9190612cfc565b600a55612710610efb60025490565b610f06906019612ce5565b610f109190612cfc565b600c5550600d805461ffff1916610101179055565b60606004805461082190612bda565b610f3c6123b5565b6103e8610f4860025490565b610f53906005612ce5565b610f5d9190612cfc565b821015610fbd5760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610986565b6103e8610fc960025490565b610fd4906005612ce5565b610fde9190612cfc565b8110156110415760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610986565b600c55600a55565b6110516123b5565b6001600160a01b03811661109e5760405162461bcd60e51b8152602060048201526014602482015273496e76616c69642070616972206164647265737360601b6044820152606401610986565b600680546001600160a01b0319166001600160a01b0383169081179091556110ca903090600019611928565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af115801561113e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111629190612cc8565b5060065461117a906001600160a01b03166001612461565b600654611191906001600160a01b03166001610925565b6006546040516001600160a01b03909116907fb7285c945543323d6c77e154e51651bef3445a7d25101ce12e1fe37e418a5b8990600090a250565b600033816111da82866117be565b90508381101561123a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610986565b6108d78286868403611928565b6000336108b2818585611ac0565b61125d6123b5565b6001600160a01b0381166112835760405162461bcd60e51b815260040161098690612c3d565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a35050565b6112dc6123b5565b6001600160a01b0382166000818152601b6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6113436123b5565b6014839055601582905560168190558061135d8385612c2a565b6113679190612c2a565b6013819055601a819055600a1015610a315760405162461bcd60e51b815260040161098690612c67565b6113996123b5565b60005b828110156114ed576006546001600160a01b03168484838181106113c2576113c2612d1e565b90506020020160208101906113d79190612a74565b6001600160a01b03161415801561144657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031684848381811061142557611425612d1e565b905060200201602081019061143a9190612a74565b6001600160a01b031614155b801561148157503084848381811061146057611460612d1e565b90506020020160208101906114759190612a74565b6001600160a01b031614155b156114db5781600e600086868581811061149d5761149d612d1e565b90506020020160208101906114b29190612a74565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806114e581612d34565b91505061139c565b50505050565b6114fb6123b5565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115669190612d4d565b1161159f5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610986565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa1580156115e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160a9190612d4d565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af115801561165a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a319190612cc8565b60006116886123b5565b620186a061169560025490565b6116a0906001612ce5565b6116aa9190612cfc565b82101561171f5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610986565b6103e861172b60025490565b611736906005612ce5565b6117409190612cfc565b8211156117b55760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610986565b50600b55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6117f16123b5565b6001600160a01b0381166118175760405162461bcd60e51b815260040161098690612c3d565b600980546001600160a01b038381166001600160a01b03198316811790935560405191169182917f061b0bef6dde0c1d705d3e3fa79862819a22ed5e6f550be7e22052a9ca7a857790600090a35050565b6118706123b5565b6001600160a01b0381166118d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b61090e8161240f565b6118e66123b5565b604051600090339047908381818185875af1925050503d80600081146114ed576040519150601f19603f3d011682016040523d82523d6000602084013e6114ed565b6001600160a01b03831661198a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b6001600160a01b0382166119eb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610986565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000611a5884846117be565b905060001981146114ed5781811015611ab35760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610986565b6114ed8484848403611928565b6001600160a01b038316611ae65760405162461bcd60e51b815260040161098690612d66565b6001600160a01b038216611b0c5760405162461bcd60e51b815260040161098690612dab565b6001600160a01b0383166000908152600e602052604090205460ff1615611b455760405162461bcd60e51b815260040161098690612dee565b336000908152600e602052604090205460ff1615611b755760405162461bcd60e51b815260040161098690612dee565b326000908152600e602052604090205460ff1615611ba55760405162461bcd60e51b815260040161098690612dee565b80600003611bb957610a31838360006124b5565b6005546001600160a01b03848116911614801590611be557506005546001600160a01b03838116911614155b8015611bf957506001600160a01b03821615155b8015611c1057506001600160a01b03821661dead14155b8015611c265750600654600160a01b900460ff16155b15611f4957600d5460ff16611cc0576001600160a01b0383166000908152601b602052604090205460ff1680611c7457506001600160a01b0382166000908152601b602052604090205460ff165b611cc05760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610986565b6001600160a01b0383166000908152601d602052604090205460ff168015611d0157506001600160a01b0382166000908152601c602052604090205460ff16155b15611df757600a54811115611d7e5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610986565b600c546001600160a01b038316600090815260208190526040902054611da49083612c2a565b1115611df25760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b611f49565b6001600160a01b0382166000908152601d602052604090205460ff168015611e3857506001600160a01b0383166000908152601c602052604090205460ff16155b15611eb557600a54811115611df25760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610986565b6001600160a01b0382166000908152601c602052604090205460ff16611f4957600c546001600160a01b038316600090815260208190526040902054611efb9083612c2a565b1115611f495760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610986565b30600090815260208190526040902054600b5481108015908190611f745750600d54610100900460ff165b8015611f8a5750600654600160a01b900460ff16155b8015611faf57506001600160a01b0385166000908152601d602052604090205460ff16155b8015611fd457506001600160a01b0385166000908152601b602052604090205460ff16155b8015611ff957506001600160a01b0384166000908152601b602052604090205460ff16155b15612027576006805460ff60a01b1916600160a01b1790556120196125df565b6006805460ff60a01b191690555b6006546001600160a01b0386166000908152601b602052604090205460ff600160a01b90920482161591168061207557506001600160a01b0385166000908152601b602052604090205460ff165b1561207e575060005b60008115612269576001600160a01b0386166000908152601d602052604090205460ff1680156120b057506000601354115b1561216e576120d560646120cf601354886127ac90919063ffffffff16565b906127bf565b9050601354601654826120e89190612ce5565b6120f29190612cfc565b601960008282546121039190612c2a565b90915550506013546014546121189083612ce5565b6121229190612cfc565b601760008282546121339190612c2a565b90915550506013546015546121489083612ce5565b6121529190612cfc565b601860008282546121639190612c2a565b9091555061224b9050565b6001600160a01b0387166000908152601d602052604090205460ff16801561219857506000600f54115b1561224b576121b760646120cf600f54886127ac90919063ffffffff16565b9050600f54601254826121ca9190612ce5565b6121d49190612cfc565b601960008282546121e59190612c2a565b9091555050600f546010546121fa9083612ce5565b6122049190612cfc565b601760008282546122159190612c2a565b9091555050600f5460115461222a9083612ce5565b6122349190612cfc565b601860008282546122459190612c2a565b90915550505b801561225c5761225c8730836124b5565b6122668186612e1b565b94505b6122748787876124b5565b5050601a546013555050505050565b6001600160a01b0382166122e35760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610986565b6001600160a01b038216600090815260208190526040902054818110156123575760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610986565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146109235760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610986565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601d6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166124db5760405162461bcd60e51b815260040161098690612d66565b6001600160a01b0382166125015760405162461bcd60e51b815260040161098690612dab565b6001600160a01b038316600090815260208190526040902054818110156125795760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610986565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36114ed565b30600090815260208190526040812054905060006018546017546019546126069190612c2a565b6126109190612c2a565b9050600082158061261f575081155b1561262957505050565b600b54612637906014612ce5565b83111561264f57600b5461264c906014612ce5565b92505b612658836127cb565b60004790506000612678846120cf601854856127ac90919063ffffffff16565b90506000612695856120cf601954866127ac90919063ffffffff16565b60006017819055601881905560198190556009546040519293506001600160a01b031691839181818185875af1925050503d80600081146126f2576040519150601f19603f3d011682016040523d82523d6000602084013e6126f7565b606091505b50506008546040519195506001600160a01b0316908390600081818185875af1925050503d8060008114612747576040519150601f19603f3d011682016040523d82523d6000602084013e61274c565b606091505b50506007546040519195506001600160a01b0316904790600081818185875af1925050503d806000811461279c576040519150601f19603f3d011682016040523d82523d6000602084013e6127a1565b606091505b505050505050505050565b60006127b88284612ce5565b9392505050565b60006127b88284612cfc565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061280057612800612d1e565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561287e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128a29190612cab565b816001815181106128b5576128b5612d1e565b60200260200101906001600160a01b031690816001600160a01b031681525050612900307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611928565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612955908590600090869030904290600401612e2e565b600060405180830381600087803b15801561296f57600080fd5b505af1158015612983573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b818110156129b85785810183015185820160400152820161299c565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461090e57600080fd5b60008060408385031215612a0157600080fd5b8235612a0c816129d9565b946020939093013593505050565b600080600060608486031215612a2f57600080fd5b8335612a3a816129d9565b92506020840135612a4a816129d9565b929592945050506040919091013590565b600060208284031215612a6d57600080fd5b5035919050565b600060208284031215612a8657600080fd5b81356127b8816129d9565b801515811461090e57600080fd5b60008060408385031215612ab257600080fd5b8235612abd816129d9565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b60008060408385031215612b1757600080fd5b50508035926020909101359150565b600080600060408486031215612b3b57600080fd5b833567ffffffffffffffff80821115612b5357600080fd5b818601915086601f830112612b6757600080fd5b813581811115612b7657600080fd5b8760208260051b8501011115612b8b57600080fd5b60209283019550935050840135612ba181612a91565b809150509250925092565b60008060408385031215612bbf57600080fd5b8235612bca816129d9565b91506020830135612acd816129d9565b600181811c90821680612bee57607f821691505b602082108103612c0e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156108b8576108b8612c14565b60208082526010908201526f045524332303a204164647265737320360841b604082015260600190565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b600060208284031215612cbd57600080fd5b81516127b8816129d9565b600060208284031215612cda57600080fd5b81516127b881612a91565b80820281158282048414176108b8576108b8612c14565b600082612d1957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612d4657612d46612c14565b5060010190565b600060208284031215612d5f57600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b602080825260139082015272115490cc8c0e88189bdd0819195d1958dd1959606a1b604082015260600190565b818103818111156108b8576108b8612c14565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612e7e5784516001600160a01b031683529383019391830191600101612e59565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122077a959e3ec255dbcdd6ed3ff0528f184874a3bcf569e0d85cc33603b8012ad4364736f6c63430008110033

Deployed Bytecode Sourcemap

36897:16258:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11632:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14133:242;;;;;;;;;;-1:-1:-1;14133:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;14133:242:0;1023:187:1;36971:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;36971:51:0;1215:230:1;12761:108:0;;;;;;;;;;-1:-1:-1;12849:12:0;;12761:108;;;1596:25:1;;;1584:2;1569:18;12761:108:0;1450:177:1;14955:295:0;;;;;;;;;;-1:-1:-1;14955:295:0;;;;;:::i;:::-;;:::i;37064:53::-;;;;;;;;;;;;37110:6;37064:53;;12603:93;;;;;;;;;;-1:-1:-1;12603:93:0;;12686:2;2443:36:1;;2431:2;2416:18;12603:93:0;2301:184:1;15659:270:0;;;;;;;;;;-1:-1:-1;15659:270:0;;;;;:::i;:::-;;:::i;40879:83::-;;;;;;;;;;-1:-1:-1;40879:83:0;;;;;:::i;:::-;;:::i;:::-;;37029:28;;;;;;;;;;-1:-1:-1;37029:28:0;;;;-1:-1:-1;;;;;37029:28:0;;;47229:126;;;;;;;;;;-1:-1:-1;47229:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;47319:28:0;47295:4;47319:28;;;:19;:28;;;;;;;;;47229:126;37722:28;;;;;;;;;;;;;;;;37428:31;;;;;;;;;;-1:-1:-1;37428:31:0;;;;;;;;;;;12932:177;;;;;;;;;;-1:-1:-1;12932:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;13083:18:0;13051:7;13083:18;;;;;;;;;;;;12932:177;5012:103;;;;;;;;;;;;;:::i;43768:167::-;;;;;;;;;;-1:-1:-1;43768:167:0;;;;;:::i;:::-;;:::i;37156:30::-;;;;;;;;;;-1:-1:-1;37156:30:0;;;;-1:-1:-1;;;;;37156:30:0;;;45287:324;;;;;;;;;;-1:-1:-1;45287:324:0;;;;;:::i;:::-;;:::i;43943:450::-;;;;;;;;;;-1:-1:-1;43943:450:0;;;;;:::i;:::-;;:::i;40973:1241::-;;;;;;;;;;;;;:::i;37193:32::-;;;;;;;;;;-1:-1:-1;37193:32:0;;;;-1:-1:-1;;;;;37193:32:0;;;4371:87;;;;;;;;;;-1:-1:-1;4444:6:0;;-1:-1:-1;;;;;4444:6:0;4371:87;;11851:104;;;;;;;;;;;;;:::i;43253:507::-;;;;;;;;;;-1:-1:-1;43253:507:0;;;;;:::i;:::-;;:::i;42218:506::-;;;;;;;;;;-1:-1:-1;42218:506:0;;;;;:::i;:::-;;:::i;16432:505::-;;;;;;;;;;-1:-1:-1;16432:505:0;;;;;:::i;:::-;;:::i;13315:234::-;;;;;;;;;;-1:-1:-1;13315:234:0;;;;;:::i;:::-;;:::i;44945:334::-;;;;;;;;;;-1:-1:-1;44945:334:0;;;;;:::i;:::-;;:::i;37388:33::-;;;;;;;;;;-1:-1:-1;37388:33:0;;;;;;;;45977:182;;;;;;;;;;-1:-1:-1;45977:182:0;;;;;:::i;:::-;;:::i;44401:536::-;;;;;;;;;;-1:-1:-1;44401:536:0;;;;;:::i;:::-;;:::i;37273:35::-;;;;;;;;;;;;;;;;46167:404;;;;;;;;;;-1:-1:-1;46167:404:0;;;;;:::i;:::-;;:::i;46770:255::-;;;;;;;;;;-1:-1:-1;46770:255:0;;;;;:::i;:::-;;:::i;37232:32::-;;;;;;;;;;-1:-1:-1;37232:32:0;;;;-1:-1:-1;;;;;37232:32:0;;;42734:511;;;;;;;;;;-1:-1:-1;42734:511:0;;;;;:::i;:::-;;:::i;37568:27::-;;;;;;;;;;;;;;;;13612:201;;;;;;;;;;-1:-1:-1;13612:201:0;;;;;:::i;:::-;;:::i;37315:33::-;;;;;;;;;;;;;;;;45619:350;;;;;;;;;;-1:-1:-1;45619:350:0;;;;;:::i;:::-;;:::i;5270:238::-;;;;;;;;;;-1:-1:-1;5270:238:0;;;;;:::i;:::-;;:::i;46579:183::-;;;;;;;;;;;;;:::i;37355:24::-;;;;;;;;;;;;;;;;47363:113;;;;;;;;;;-1:-1:-1;47363:113:0;;;;;:::i;:::-;-1:-1:-1;;;;;47448:20:0;47424:4;47448:20;;;:11;:20;;;;;;;;;47363:113;11632:100;11686:13;11719:5;11712:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11632:100;:::o;14133:242::-;14252:4;2996:10;14313:32;2996:10;14329:7;14338:6;14313:8;:32::i;:::-;14363:4;14356:11;;;14133:242;;;;;:::o;14955:295::-;15086:4;2996:10;15144:38;15160:4;2996:10;15175:6;15144:15;:38::i;:::-;15193:27;15203:4;15209:2;15213:6;15193:9;:27::i;:::-;-1:-1:-1;15238:4:0;;14955:295;-1:-1:-1;;;;14955:295:0:o;15659:270::-;15774:4;2996:10;15835:64;2996:10;15851:7;15888:10;15860:25;2996:10;15851:7;15860:9;:25::i;:::-;:38;;;;:::i;:::-;15835:8;:64::i;40879:83::-;40929:25;40935:10;40947:6;40929:5;:25::i;:::-;40879:83;:::o;5012:103::-;4257:13;:11;:13::i;:::-;5077:30:::1;5104:1;5077:18;:30::i;:::-;5012:103::o:0;43768:167::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;43881:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;43881:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43768:167::o;45287:324::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;45386:32:0;::::1;45378:61;;;;-1:-1:-1::0;;;45378:61:0::1;;;;;;;:::i;:::-;;;;;;;;;45470:17;::::0;;-1:-1:-1;;;;;45498:38:0;;::::1;-1:-1:-1::0;;;;;;45498:38:0;::::1;::::0;::::1;::::0;;;45552:51:::1;::::0;45470:17;::::1;::::0;;;45552:51:::1;::::0;45450:17:::1;::::0;45552:51:::1;45367:244;45287:324:::0;:::o;43943:450::-;4257:13;:11;:13::i;:::-;44103:15:::1;:31:::0;;;44145:17:::1;:35:::0;;;44191:17:::1;:35:::0;;;44211:15;44252:35:::1;44165:15:::0;44121:13;44252:35:::1;:::i;:::-;:55;;;;:::i;:::-;44237:12;:70:::0;;;44342:2:::1;-1:-1:-1::0;44326:18:0::1;44318:67;;;;-1:-1:-1::0;;;44318:67:0::1;;;;;;;:::i;:::-;43943:450:::0;;;:::o;40973:1241::-;4257:13;:11;:13::i;:::-;41037::::1;::::0;::::1;;41036:14;41028:50;;;::::0;-1:-1:-1;;;41028:50:0;;6758:2:1;41028:50:0::1;::::0;::::1;6740:21:1::0;6797:2;6777:18;;;6770:30;6836:25;6816:18;;;6809:53;6879:18;;41028:50:0::1;6556:347:1::0;41028:50:0::1;41136:20;41177:15;-1:-1:-1::0;;;;;41177:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41159:52:0::1;;41234:4;41254:15;-1:-1:-1::0;;;;;41254:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41159:128;::::0;-1:-1:-1;;;;;;41159:128:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;41159:128:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;41159:128:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41136:151:::0;-1:-1:-1;;;;;;41304:26:0;::::1;41300:392;;41435:15;-1:-1:-1::0;;;;;41435:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41417:55:0::1;;41499:4;41523:15;-1:-1:-1::0;;;;;41523:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41417:143;::::0;-1:-1:-1;;;;;;41417:143:0::1;::::0;;;;;;-1:-1:-1;;;;;7394:15:1;;;41417:143:0::1;::::0;::::1;7376:34:1::0;7446:15;;7426:18;;;7419:43;7311:18;;41417:143:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41401:13;:159:::0;;-1:-1:-1;;;;;;41401:159:0::1;-1:-1:-1::0;;;;;41401:159:0;;;::::1;::::0;;;::::1;::::0;;41300:392:::1;;;41652:13;:28:::0;;-1:-1:-1;;;;;;41652:28:0::1;-1:-1:-1::0;;;;;41652:28:0;::::1;;::::0;;41300:392:::1;41736:13;::::0;41704:66:::1;::::0;41721:4:::1;::::0;-1:-1:-1;;;;;41736:13:0::1;-1:-1:-1::0;;41704:8:0::1;:66::i;:::-;41788:13;::::0;41781:111:::1;::::0;-1:-1:-1;;;41781:111:0;;-1:-1:-1;;;;;41833:15:0::1;7665:32:1::0;;41781:111:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;41788:13:0;;::::1;::::0;41781:29:::1;::::0;7620:18:1;;41781:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;41942:13:0::1;::::0;41905:58:::1;::::0;-1:-1:-1;;;;;41942:13:0::1;::::0;41905:28:::1;:58::i;:::-;42008:13;::::0;41974:55:::1;::::0;-1:-1:-1;;;;;42008:13:0::1;::::0;41974:25:::1;:55::i;:::-;42088:5;42066:13;12849:12:::0;;;12761:108;42066:13:::1;:18;::::0;42082:2:::1;42066:18;:::i;:::-;42065:28;;;;:::i;:::-;42042:20;:51:::0;42139:5:::1;42117:13;12849:12:::0;;;12761:108;42117:13:::1;:18;::::0;42133:2:::1;42117:18;:::i;:::-;42116:28;;;;:::i;:::-;42104:9;:40:::0;-1:-1:-1;42157:13:0::1;:20:::0;;-1:-1:-1;;42188:18:0;;;;;40973:1241::o;11851:104::-;11907:13;11940:7;11933:14;;;;;:::i;43253:507::-;4257:13;:11;:13::i;:::-;43447:4:::1;43426:13;12849:12:::0;;;12761:108;43426:13:::1;:17;::::0;43442:1:::1;43426:17;:::i;:::-;43425:26;;;;:::i;:::-;43411:9;:41;;43389:131;;;::::0;-1:-1:-1;;;43389:131:0;;8599:2:1;43389:131:0::1;::::0;::::1;8581:21:1::0;8638:2;8618:18;;;8611:30;8677:34;8657:18;;;8650:62;-1:-1:-1;;;8728:18:1;;;8721:38;8776:19;;43389:131:0::1;8397:404:1::0;43389:131:0::1;43595:4;43574:13;12849:12:::0;;;12761:108;43574:13:::1;:17;::::0;43590:1:::1;43574:17;:::i;:::-;43573:26;;;;:::i;:::-;43553:15;:47;;43531:140;;;::::0;-1:-1:-1;;;43531:140:0;;9008:2:1;43531:140:0::1;::::0;::::1;8990:21:1::0;9047:2;9027:18;;;9020:30;9086:34;9066:18;;;9059:62;-1:-1:-1;;;9137:18:1;;;9130:41;9188:19;;43531:140:0::1;8806:407:1::0;43531:140:0::1;43682:9;:27:::0;43720:20:::1;:32:::0;43253:507::o;42218:506::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;42293:19:0;::::1;42285:52;;;::::0;-1:-1:-1;;;42285:52:0;;9420:2:1;42285:52:0::1;::::0;::::1;9402:21:1::0;9459:2;9439:18;;;9432:30;-1:-1:-1;;;9478:18:1;;;9471:50;9538:18;;42285:52:0::1;9218:344:1::0;42285:52:0::1;42344:13;:21:::0;;-1:-1:-1;;;;;;42344:21:0::1;-1:-1:-1::0;;;;;42344:21:0;::::1;::::0;;::::1;::::0;;;42374:66:::1;::::0;42391:4:::1;::::0;-1:-1:-1;;42374:8:0::1;:66::i;:::-;42454:13;::::0;42447:99:::1;::::0;-1:-1:-1;;;42447:99:0;;-1:-1:-1;;;;;42495:15:0::1;7665:32:1::0;;42447:99:0::1;::::0;::::1;7647:51:1::0;-1:-1:-1;;7714:18:1;;;7707:34;42454:13:0;;::::1;::::0;42447:29:::1;::::0;7620:18:1;;42447:99:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;42592:13:0::1;::::0;42555:58:::1;::::0;-1:-1:-1;;;;;42592:13:0::1;::::0;42555:28:::1;:58::i;:::-;42654:13;::::0;42620:55:::1;::::0;-1:-1:-1;;;;;42654:13:0::1;::::0;42620:25:::1;:55::i;:::-;42706:13;::::0;42689:31:::1;::::0;-1:-1:-1;;;;;42706:13:0;;::::1;::::0;42689:31:::1;::::0;42706:13:::1;::::0;42689:31:::1;42218:506:::0;:::o;16432:505::-;16552:4;2996:10;16552:4;16640:25;2996:10;16657:7;16640:9;:25::i;:::-;16613:52;;16718:15;16698:16;:35;;16676:122;;;;-1:-1:-1;;;16676:122:0;;9769:2:1;16676:122:0;;;9751:21:1;9808:2;9788:18;;;9781:30;9847:34;9827:18;;;9820:62;-1:-1:-1;;;9898:18:1;;;9891:35;9943:19;;16676:122:0;9567:401:1;16676:122:0;16834:60;16843:5;16850:7;16878:15;16859:16;:34;16834:8;:60::i;13315:234::-;13430:4;2996:10;13491:28;2996:10;13508:2;13512:6;13491:9;:28::i;44945:334::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;45063:30:0;::::1;45055:59;;;;-1:-1:-1::0;;;45055:59:0::1;;;;;;;:::i;:::-;45145:15;::::0;;-1:-1:-1;;;;;45171:34:0;;::::1;-1:-1:-1::0;;;;;;45171:34:0;::::1;::::0;::::1;::::0;;;45221:50:::1;::::0;45145:15;::::1;::::0;;;45221:50:::1;::::0;45125:17:::1;::::0;45221:50:::1;45044:235;44945:334:::0;:::o;45977:182::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;46062:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;46062:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;46117:34;;1163:41:1;;;46117:34:0::1;::::0;1136:18:1;46117:34:0::1;;;;;;;45977:182:::0;;:::o;44401:536::-;4257:13;:11;:13::i;:::-;44562:16:::1;:32:::0;;;44605:18:::1;:36:::0;;;44652:18:::1;:36:::0;;;44673:15;44728:50:::1;44626:15:::0;44581:13;44728:50:::1;:::i;:::-;:84;;;;:::i;:::-;44699:13;:113:::0;;;44823:11:::1;:27:::0;;;44886:2:::1;-1:-1:-1::0;44869:19:0::1;44861:68;;;;-1:-1:-1::0;;;44861:68:0::1;;;;;;;:::i;46167:404::-:0;4257:13;:11;:13::i;:::-;46283:9:::1;46278:286;46298:19:::0;;::::1;46278:286;;;46377:13;::::0;-1:-1:-1;;;;;46377:13:0::1;46362:8:::0;;46371:1;46362:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46362:28:0::1;;;46361:92;;;;;46436:15;-1:-1:-1::0;;;;;46413:39:0::1;:8;;46422:1;46413:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46413:39:0::1;;;46361:92;:143;;;;-1:-1:-1::0;46498:4:0::1;46475:8:::0;;46484:1;46475:11;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46475:28:0::1;;;46361:143;46339:213;;;46547:5;46520:11;:24;46532:8;;46541:1;46532:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46520:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;46520:24:0;:32;;-1:-1:-1;;46520:32:0::1;::::0;::::1;;::::0;;;::::1;::::0;;46339:213:::1;46319:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46278:286;;;;46167:404:::0;;;:::o;46770:255::-;4257:13;:11;:13::i;:::-;46848:36:::1;::::0;-1:-1:-1;;;46848:36:0;;46878:4:::1;46848:36;::::0;::::1;1388:51:1::0;46887:1:0::1;::::0;-1:-1:-1;;;;;46848:21:0;::::1;::::0;::::1;::::0;1361:18:1;;46848:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;46840:62;;;::::0;-1:-1:-1;;;46840:62:0;;10636:2:1;46840:62:0::1;::::0;::::1;10618:21:1::0;10675:1;10655:18;;;10648:29;-1:-1:-1;;;10693:18:1;;;10686:39;10742:18;;46840:62:0::1;10434:332:1::0;46840:62:0::1;46930:36;::::0;-1:-1:-1;;;46930:36:0;;46960:4:::1;46930:36;::::0;::::1;1388:51:1::0;46913:14:0::1;::::0;-1:-1:-1;;;;;46930:21:0;::::1;::::0;::::1;::::0;1361:18:1;;46930:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46977:40;::::0;-1:-1:-1;;;46977:40:0;;46998:10:::1;46977:40;::::0;::::1;7647:51:1::0;7714:18;;;7707:34;;;46913:53:0;;-1:-1:-1;;;;;;46977:20:0;::::1;::::0;::::1;::::0;7620:18:1;;46977:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;42734:511::-:0;42842:4;4257:13;:11;:13::i;:::-;42921:6:::1;42900:13;12849:12:::0;;;12761:108;42900:13:::1;:17;::::0;42916:1:::1;42900:17;:::i;:::-;42899:28;;;;:::i;:::-;42886:9;:41;;42864:151;;;::::0;-1:-1:-1;;;42864:151:0;;10973:2:1;42864:151:0::1;::::0;::::1;10955:21:1::0;11012:2;10992:18;;;10985:30;11051:34;11031:18;;;11024:62;11122:30;11102:18;;;11095:58;11170:19;;42864:151:0::1;10771:424:1::0;42864:151:0::1;43083:4;43062:13;12849:12:::0;;;12761:108;43062:13:::1;:17;::::0;43078:1:::1;43062:17;:::i;:::-;43061:26;;;;:::i;:::-;43048:9;:39;;43026:148;;;::::0;-1:-1:-1;;;43026:148:0;;11402:2:1;43026:148:0::1;::::0;::::1;11384:21:1::0;11441:2;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;11551:29;11531:18;;;11524:57;11598:19;;43026:148:0::1;11200:423:1::0;43026:148:0::1;-1:-1:-1::0;43185:18:0::1;:30:::0;43233:4:::1;::::0;42734:511::o;13612:201::-;-1:-1:-1;;;;;13778:18:0;;;13746:7;13778:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13612:201::o;45619:350::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;45741:32:0;::::1;45733:61;;;;-1:-1:-1::0;;;45733:61:0::1;;;;;;;:::i;:::-;45825:17;::::0;;-1:-1:-1;;;;;45853:38:0;;::::1;-1:-1:-1::0;;;;;;45853:38:0;::::1;::::0;::::1;::::0;;;45907:54:::1;::::0;45825:17;::::1;::::0;;;45907:54:::1;::::0;45805:17:::1;::::0;45907:54:::1;45722:247;45619:350:::0;:::o;5270:238::-;4257:13;:11;:13::i;:::-;-1:-1:-1;;;;;5373:22:0;::::1;5351:110;;;::::0;-1:-1:-1;;;5351:110:0;;11830:2:1;5351:110:0::1;::::0;::::1;11812:21:1::0;11869:2;11849:18;;;11842:30;11908:34;11888:18;;;11881:62;-1:-1:-1;;;11959:18:1;;;11952:36;12005:19;;5351:110:0::1;11628:402:1::0;5351:110:0::1;5472:28;5491:8;5472:18;:28::i;46579:183::-:0;4257:13;:11;:13::i;:::-;46672:82:::1;::::0;46635:12:::1;::::0;46680:10:::1;::::0;46704:21:::1;::::0;46635:12;46672:82;46635:12;46672:82;46704:21;46680:10;46672:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20565:380:::0;-1:-1:-1;;;;;20701:19:0;;20693:68;;;;-1:-1:-1;;;20693:68:0;;12447:2:1;20693:68:0;;;12429:21:1;12486:2;12466:18;;;12459:30;12525:34;12505:18;;;12498:62;-1:-1:-1;;;12576:18:1;;;12569:34;12620:19;;20693:68:0;12245:400:1;20693:68:0;-1:-1:-1;;;;;20780:21:0;;20772:68;;;;-1:-1:-1;;;20772:68:0;;12852:2:1;20772:68:0;;;12834:21:1;12891:2;12871:18;;;12864:30;12930:34;12910:18;;;12903:62;-1:-1:-1;;;12981:18:1;;;12974:32;13023:19;;20772:68:0;12650:398:1;20772:68:0;-1:-1:-1;;;;;20853:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20905:32;;1596:25:1;;;20905:32:0;;1569:18:1;20905:32:0;;;;;;;20565:380;;;:::o;21236:502::-;21371:24;21398:25;21408:5;21415:7;21398:9;:25::i;:::-;21371:52;;-1:-1:-1;;21438:16:0;:37;21434:297;;21538:6;21518:16;:26;;21492:117;;;;-1:-1:-1;;;21492:117:0;;13255:2:1;21492:117:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:31;13313:18;;;13306:59;13382:18;;21492:117:0;13053:353:1;21492:117:0;21653:51;21662:5;21669:7;21697:6;21678:16;:25;21653:8;:51::i;47484:3932::-;-1:-1:-1;;;;;47616:18:0;;47608:68;;;;-1:-1:-1;;;47608:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47695:16:0;;47687:64;;;;-1:-1:-1;;;47687:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47771:17:0;;;;;;:11;:17;;;;;;;;47770:18;47762:50;;;;-1:-1:-1;;;47762:50:0;;;;;;;:::i;:::-;47844:10;47832:23;;;;:11;:23;;;;;;;;47831:24;47823:56;;;;-1:-1:-1;;;47823:56:0;;;;;;;:::i;:::-;47911:9;47899:22;;;;:11;:22;;;;;;;;47898:23;47890:55;;;;-1:-1:-1;;;47890:55:0;;;;;;;:::i;:::-;47962:6;47972:1;47962:11;47958:93;;47990:28;48006:4;48012:2;48016:1;47990:15;:28::i;47958:93::-;4444:6;;-1:-1:-1;;;;;48081:15:0;;;4444:6;;48081:15;;;;:45;;-1:-1:-1;4444:6:0;;-1:-1:-1;;;;;48113:13:0;;;4444:6;;48113:13;;48081:45;:78;;;;-1:-1:-1;;;;;;48143:16:0;;;;48081:78;:112;;;;-1:-1:-1;;;;;;48176:17:0;;37110:6;48176:17;;48081:112;:138;;;;-1:-1:-1;48211:8:0;;-1:-1:-1;;;48211:8:0;;;;48210:9;48081:138;48063:1503;;;48251:13;;;;48246:210;;-1:-1:-1;;;;;48315:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;48344:23:0;;;;;;:19;:23;;;;;;;;48315:52;48285:155;;;;-1:-1:-1;;;48285:155:0;;14771:2:1;48285:155:0;;;14753:21:1;14810:2;14790:18;;;14783:30;14849:31;14829:18;;;14822:59;14898:18;;48285:155:0;14569:353:1;48285:155:0;-1:-1:-1;;;;;48514:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;48567:35:0;;;;;;:31;:35;;;;;;;;48566:36;48514:88;48492:1063;;;48677:20;;48667:6;:30;;48637:164;;;;-1:-1:-1;;;48637:164:0;;15129:2:1;48637:164:0;;;15111:21:1;15168:2;15148:18;;;15141:30;15207:34;15187:18;;;15180:62;15278:30;15258:18;;;15251:58;15326:19;;48637:164:0;14927:424:1;48637:164:0;48876:9;;-1:-1:-1;;;;;13083:18:0;;13051:7;13083:18;;;;;;;;;;;48850:22;;:6;:22;:::i;:::-;:35;;48820:135;;;;-1:-1:-1;;;48820:135:0;;15558:2:1;48820:135:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:28;15616:18;;;15609:56;15682:18;;48820:135:0;15356:350:1;48820:135:0;48492:1063;;;-1:-1:-1;;;;;49033:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;49084:37:0;;;;;;:31;:37;;;;;;;;49083:38;49033:88;49011:544;;;49196:20;;49186:6;:30;;49156:165;;;;-1:-1:-1;;;49156:165:0;;15913:2:1;49156:165:0;;;15895:21:1;15952:2;15932:18;;;15925:30;15991:34;15971:18;;;15964:62;16062:31;16042:18;;;16035:59;16111:19;;49156:165:0;15711:425:1;49011:544:0;-1:-1:-1;;;;;49348:35:0;;;;;;:31;:35;;;;;;;;49343:212;;49460:9;;-1:-1:-1;;;;;13083:18:0;;13051:7;13083:18;;;;;;;;;;;49434:22;;:6;:22;:::i;:::-;:35;;49404:135;;;;-1:-1:-1;;;49404:135:0;;15558:2:1;49404:135:0;;;15540:21:1;15597:2;15577:18;;;15570:30;15636:28;15616:18;;;15609:56;15682:18;;49404:135:0;15356:350:1;49404:135:0;49627:4;49578:28;13083:18;;;;;;;;;;;49685;;49661:42;;;;;;;49734:35;;-1:-1:-1;49758:11:0;;;;;;;49734:35;:61;;;;-1:-1:-1;49787:8:0;;-1:-1:-1;;;49787:8:0;;;;49786:9;49734:61;:110;;;;-1:-1:-1;;;;;;49813:31:0;;;;;;:25;:31;;;;;;;;49812:32;49734:110;:153;;;;-1:-1:-1;;;;;;49862:25:0;;;;;;:19;:25;;;;;;;;49861:26;49734:153;:194;;;;-1:-1:-1;;;;;;49905:23:0;;;;;;:19;:23;;;;;;;;49904:24;49734:194;49716:326;;;49955:8;:15;;-1:-1:-1;;;;49955:15:0;-1:-1:-1;;;49955:15:0;;;49987:10;:8;:10::i;:::-;50014:8;:16;;-1:-1:-1;;;;50014:16:0;;;49716:326;50070:8;;-1:-1:-1;;;;;50095:25:0;;50054:12;50095:25;;;:19;:25;;;;;;50070:8;-1:-1:-1;;;50070:8:0;;;;;50069:9;;50095:25;;:52;;-1:-1:-1;;;;;;50124:23:0;;;;;;:19;:23;;;;;;;;50095:52;50091:100;;;-1:-1:-1;50174:5:0;50091:100;50203:12;50236:7;50232:1093;;;-1:-1:-1;;;;;50288:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;50337:1;50321:13;;:17;50288:50;50284:892;;;50366:34;50396:3;50366:25;50377:13;;50366:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;50359:41;;50515:13;;50472:18;;50465:4;:25;;;;:::i;:::-;50464:64;;;;:::i;:::-;50419:20;;:109;;;;;;;:::i;:::-;;;;-1:-1:-1;;50597:13:0;;50577:16;;50570:23;;:4;:23;:::i;:::-;50569:41;;;;:::i;:::-;50547:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;50683:13:0;;50661:18;;50654:25;;:4;:25;:::i;:::-;50653:43;;;;:::i;:::-;50629:20;;:67;;;;;;;:::i;:::-;;;;-1:-1:-1;50284:892:0;;-1:-1:-1;50284:892:0;;-1:-1:-1;;;;;50758:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;50808:1;50793:12;;:16;50758:51;50754:422;;;50837:33;50866:3;50837:24;50848:12;;50837:6;:10;;:24;;;;:::i;:33::-;50830:40;;50984:12;;50942:17;;50935:4;:24;;;;:::i;:::-;50934:62;;;;:::i;:::-;50889:20;;:107;;;;;;;:::i;:::-;;;;-1:-1:-1;;51064:12:0;;51045:15;;51038:22;;:4;:22;:::i;:::-;51037:39;;;;:::i;:::-;51015:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;51148:12:0;;51127:17;;51120:24;;:4;:24;:::i;:::-;51119:41;;;;:::i;:::-;51095:20;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;;50754:422:0;51196:8;;51192:91;;51225:42;51241:4;51255;51262;51225:15;:42::i;:::-;51299:14;51309:4;51299:14;;:::i;:::-;;;50232:1093;51337:33;51353:4;51359:2;51363:6;51337:15;:33::i;:::-;-1:-1:-1;;51397:11:0;;51381:13;:27;-1:-1:-1;;;;;47484:3932:0:o;19452:675::-;-1:-1:-1;;;;;19536:21:0;;19528:67;;;;-1:-1:-1;;;19528:67:0;;16476:2:1;19528:67:0;;;16458:21:1;16515:2;16495:18;;;16488:30;16554:34;16534:18;;;16527:62;-1:-1:-1;;;16605:18:1;;;16598:31;16646:19;;19528:67:0;16274:397:1;19528:67:0;-1:-1:-1;;;;;19695:18:0;;19670:22;19695:18;;;;;;;;;;;19732:24;;;;19724:71;;;;-1:-1:-1;;;19724:71:0;;16878:2:1;19724:71:0;;;16860:21:1;16917:2;16897:18;;;16890:30;16956:34;16936:18;;;16929:62;-1:-1:-1;;;17007:18:1;;;17000:32;17049:19;;19724:71:0;16676:398:1;19724:71:0;-1:-1:-1;;;;;19831:18:0;;:9;:18;;;;;;;;;;;19852:23;;;19831:44;;19970:12;:22;;;;;;;20021:37;1596:25:1;;;19831:9:0;;:18;20021:37;;1569:18:1;20021:37:0;;;;;;;43943:450;;;:::o;4536:132::-;4444:6;;-1:-1:-1;;;;;4444:6:0;2996:10;4600:23;4592:68;;;;-1:-1:-1;;;4592:68:0;;17281:2:1;4592:68:0;;;17263:21:1;;;17300:18;;;17293:30;17359:34;17339:18;;;17332:62;17411:18;;4592:68:0;17079:356:1;5668:191:0;5761:6;;;-1:-1:-1;;;;;5778:17:0;;;-1:-1:-1;;;;;;5778:17:0;;;;;;;5811:40;;5761:6;;;5778:17;5761:6;;5811:40;;5742:16;;5811:40;5731:128;5668:191;:::o;47033:188::-;-1:-1:-1;;;;;47116:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;47116:39:0;;;;;;;;;;47173:40;;47116:39;;:31;47173:40;;;47033:188;;:::o;17407:877::-;-1:-1:-1;;;;;17538:18:0;;17530:68;;;;-1:-1:-1;;;17530:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17617:16:0;;17609:64;;;;-1:-1:-1;;;17609:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17759:15:0;;17737:19;17759:15;;;;;;;;;;;17807:21;;;;17785:109;;;;-1:-1:-1;;;17785:109:0;;17642:2:1;17785:109:0;;;17624:21:1;17681:2;17661:18;;;17654:30;17720:34;17700:18;;;17693:62;-1:-1:-1;;;17771:18:1;;;17764:36;17817:19;;17785:109:0;17440:402:1;17785:109:0;-1:-1:-1;;;;;17930:15:0;;;:9;:15;;;;;;;;;;;17948:20;;;17930:38;;18148:13;;;;;;;;;;:23;;;;;;18200:26;;1596:25:1;;;18148:13:0;;18200:26;;1569:18:1;18200:26:0;;;;;;;18239:37;43943:450;51907:1245;51990:4;51946:23;13083:18;;;;;;;;;;;51946:50;;52007:25;52105:20;;52071:18;;52035:20;;:54;;;;:::i;:::-;:90;;;;:::i;:::-;52007:118;-1:-1:-1;52136:12:0;52165:20;;;:46;;-1:-1:-1;52189:22:0;;52165:46;52161:85;;;52228:7;;;51907:1245::o;52161:85::-;52280:18;;:23;;52301:2;52280:23;:::i;:::-;52262:15;:41;52258:115;;;52338:18;;:23;;52359:2;52338:23;:::i;:::-;52320:41;;52258:115;52385:33;52402:15;52385:16;:33::i;:::-;52431:18;52452:21;52431:42;;52486:25;52514:83;52569:17;52514:36;52529:20;;52514:10;:14;;:36;;;;:::i;:83::-;52486:111;;52610:25;52638:87;52707:17;52638:50;52667:20;;52638:10;:28;;:50;;;;:::i;:87::-;52759:1;52738:18;:22;;;52771:20;:24;;;52806:20;:24;;;52865:17;;52857:85;;52610:115;;-1:-1:-1;;;;;;52865:17:0;;52610:115;;52857:85;52759:1;52857:85;52610:115;52865:17;52857:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52977:17:0;;52969:61;;52843:99;;-1:-1:-1;;;;;;52977:17:0;;53008;;52969:61;;;;53008:17;52977;52969:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;53065:15:0;;53057:87;;52955:75;;-1:-1:-1;;;;;;53065:15:0;;53108:21;;53057:87;;;;53108:21;53065:15;53057:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;51907:1245:0:o;26913:98::-;26971:7;26998:5;27002:1;26998;:5;:::i;:::-;26991:12;26913:98;-1:-1:-1;;;26913:98:0:o;27312:::-;27370:7;27397:5;27401:1;27397;:5;:::i;51424:475::-;51514:16;;;51528:1;51514:16;;;;;;;;51490:21;;51514:16;;;;;;;;;;-1:-1:-1;51514:16:0;51490:40;;51559:4;51541;51546:1;51541:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;51541:23:0;;;-1:-1:-1;;;;;51541:23:0;;;;;51585:15;-1:-1:-1;;;;;51585:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51575:4;51580:1;51575:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;51575:32:0;;;-1:-1:-1;;;;;51575:32:0;;;;;51620:62;51637:4;51652:15;51670:11;51620:8;:62::i;:::-;51695:196;;-1:-1:-1;;;51695:196:0;;-1:-1:-1;;;;;51695:15:0;:66;;;;:196;;51776:11;;51802:1;;51818:4;;51845;;51865:15;;51695:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51479:420;51424:475;:::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;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:316::-;3514:6;3522;3530;3583:2;3571:9;3562:7;3558:23;3554:32;3551:52;;;3599:1;3596;3589:12;3551:52;-1:-1:-1;;3622:23:1;;;3692:2;3677:18;;3664:32;;-1:-1:-1;3743:2:1;3728:18;;;3715:32;;3437:316;-1:-1:-1;3437:316:1:o;3758:248::-;3826:6;3834;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;-1:-1:-1;;3926:23:1;;;3996:2;3981:18;;;3968:32;;-1:-1:-1;3758:248:1:o;4011:750::-;4103:6;4111;4119;4172:2;4160:9;4151:7;4147:23;4143:32;4140:52;;;4188:1;4185;4178:12;4140:52;4228:9;4215:23;4257:18;4298:2;4290:6;4287:14;4284:34;;;4314:1;4311;4304:12;4284:34;4352:6;4341:9;4337:22;4327:32;;4397:7;4390:4;4386:2;4382:13;4378:27;4368:55;;4419:1;4416;4409:12;4368:55;4459:2;4446:16;4485:2;4477:6;4474:14;4471:34;;;4501:1;4498;4491:12;4471:34;4556:7;4549:4;4539:6;4536:1;4532:14;4528:2;4524:23;4520:34;4517:47;4514:67;;;4577:1;4574;4567:12;4514:67;4608:4;4600:13;;;;-1:-1:-1;4632:6:1;-1:-1:-1;;4673:20:1;;4660:34;4703:28;4660:34;4703:28;:::i;:::-;4750:5;4740:15;;;4011:750;;;;;:::o;4766:388::-;4834:6;4842;4895:2;4883:9;4874:7;4870:23;4866:32;4863:52;;;4911:1;4908;4901:12;4863:52;4950:9;4937:23;4969:31;4994:5;4969:31;:::i;:::-;5019:5;-1:-1:-1;5076:2:1;5061:18;;5048:32;5089:33;5048:32;5089:33;:::i;5159:380::-;5238:1;5234:12;;;;5281;;;5302:61;;5356:4;5348:6;5344:17;5334:27;;5302:61;5409:2;5401:6;5398:14;5378:18;5375:38;5372:161;;5455:10;5450:3;5446:20;5443:1;5436:31;5490:4;5487:1;5480:15;5518:4;5515:1;5508:15;5372:161;;5159:380;;;:::o;5544:127::-;5605:10;5600:3;5596:20;5593:1;5586:31;5636:4;5633:1;5626:15;5660:4;5657:1;5650:15;5676:125;5741:9;;;5762:10;;;5759:36;;;5775:18;;:::i;5806:340::-;6008:2;5990:21;;;6047:2;6027:18;;;6020:30;-1:-1:-1;;;6081:2:1;6066:18;;6059:46;6137:2;6122:18;;5806:340::o;6151:400::-;6353:2;6335:21;;;6392:2;6372:18;;;6365:30;6431:34;6426:2;6411:18;;6404:62;-1:-1:-1;;;6497:2:1;6482:18;;6475:34;6541:3;6526:19;;6151:400::o;6908:251::-;6978:6;7031:2;7019:9;7010:7;7006:23;7002:32;6999:52;;;7047:1;7044;7037:12;6999:52;7079:9;7073:16;7098:31;7123:5;7098:31;:::i;7752:245::-;7819:6;7872:2;7860:9;7851:7;7847:23;7843:32;7840:52;;;7888:1;7885;7878:12;7840:52;7920:9;7914:16;7939:28;7961:5;7939:28;:::i;8002:168::-;8075:9;;;8106;;8123:15;;;8117:22;;8103:37;8093:71;;8144:18;;:::i;8175:217::-;8215:1;8241;8231:132;;8285:10;8280:3;8276:20;8273:1;8266:31;8320:4;8317:1;8310:15;8348:4;8345:1;8338:15;8231:132;-1:-1:-1;8377:9:1;;8175:217::o;9973:127::-;10034:10;10029:3;10025:20;10022:1;10015:31;10065:4;10062:1;10055:15;10089:4;10086:1;10079:15;10105:135;10144:3;10165:17;;;10162:43;;10185:18;;:::i;:::-;-1:-1:-1;10232:1:1;10221:13;;10105:135::o;10245:184::-;10315:6;10368:2;10356:9;10347:7;10343:23;10339:32;10336:52;;;10384:1;10381;10374:12;10336:52;-1:-1:-1;10407:16:1;;10245:184;-1:-1:-1;10245:184:1:o;13411:401::-;13613:2;13595:21;;;13652:2;13632:18;;;13625:30;13691:34;13686:2;13671:18;;13664:62;-1:-1:-1;;;13757:2:1;13742:18;;13735:35;13802:3;13787:19;;13411:401::o;13817:399::-;14019:2;14001:21;;;14058:2;14038:18;;;14031:30;14097:34;14092:2;14077:18;;14070:62;-1:-1:-1;;;14163:2:1;14148:18;;14141:33;14206:3;14191:19;;13817:399::o;14221:343::-;14423:2;14405:21;;;14462:2;14442:18;;;14435:30;-1:-1:-1;;;14496:2:1;14481:18;;14474:49;14555:2;14540:18;;14221:343::o;16141:128::-;16208:9;;;16229:11;;;16226:37;;;16243:18;;:::i;17979:980::-;18241:4;18289:3;18278:9;18274:19;18320:6;18309:9;18302:25;18346:2;18384:6;18379:2;18368:9;18364:18;18357:34;18427:3;18422:2;18411:9;18407:18;18400:31;18451:6;18486;18480:13;18517:6;18509;18502:22;18555:3;18544:9;18540:19;18533:26;;18594:2;18586:6;18582:15;18568:29;;18615:1;18625:195;18639:6;18636:1;18633:13;18625:195;;;18704:13;;-1:-1:-1;;;;;18700:39:1;18688:52;;18795:15;;;;18760:12;;;;18736:1;18654:9;18625:195;;;-1:-1:-1;;;;;;;18876:32:1;;;;18871:2;18856:18;;18849:60;-1:-1:-1;;;18940:3:1;18925:19;18918:35;18837:3;17979:980;-1:-1:-1;;;17979:980:1:o

Swarm Source

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