ETH Price: $3,464.70 (+1.57%)

Token

OpenScriptAI (OSAI)
 

Overview

Max Total Supply

10,000,000 OSAI

Holders

126

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
400,000 OSAI

Value
$0.00
0x839095fac574f02d06d0e5011649614fbfde0940
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:
OpenScriptAI

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-12-18
*/

/*
Website: https://openscript.io/
Telegram: https://t.me/OpenScriptOfficial
X: https://x.com/OpenScriptAI
*/
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.17;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    mapping (address => bool) private _blacklist;

    bool private swapping;

    address public developmentWallet;

    uint256 public swapTokensAtAmount;

    uint256 public maxBuyAmount;
    uint256 public maxSellAmount;
    uint256 public maxWallet;

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

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

    uint256 public buyFee;

    uint256 public sellFee;

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

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


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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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


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

    event AutoNukeLP();

    event ManualNukeLP();
    event MaxTransactionExclusion(address _address, bool excluded);

    constructor() ERC20("OpenScriptAI", "OSAI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        uniswapV2Router = _uniswapV2Router;

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


        uint256 totalSupply = 1_000_0000 * 1e18;

        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        maxBuyAmount = (totalSupply * 2) / 100; // 2
        maxSellAmount = (totalSupply * 2) / 100; // 2
        maxWallet = (totalSupply * 2) / 100; // 0.5%

        buyFee = 20; // 20% buy fee for launch, reduced to 4
        sellFee = 20; // 20% sell fee for launch, reduced to 4

        developmentWallet = 0x9Dfcd8e8CeC341076FBD1308E58347E3d9145996; // set as Development Wallet

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

        _excludeFromMaxTransaction(owner(), true);
        _excludeFromMaxTransaction(address(this), true);
        _excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsInEffect = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }


    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
       uint256 _fee
    ) external onlyOwner {
        buyFee = _fee;
    }

    function updateSellFees(
        uint256 _fee
    ) external onlyOwner {
        sellFee = _fee;
    }

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

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

    function excludeFromMaxTransaction(address updAds, bool isEx)
        external
        onlyOwner
    {
        if (!isEx) {
            require(
                updAds != uniswapV2Pair,
                "Cannot remove uniswap pair from max txn"
            );
        }
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updatedevelopmentWallet(address _developmentwallet)
        external
        onlyOwner
    {
        emit developmentWalletUpdated(_developmentwallet, developmentWallet);
        developmentWallet = _developmentwallet;
    }

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

    event BoughtEarly(address indexed sniper);

    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(!_blacklist[from] && !_blacklist[to], "You are a bot");

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellFee > 0) {
                fees = amount.mul(sellFee).div(100);
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyFee > 0) {
                fees = amount.mul(buyFee).div(100);
            }

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

            amount -= fees;
        }

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

    function addBL(address account, bool isBlacklisted) public onlyOwner {
        _blacklist[account] = isBlacklisted;
    }
 
    function multiBL(address[] memory multiblacklist_) public onlyOwner {
        for (uint256 i = 0; i < multiblacklist_.length; i++) {
            _blacklist[multiblacklist_[i]] = true;
        }
    }

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

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0 ) {
            return;
        }

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

        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(contractBalance);
        uint256 deltaETH = address(this).balance.sub(initialETHBalance);
        // transfer to fee wallet
        if (deltaETH > 0) {
            (success,) = developmentWallet.call{value: deltaETH}("");
        }
        
    }

    function manualSwap() public {
        require(msg.sender == developmentWallet, "Only Development Wallet Can Call this function");
        swapBack();
    }
}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"MaxTransactionExclusion","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"developmentWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isBlacklisted","type":"bool"}],"name":"addBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"multiblacklist_","type":"address[]"}],"name":"multiBL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","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":[{"internalType":"address","name":"_developmentwallet","type":"address"}],"name":"updatedevelopmentWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff19166001908117909155600e805460ff191690911790553480156200003057600080fd5b506040518060400160405280600c81526020016b4f70656e536372697074414960a01b815250604051806040016040528060048152602001634f53414960e01b8152508160039081620000849190620006db565b506004620000938282620006db565b505050620000b0620000aa6200038160201b60201c565b62000385565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa15801562000107573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200012d9190620007a7565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a19190620007a7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001ef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002159190620007a7565b6001600160a01b031660a081905262000230906001620003d7565b60a051620002409060016200043a565b6a084595161401484a0000006127106200025c826005620007ef565b6200026891906200080f565b60085560646200027a826002620007ef565b6200028691906200080f565b600955606462000298826002620007ef565b620002a491906200080f565b600a556064620002b6826002620007ef565b620002c291906200080f565b600b556014600f81905560105560078054610100600160a81b031916749dfcd8e8cec341076fbd1308e58347e3d914599600179055620003166200030e6005546001600160a01b031690565b60016200048e565b620003233060016200048e565b6200033261dead60016200048e565b62000351620003496005546001600160a01b031690565b6001620003d7565b6200035e306001620003d7565b6200036d61dead6001620003d7565b6200037933826200054d565b505062000848565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260126020908152604091829020805460ff19168515159081179091558251938452908301527f6b4f1be9103e6cbcd38ca4a922334f2c3109b260130a6676a987f94088fd6746910160405180910390a15050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004ee5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004e5565b8060026000828254620005b9919062000832565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e890849062000832565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200066257607f821691505b6020821081036200068357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063257600081815260208120601f850160051c81016020861015620006b25750805b601f850160051c820191505b81811015620006d357828155600101620006be565b505050505050565b81516001600160401b03811115620006f757620006f762000637565b6200070f816200070884546200064d565b8462000689565b602080601f8311600181146200074757600084156200072e5750858301515b600019600386901b1c1916600185901b178555620006d3565b600085815260208120601f198616915b82811015620007785788860151825594840194600190910190840162000757565b5085821015620007975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007ba57600080fd5b81516001600160a01b0381168114620007d257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620008095762000809620007d9565b92915050565b6000826200082d57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620008095762000809620007d9565b60805160a0516124806200089f6000396000818161042901528181610bbb01528181610d8801526115ca0152600081816103360152818161158c01528181611e2701528181611ee00152611f1c01526124806000f3fe60806040526004361061026b5760003560e01c806388e765ff11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610775578063e2f45605146107bb578063e884f260146107d1578063eba4c333146107e6578063f2fde38b14610806578063f8b45b051461082657600080fd5b8063c0246668146106d6578063c04a5414146106f6578063c79c04fd1461071b578063c876d0b91461073b578063d257b34f1461075557600080fd5b806395d89b411161010857806395d89b41146106125780639a7a23d614610627578063a457c2d714610647578063a9059cbb14610667578063b62496f514610687578063bbc0c742146106b757600080fd5b806388e765ff146105895780638a8c523c1461059f5780638da5cb5b146105b457806390a0bb35146105d2578063924de9b7146105f257600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c957806370a08231146104e9578063715018a61461051f57806371fc468814610534578063751039fc146105545780637571336a1461056957600080fd5b806349bd5a5e146104175780634a62bb651461044b5780634fbee1931461046557806351bc3c851461049e57806366d602ae146104b357600080fd5b806318160ddd1161022f57806318160ddd1461037057806323b872dd1461038f5780632b14ca56146103af578063313ce567146103c557806339509351146103e1578063470624021461040157600080fd5b806306fdde0314610277578063095ea7b3146102a25780630f822e80146102d257806310d5de53146102f45780631694505e1461032457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c61083c565b6040516102999190611f9c565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd36600461200a565b6108ce565b6040519015158152602001610299565b3480156102de57600080fd5b506102f26102ed36600461204c565b6108e5565b005b34801561030057600080fd5b506102c261030f366004612111565b60126020526000908152604090205460ff1681565b34801561033057600080fd5b506103587f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610299565b34801561037c57600080fd5b506002545b604051908152602001610299565b34801561039b57600080fd5b506102c26103aa36600461212e565b610984565b3480156103bb57600080fd5b5061038160105481565b3480156103d157600080fd5b5060405160128152602001610299565b3480156103ed57600080fd5b506102c26103fc36600461200a565b610a2e565b34801561040d57600080fd5b50610381600f5481565b34801561042357600080fd5b506103587f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b50600c546102c29060ff1681565b34801561047157600080fd5b506102c2610480366004612111565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104aa57600080fd5b506102f2610a6a565b3480156104bf57600080fd5b50610381600a5481565b3480156104d557600080fd5b50600c546102c29062010000900460ff1681565b3480156104f557600080fd5b50610381610504366004612111565b6001600160a01b031660009081526020819052604090205490565b34801561052b57600080fd5b506102f2610aea565b34801561054057600080fd5b506102f261054f36600461216f565b610b1e565b34801561056057600080fd5b506102c2610b4d565b34801561057557600080fd5b506102f2610584366004612198565b610b8a565b34801561059557600080fd5b5061038160095481565b3480156105ab57600080fd5b506102f2610c75565b3480156105c057600080fd5b506005546001600160a01b0316610358565b3480156105de57600080fd5b506102f26105ed366004612198565b610cb2565b3480156105fe57600080fd5b506102f261060d3660046121cd565b610d07565b34801561061e57600080fd5b5061028c610d4d565b34801561063357600080fd5b506102f2610642366004612198565b610d5c565b34801561065357600080fd5b506102c261066236600461200a565b610e37565b34801561067357600080fd5b506102c261068236600461200a565b610ed0565b34801561069357600080fd5b506102c26106a2366004612111565b60136020526000908152604090205460ff1681565b3480156106c357600080fd5b50600c546102c290610100900460ff1681565b3480156106e257600080fd5b506102f26106f1366004612198565b610edd565b34801561070257600080fd5b506007546103589061010090046001600160a01b031681565b34801561072757600080fd5b506102f2610736366004612111565b610f66565b34801561074757600080fd5b50600e546102c29060ff1681565b34801561076157600080fd5b506102c261077036600461216f565b610ff8565b34801561078157600080fd5b506103816107903660046121e8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107c757600080fd5b5061038160085481565b3480156107dd57600080fd5b506102c261114f565b3480156107f257600080fd5b506102f261080136600461216f565b61118c565b34801561081257600080fd5b506102f2610821366004612111565b6111bb565b34801561083257600080fd5b50610381600b5481565b60606003805461084b90612221565b80601f016020809104026020016040519081016040528092919081815260200182805461087790612221565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108db338484611256565b5060015b92915050565b6005546001600160a01b031633146109185760405162461bcd60e51b815260040161090f9061225b565b60405180910390fd5b60005b81518110156109805760016006600084848151811061093c5761093c612290565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610978816122bc565b91505061091b565b5050565b600061099184848461137a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a165760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161090f565b610a238533858403611256565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108db918590610a659086906122d5565b611256565b60075461010090046001600160a01b03163314610ae05760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c7920446576656c6f706d656e742057616c6c65742043616e2043616c6c60448201526d103a3434b990333ab731ba34b7b760911b606482015260840161090f565b610ae8611af5565b565b6005546001600160a01b03163314610b145760405162461bcd60e51b815260040161090f9061225b565b610ae86000611bb7565b6005546001600160a01b03163314610b485760405162461bcd60e51b815260040161090f9061225b565b600f55565b6005546000906001600160a01b03163314610b7a5760405162461bcd60e51b815260040161090f9061225b565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb45760405162461bcd60e51b815260040161090f9061225b565b80610c4a577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610c4a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b606482015260840161090f565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b815260040161090f9061225b565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b815260040161090f9061225b565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d315760405162461bcd60e51b815260040161090f9061225b565b600c8054911515620100000262ff000019909216919091179055565b60606004805461084b90612221565b6005546001600160a01b03163314610d865760405162461bcd60e51b815260040161090f9061225b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610e2d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161090f565b6109808282611c09565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610eb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090f565b610ec63385858403611256565b5060019392505050565b60006108db33848461137a565b6005546001600160a01b03163314610f075760405162461bcd60e51b815260040161090f9061225b565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f905760405162461bcd60e51b815260040161090f9061225b565b6007546040516001600160a01b036101009092048216918316907ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546000906001600160a01b031633146110255760405162461bcd60e51b815260040161090f9061225b565b620186a061103260025490565b61103d9060016122e8565b61104791906122ff565b8210156110b45760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161090f565b6103e86110c060025490565b6110cb9060056122e8565b6110d591906122ff565b8211156111415760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161090f565b50600881905560015b919050565b6005546000906001600160a01b0316331461117c5760405162461bcd60e51b815260040161090f9061225b565b50600e805460ff19169055600190565b6005546001600160a01b031633146111b65760405162461bcd60e51b815260040161090f9061225b565b601055565b6005546001600160a01b031633146111e55760405162461bcd60e51b815260040161090f9061225b565b6001600160a01b03811661124a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090f565b61125381611bb7565b50565b6001600160a01b0383166112b85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090f565b6001600160a01b0382166113195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113a05760405162461bcd60e51b815260040161090f90612321565b6001600160a01b0382166113c65760405162461bcd60e51b815260040161090f90612366565b6001600160a01b03831660009081526006602052604090205460ff1615801561140857506001600160a01b03821660009081526006602052604090205460ff16155b6114445760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b604482015260640161090f565b8060000361145d5761145883836000611c5d565b505050565b600c5460ff16156118fa576005546001600160a01b0384811691161480159061149457506005546001600160a01b03838116911614155b80156114a857506001600160a01b03821615155b80156114bf57506001600160a01b03821661dead14155b80156114ce575060075460ff16155b156118fa57600c54610100900460ff16611566576001600160a01b03831660009081526011602052604090205460ff168061152157506001600160a01b03821660009081526011602052604090205460ff165b6115665760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161090f565b600e5460ff16156116ad576005546001600160a01b038381169116148015906115c157507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156115ff57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156116ad57326000908152600d6020526040902054431161169a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161090f565b326000908152600d602052604090204390555b6001600160a01b03831660009081526013602052604090205460ff1680156116ee57506001600160a01b03821660009081526012602052604090205460ff16155b156117c5576009548111156117565760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b606482015260840161090f565b600b546001600160a01b03831660009081526020819052604090205461177c90836122d5565b11156117c05760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08115e18d959591959606a1b604482015260640161090f565b6118fa565b6001600160a01b03821660009081526013602052604090205460ff16801561180657506001600160a01b03831660009081526012602052604090205460ff16155b1561187057600a548111156117c05760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b606482015260840161090f565b6001600160a01b03821660009081526012602052604090205460ff166118fa57600b546001600160a01b0383166000908152602081905260409020546118b690836122d5565b11156118fa5760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08115e18d959591959606a1b604482015260640161090f565b30600090815260208190526040902054600854811080159081906119265750600c5462010000900460ff165b8015611935575060075460ff16155b801561195a57506001600160a01b03851660009081526013602052604090205460ff16155b801561197f57506001600160a01b03851660009081526011602052604090205460ff16155b80156119a457506001600160a01b03841660009081526011602052604090205460ff16155b156119c9576007805460ff191660011790556119be611af5565b6007805460ff191690555b6007546001600160a01b03861660009081526011602052604090205460ff91821615911680611a1057506001600160a01b03851660009081526011602052604090205460ff165b15611a19575060005b60008115611ae1576001600160a01b03861660009081526013602052604090205460ff168015611a4b57506000601054115b15611a7757611a706064611a6a60105488611db190919063ffffffff16565b90611dc4565b9050611ac3565b6001600160a01b03871660009081526013602052604090205460ff168015611aa157506000600f54115b15611ac357611ac06064611a6a600f5488611db190919063ffffffff16565b90505b8015611ad457611ad4873083611c5d565b611ade81866123a9565b94505b611aec878787611c5d565b50505050505050565b3060009081526020819052604081205490818103611b11575050565b600854611b1f9060146122e8565b821115611b3757600854611b349060146122e8565b91505b47611b4183611dd0565b6000611b4d4783611f90565b90508015611bb1576007546040516101009091046001600160a01b0316908290600081818185875af1925050503d8060008114611ba6576040519150601f19603f3d011682016040523d82523d6000602084013e611bab565b606091505b50909350505b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c835760405162461bcd60e51b815260040161090f90612321565b6001600160a01b038216611ca95760405162461bcd60e51b815260040161090f90612366565b6001600160a01b03831660009081526020819052604090205481811015611d215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d589084906122d5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611da491815260200190565b60405180910390a3611bb1565b6000611dbd82846122e8565b9392505050565b6000611dbd82846122ff565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e0557611e05612290565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea791906123bc565b81600181518110611eba57611eba612290565b60200260200101906001600160a01b031690816001600160a01b031681525050611f05307f000000000000000000000000000000000000000000000000000000000000000084611256565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611f5a9085906000908690309042906004016123d9565b600060405180830381600087803b158015611f7457600080fd5b505af1158015611f88573d6000803e3d6000fd5b505050505050565b6000611dbd82846123a9565b600060208083528351808285015260005b81811015611fc957858101830151858201604001528201611fad565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461125357600080fd5b803561114a81611fea565b6000806040838503121561201d57600080fd5b823561202881611fea565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561205f57600080fd5b823567ffffffffffffffff8082111561207757600080fd5b818501915085601f83011261208b57600080fd5b81358181111561209d5761209d612036565b8060051b604051601f19603f830116810181811085821117156120c2576120c2612036565b6040529182528482019250838101850191888311156120e057600080fd5b938501935b82851015612105576120f685611fff565b845293850193928501926120e5565b98975050505050505050565b60006020828403121561212357600080fd5b8135611dbd81611fea565b60008060006060848603121561214357600080fd5b833561214e81611fea565b9250602084013561215e81611fea565b929592945050506040919091013590565b60006020828403121561218157600080fd5b5035919050565b8035801515811461114a57600080fd5b600080604083850312156121ab57600080fd5b82356121b681611fea565b91506121c460208401612188565b90509250929050565b6000602082840312156121df57600080fd5b611dbd82612188565b600080604083850312156121fb57600080fd5b823561220681611fea565b9150602083013561221681611fea565b809150509250929050565b600181811c9082168061223557607f821691505b60208210810361225557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122ce576122ce6122a6565b5060010190565b808201808211156108df576108df6122a6565b80820281158282048414176108df576108df6122a6565b60008261231c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108df576108df6122a6565b6000602082840312156123ce57600080fd5b8151611dbd81611fea565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124295784516001600160a01b031683529383019391830191600101612404565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201dd111dddbdd4f20182dee9bb7d1eb36225aee25b95266725fa91fac6174fe8464736f6c63430008110033

Deployed Bytecode

0x60806040526004361061026b5760003560e01c806388e765ff11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610775578063e2f45605146107bb578063e884f260146107d1578063eba4c333146107e6578063f2fde38b14610806578063f8b45b051461082657600080fd5b8063c0246668146106d6578063c04a5414146106f6578063c79c04fd1461071b578063c876d0b91461073b578063d257b34f1461075557600080fd5b806395d89b411161010857806395d89b41146106125780639a7a23d614610627578063a457c2d714610647578063a9059cbb14610667578063b62496f514610687578063bbc0c742146106b757600080fd5b806388e765ff146105895780638a8c523c1461059f5780638da5cb5b146105b457806390a0bb35146105d2578063924de9b7146105f257600080fd5b806349bd5a5e116101dd5780636ddd1713116101a15780636ddd1713146104c957806370a08231146104e9578063715018a61461051f57806371fc468814610534578063751039fc146105545780637571336a1461056957600080fd5b806349bd5a5e146104175780634a62bb651461044b5780634fbee1931461046557806351bc3c851461049e57806366d602ae146104b357600080fd5b806318160ddd1161022f57806318160ddd1461037057806323b872dd1461038f5780632b14ca56146103af578063313ce567146103c557806339509351146103e1578063470624021461040157600080fd5b806306fdde0314610277578063095ea7b3146102a25780630f822e80146102d257806310d5de53146102f45780631694505e1461032457600080fd5b3661027257005b600080fd5b34801561028357600080fd5b5061028c61083c565b6040516102999190611f9c565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd36600461200a565b6108ce565b6040519015158152602001610299565b3480156102de57600080fd5b506102f26102ed36600461204c565b6108e5565b005b34801561030057600080fd5b506102c261030f366004612111565b60126020526000908152604090205460ff1681565b34801561033057600080fd5b506103587f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610299565b34801561037c57600080fd5b506002545b604051908152602001610299565b34801561039b57600080fd5b506102c26103aa36600461212e565b610984565b3480156103bb57600080fd5b5061038160105481565b3480156103d157600080fd5b5060405160128152602001610299565b3480156103ed57600080fd5b506102c26103fc36600461200a565b610a2e565b34801561040d57600080fd5b50610381600f5481565b34801561042357600080fd5b506103587f0000000000000000000000007ed9c410a7e53ed12bfeee916a2c3df51a72352c81565b34801561045757600080fd5b50600c546102c29060ff1681565b34801561047157600080fd5b506102c2610480366004612111565b6001600160a01b031660009081526011602052604090205460ff1690565b3480156104aa57600080fd5b506102f2610a6a565b3480156104bf57600080fd5b50610381600a5481565b3480156104d557600080fd5b50600c546102c29062010000900460ff1681565b3480156104f557600080fd5b50610381610504366004612111565b6001600160a01b031660009081526020819052604090205490565b34801561052b57600080fd5b506102f2610aea565b34801561054057600080fd5b506102f261054f36600461216f565b610b1e565b34801561056057600080fd5b506102c2610b4d565b34801561057557600080fd5b506102f2610584366004612198565b610b8a565b34801561059557600080fd5b5061038160095481565b3480156105ab57600080fd5b506102f2610c75565b3480156105c057600080fd5b506005546001600160a01b0316610358565b3480156105de57600080fd5b506102f26105ed366004612198565b610cb2565b3480156105fe57600080fd5b506102f261060d3660046121cd565b610d07565b34801561061e57600080fd5b5061028c610d4d565b34801561063357600080fd5b506102f2610642366004612198565b610d5c565b34801561065357600080fd5b506102c261066236600461200a565b610e37565b34801561067357600080fd5b506102c261068236600461200a565b610ed0565b34801561069357600080fd5b506102c26106a2366004612111565b60136020526000908152604090205460ff1681565b3480156106c357600080fd5b50600c546102c290610100900460ff1681565b3480156106e257600080fd5b506102f26106f1366004612198565b610edd565b34801561070257600080fd5b506007546103589061010090046001600160a01b031681565b34801561072757600080fd5b506102f2610736366004612111565b610f66565b34801561074757600080fd5b50600e546102c29060ff1681565b34801561076157600080fd5b506102c261077036600461216f565b610ff8565b34801561078157600080fd5b506103816107903660046121e8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107c757600080fd5b5061038160085481565b3480156107dd57600080fd5b506102c261114f565b3480156107f257600080fd5b506102f261080136600461216f565b61118c565b34801561081257600080fd5b506102f2610821366004612111565b6111bb565b34801561083257600080fd5b50610381600b5481565b60606003805461084b90612221565b80601f016020809104026020016040519081016040528092919081815260200182805461087790612221565b80156108c45780601f10610899576101008083540402835291602001916108c4565b820191906000526020600020905b8154815290600101906020018083116108a757829003601f168201915b5050505050905090565b60006108db338484611256565b5060015b92915050565b6005546001600160a01b031633146109185760405162461bcd60e51b815260040161090f9061225b565b60405180910390fd5b60005b81518110156109805760016006600084848151811061093c5761093c612290565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610978816122bc565b91505061091b565b5050565b600061099184848461137a565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a165760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161090f565b610a238533858403611256565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916108db918590610a659086906122d5565b611256565b60075461010090046001600160a01b03163314610ae05760405162461bcd60e51b815260206004820152602e60248201527f4f6e6c7920446576656c6f706d656e742057616c6c65742043616e2043616c6c60448201526d103a3434b990333ab731ba34b7b760911b606482015260840161090f565b610ae8611af5565b565b6005546001600160a01b03163314610b145760405162461bcd60e51b815260040161090f9061225b565b610ae86000611bb7565b6005546001600160a01b03163314610b485760405162461bcd60e51b815260040161090f9061225b565b600f55565b6005546000906001600160a01b03163314610b7a5760405162461bcd60e51b815260040161090f9061225b565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb45760405162461bcd60e51b815260040161090f9061225b565b80610c4a577f0000000000000000000000007ed9c410a7e53ed12bfeee916a2c3df51a72352c6001600160a01b0316826001600160a01b031603610c4a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f742072656d6f766520756e697377617020706169722066726f6d2060448201526636b0bc103a3c3760c91b606482015260840161090f565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c9f5760405162461bcd60e51b815260040161090f9061225b565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610cdc5760405162461bcd60e51b815260040161090f9061225b565b6001600160a01b03919091166000908152600660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610d315760405162461bcd60e51b815260040161090f9061225b565b600c8054911515620100000262ff000019909216919091179055565b60606004805461084b90612221565b6005546001600160a01b03163314610d865760405162461bcd60e51b815260040161090f9061225b565b7f0000000000000000000000007ed9c410a7e53ed12bfeee916a2c3df51a72352c6001600160a01b0316826001600160a01b031603610e2d5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161090f565b6109808282611c09565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610eb95760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161090f565b610ec63385858403611256565b5060019392505050565b60006108db33848461137a565b6005546001600160a01b03163314610f075760405162461bcd60e51b815260040161090f9061225b565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610f905760405162461bcd60e51b815260040161090f9061225b565b6007546040516001600160a01b036101009092048216918316907ffaf1b77ed79f6e898c44dd8ab36b330c7b2fd39bcaab05ed6362480df870396590600090a3600780546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546000906001600160a01b031633146110255760405162461bcd60e51b815260040161090f9061225b565b620186a061103260025490565b61103d9060016122e8565b61104791906122ff565b8210156110b45760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161090f565b6103e86110c060025490565b6110cb9060056122e8565b6110d591906122ff565b8211156111415760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161090f565b50600881905560015b919050565b6005546000906001600160a01b0316331461117c5760405162461bcd60e51b815260040161090f9061225b565b50600e805460ff19169055600190565b6005546001600160a01b031633146111b65760405162461bcd60e51b815260040161090f9061225b565b601055565b6005546001600160a01b031633146111e55760405162461bcd60e51b815260040161090f9061225b565b6001600160a01b03811661124a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161090f565b61125381611bb7565b50565b6001600160a01b0383166112b85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161090f565b6001600160a01b0382166113195760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161090f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166113a05760405162461bcd60e51b815260040161090f90612321565b6001600160a01b0382166113c65760405162461bcd60e51b815260040161090f90612366565b6001600160a01b03831660009081526006602052604090205460ff1615801561140857506001600160a01b03821660009081526006602052604090205460ff16155b6114445760405162461bcd60e51b815260206004820152600d60248201526c165bdd48185c99481848189bdd609a1b604482015260640161090f565b8060000361145d5761145883836000611c5d565b505050565b600c5460ff16156118fa576005546001600160a01b0384811691161480159061149457506005546001600160a01b03838116911614155b80156114a857506001600160a01b03821615155b80156114bf57506001600160a01b03821661dead14155b80156114ce575060075460ff16155b156118fa57600c54610100900460ff16611566576001600160a01b03831660009081526011602052604090205460ff168061152157506001600160a01b03821660009081526011602052604090205460ff165b6115665760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161090f565b600e5460ff16156116ad576005546001600160a01b038381169116148015906115c157507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156115ff57507f0000000000000000000000007ed9c410a7e53ed12bfeee916a2c3df51a72352c6001600160a01b0316826001600160a01b031614155b156116ad57326000908152600d6020526040902054431161169a5760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161090f565b326000908152600d602052604090204390555b6001600160a01b03831660009081526013602052604090205460ff1680156116ee57506001600160a01b03821660009081526012602052604090205460ff16155b156117c5576009548111156117565760405162461bcd60e51b815260206004820152602860248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526736b0bc10313abc9760c11b606482015260840161090f565b600b546001600160a01b03831660009081526020819052604090205461177c90836122d5565b11156117c05760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08115e18d959591959606a1b604482015260640161090f565b6118fa565b6001600160a01b03821660009081526013602052604090205460ff16801561180657506001600160a01b03831660009081526012602052604090205460ff16155b1561187057600a548111156117c05760405162461bcd60e51b815260206004820152602a60248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152691036b0bc1039b2b6361760b11b606482015260840161090f565b6001600160a01b03821660009081526012602052604090205460ff166118fa57600b546001600160a01b0383166000908152602081905260409020546118b690836122d5565b11156118fa5760405162461bcd60e51b815260206004820152601360248201527213585e0815d85b1b195d08115e18d959591959606a1b604482015260640161090f565b30600090815260208190526040902054600854811080159081906119265750600c5462010000900460ff165b8015611935575060075460ff16155b801561195a57506001600160a01b03851660009081526013602052604090205460ff16155b801561197f57506001600160a01b03851660009081526011602052604090205460ff16155b80156119a457506001600160a01b03841660009081526011602052604090205460ff16155b156119c9576007805460ff191660011790556119be611af5565b6007805460ff191690555b6007546001600160a01b03861660009081526011602052604090205460ff91821615911680611a1057506001600160a01b03851660009081526011602052604090205460ff165b15611a19575060005b60008115611ae1576001600160a01b03861660009081526013602052604090205460ff168015611a4b57506000601054115b15611a7757611a706064611a6a60105488611db190919063ffffffff16565b90611dc4565b9050611ac3565b6001600160a01b03871660009081526013602052604090205460ff168015611aa157506000600f54115b15611ac357611ac06064611a6a600f5488611db190919063ffffffff16565b90505b8015611ad457611ad4873083611c5d565b611ade81866123a9565b94505b611aec878787611c5d565b50505050505050565b3060009081526020819052604081205490818103611b11575050565b600854611b1f9060146122e8565b821115611b3757600854611b349060146122e8565b91505b47611b4183611dd0565b6000611b4d4783611f90565b90508015611bb1576007546040516101009091046001600160a01b0316908290600081818185875af1925050503d8060008114611ba6576040519150601f19603f3d011682016040523d82523d6000602084013e611bab565b606091505b50909350505b50505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260136020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c835760405162461bcd60e51b815260040161090f90612321565b6001600160a01b038216611ca95760405162461bcd60e51b815260040161090f90612366565b6001600160a01b03831660009081526020819052604090205481811015611d215760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161090f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d589084906122d5565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611da491815260200190565b60405180910390a3611bb1565b6000611dbd82846122e8565b9392505050565b6000611dbd82846122ff565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611e0557611e05612290565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611e83573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ea791906123bc565b81600181518110611eba57611eba612290565b60200260200101906001600160a01b031690816001600160a01b031681525050611f05307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611256565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611f5a9085906000908690309042906004016123d9565b600060405180830381600087803b158015611f7457600080fd5b505af1158015611f88573d6000803e3d6000fd5b505050505050565b6000611dbd82846123a9565b600060208083528351808285015260005b81811015611fc957858101830151858201604001528201611fad565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461125357600080fd5b803561114a81611fea565b6000806040838503121561201d57600080fd5b823561202881611fea565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b6000602080838503121561205f57600080fd5b823567ffffffffffffffff8082111561207757600080fd5b818501915085601f83011261208b57600080fd5b81358181111561209d5761209d612036565b8060051b604051601f19603f830116810181811085821117156120c2576120c2612036565b6040529182528482019250838101850191888311156120e057600080fd5b938501935b82851015612105576120f685611fff565b845293850193928501926120e5565b98975050505050505050565b60006020828403121561212357600080fd5b8135611dbd81611fea565b60008060006060848603121561214357600080fd5b833561214e81611fea565b9250602084013561215e81611fea565b929592945050506040919091013590565b60006020828403121561218157600080fd5b5035919050565b8035801515811461114a57600080fd5b600080604083850312156121ab57600080fd5b82356121b681611fea565b91506121c460208401612188565b90509250929050565b6000602082840312156121df57600080fd5b611dbd82612188565b600080604083850312156121fb57600080fd5b823561220681611fea565b9150602083013561221681611fea565b809150509250929050565b600181811c9082168061223557607f821691505b60208210810361225557634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016122ce576122ce6122a6565b5060010190565b808201808211156108df576108df6122a6565b80820281158282048414176108df576108df6122a6565b60008261231c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b818103818111156108df576108df6122a6565b6000602082840312156123ce57600080fd5b8151611dbd81611fea565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124295784516001600160a01b031683529383019391830191600101612404565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212201dd111dddbdd4f20182dee9bb7d1eb36225aee25b95266725fa91fac6174fe8464736f6c63430008110033

Deployed Bytecode Sourcemap

32236:12904:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9647:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11814:169;;;;;;;;;;-1:-1:-1;11814:169:0;;;;;:::i;:::-;;:::i;:::-;;;1327:14:1;;1320:22;1302:41;;1290:2;1275:18;11814:169:0;1162:187:1;43505:203:0;;;;;;;;;;-1:-1:-1;43505:203:0;;;;;:::i;:::-;;:::i;:::-;;33236:63;;;;;;;;;;-1:-1:-1;33236:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32318:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3055:32:1;;;3037:51;;3025:2;3010:18;32318:51:0;2864:230:1;10767:108:0;;;;;;;;;;-1:-1:-1;10855:12:0;;10767:108;;;3245:25:1;;;3233:2;3218:18;10767:108:0;3099:177:1;12465:492:0;;;;;;;;;;-1:-1:-1;12465:492:0;;;;;:::i;:::-;;:::i;33065:22::-;;;;;;;;;;;;;;;;10609:93;;;;;;;;;;-1:-1:-1;10609:93:0;;10692:2;3884:36:1;;3872:2;3857:18;10609:93:0;3742:184:1;13366:215:0;;;;;;;;;;-1:-1:-1;13366:215:0;;;;;:::i;:::-;;:::i;33035:21::-;;;;;;;;;;;;;;;;32376:38;;;;;;;;;;;;;;;32689:33;;;;;;;;;;-1:-1:-1;32689:33:0;;;;;;;;38917:126;;;;;;;;;;-1:-1:-1;38917:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39007:28:0;38983:4;39007:28;;;:19;:28;;;;;;;;;38917:126;44978:159;;;;;;;;;;;;;:::i;32621:28::-;;;;;;;;;;;;;;;;32769:31;;;;;;;;;;-1:-1:-1;32769:31:0;;;;;;;;;;;10938:127;;;;;;;;;;-1:-1:-1;10938:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;11039:18:0;11012:7;11039:18;;;;;;;;;;;;10938:127;2882:103;;;;;;;;;;;;;:::i;37169:::-;;;;;;;;;;-1:-1:-1;37169:103:0;;;;;:::i;:::-;;:::i;36079:121::-;;;;;;;;;;;;;:::i;37813:341::-;;;;;;;;;;-1:-1:-1;37813:341:0;;;;;:::i;:::-;;:::i;32587:27::-;;;;;;;;;;;;;;;;35915:112;;;;;;;;;;;;;:::i;2231:87::-;;;;;;;;;;-1:-1:-1;2304:6:0;;-1:-1:-1;;;;;2304:6:0;2231:87;;43373:123;;;;;;;;;;-1:-1:-1;43373:123:0;;;;;:::i;:::-;;:::i;37061:100::-;;;;;;;;;;-1:-1:-1;37061:100:0;;;;;:::i;:::-;;:::i;9866:104::-;;;;;;;;;;;;;:::i;38162:304::-;;;;;;;;;;-1:-1:-1;38162:304:0;;;;;:::i;:::-;;:::i;14084:413::-;;;;;;;;;;-1:-1:-1;14084:413:0;;;;;:::i;:::-;;:::i;11278:175::-;;;;;;;;;;-1:-1:-1;11278:175:0;;;;;:::i;:::-;;:::i;33490:57::-;;;;;;;;;;-1:-1:-1;33490:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32729:33;;;;;;;;;;-1:-1:-1;32729:33:0;;;;;;;;;;;37394:182;;;;;;;;;;-1:-1:-1;37394:182:0;;;;;:::i;:::-;;:::i;32504:32::-;;;;;;;;;;-1:-1:-1;32504:32:0;;;;;;;-1:-1:-1;;;;;32504:32:0;;;38670:239;;;;;;;;;;-1:-1:-1;38670:239:0;;;;;:::i;:::-;;:::i;32987:39::-;;;;;;;;;;-1:-1:-1;32987:39:0;;;;;;;;36466:497;;;;;;;;;;-1:-1:-1;36466:497:0;;;;;:::i;:::-;;:::i;11516:151::-;;;;;;;;;;-1:-1:-1;11516:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11632:18:0;;;11605:7;11632:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11516:151;32545:33;;;;;;;;;;;;;;;;36261:135;;;;;;;;;;;;;:::i;37280:106::-;;;;;;;;;;-1:-1:-1;37280:106:0;;;;;:::i;:::-;;:::i;3140:201::-;;;;;;;;;;-1:-1:-1;3140:201:0;;;;;:::i;:::-;;:::i;32656:24::-;;;;;;;;;;;;;;;;9647:100;9701:13;9734:5;9727:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9647:100;:::o;11814:169::-;11897:4;11914:39;984:10;11937:7;11946:6;11914:8;:39::i;:::-;-1:-1:-1;11971:4:0;11814:169;;;;;:::o;43505:203::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;;;;;;;;;43589:9:::1;43584:117;43608:15;:22;43604:1;:26;43584:117;;;43685:4;43652:10;:30;43663:15;43679:1;43663:18;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;43652:30:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;43652:30:0;:37;;-1:-1:-1;;43652:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43632:3;::::1;::::0;::::1;:::i;:::-;;;;43584:117;;;;43505:203:::0;:::o;12465:492::-;12605:4;12622:36;12632:6;12640:9;12651:6;12622:9;:36::i;:::-;-1:-1:-1;;;;;12698:19:0;;12671:24;12698:19;;;:11;:19;;;;;;;;984:10;12698:33;;;;;;;;12750:26;;;;12742:79;;;;-1:-1:-1;;;12742:79:0;;6739:2:1;12742:79:0;;;6721:21:1;6778:2;6758:18;;;6751:30;6817:34;6797:18;;;6790:62;-1:-1:-1;;;6868:18:1;;;6861:38;6916:19;;12742:79:0;6537:404:1;12742:79:0;12857:57;12866:6;984:10;12907:6;12888:16;:25;12857:8;:57::i;:::-;-1:-1:-1;12945:4:0;;12465:492;-1:-1:-1;;;;12465:492:0:o;13366:215::-;984:10;13454:4;13503:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13503:34:0;;;;;;;;;;13454:4;;13471:80;;13494:7;;13503:47;;13540:10;;13503:47;:::i;:::-;13471:8;:80::i;44978:159::-;45040:17;;;;;-1:-1:-1;;;;;45040:17:0;45026:10;:31;45018:90;;;;-1:-1:-1;;;45018:90:0;;7278:2:1;45018:90:0;;;7260:21:1;7317:2;7297:18;;;7290:30;7356:34;7336:18;;;7329:62;-1:-1:-1;;;7407:18:1;;;7400:44;7461:19;;45018:90:0;7076:410:1;45018:90:0;45119:10;:8;:10::i;:::-;44978:159::o;2882:103::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;2947:30:::1;2974:1;2947:18;:30::i;37169:103::-:0;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;37251:6:::1;:13:::0;37169:103::o;36079:121::-;2304:6;;36131:4;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;-1:-1:-1;36148:14:0::1;:22:::0;;-1:-1:-1;;36148:22:0::1;::::0;;;36079:121;:::o;37813:341::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;37933:4:::1;37928:162;;37990:13;-1:-1:-1::0;;;;;37980:23:0::1;:6;-1:-1:-1::0;;;;;37980:23:0::1;::::0;37954:124:::1;;;::::0;-1:-1:-1;;;37954:124:0;;7693:2:1;37954:124:0::1;::::0;::::1;7675:21:1::0;7732:2;7712:18;;;7705:30;7771:34;7751:18;;;7744:62;-1:-1:-1;;;7822:18:1;;;7815:37;7869:19;;37954:124:0::1;7491:403:1::0;37954:124:0::1;-1:-1:-1::0;;;;;38100:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;38100:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37813:341::o;35915:112::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;35970:13:::1;:20:::0;;-1:-1:-1;;36001:18:0;;;;;35915:112::o;43373:123::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43453:19:0;;;::::1;;::::0;;;:10:::1;:19;::::0;;;;:35;;-1:-1:-1;;43453:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;43373:123::o;37061:100::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;37132:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37132:21:0;;::::1;::::0;;;::::1;::::0;;37061:100::o;9866:104::-;9922:13;9955:7;9948:14;;;;;:::i;38162:304::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;38306:13:::1;-1:-1:-1::0;;;;;38298:21:0::1;:4;-1:-1:-1::0;;;;;38298:21:0::1;::::0;38276:128:::1;;;::::0;-1:-1:-1;;;38276:128:0;;8101:2:1;38276:128:0::1;::::0;::::1;8083:21:1::0;8140:2;8120:18;;;8113:30;8179:34;8159:18;;;8152:62;8250:27;8230:18;;;8223:55;8295:19;;38276:128:0::1;7899:421:1::0;38276:128:0::1;38417:41;38446:4;38452:5;38417:28;:41::i;14084:413::-:0;984:10;14177:4;14221:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14221:34:0;;;;;;;;;;14274:35;;;;14266:85;;;;-1:-1:-1;;;14266:85:0;;8527:2:1;14266:85:0;;;8509:21:1;8566:2;8546:18;;;8539:30;8605:34;8585:18;;;8578:62;-1:-1:-1;;;8656:18:1;;;8649:35;8701:19;;14266:85:0;8325:401:1;14266:85:0;14387:67;984:10;14410:7;14438:15;14419:16;:34;14387:8;:67::i;:::-;-1:-1:-1;14485:4:0;;14084:413;-1:-1:-1;;;14084:413:0:o;11278:175::-;11364:4;11381:42;984:10;11405:9;11416:6;11381:9;:42::i;37394:182::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37479:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37479:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37534:34;;1302:41:1;;;37534:34:0::1;::::0;1275:18:1;37534:34:0::1;;;;;;;37394:182:::0;;:::o;38670:239::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;38834:17:::1;::::0;38789:63:::1;::::0;-1:-1:-1;;;;;38834:17:0::1;::::0;;::::1;::::0;::::1;::::0;38789:63;::::1;::::0;::::1;::::0;;;::::1;38863:17;:38:::0;;-1:-1:-1;;;;;38863:38:0;;::::1;;;-1:-1:-1::0;;;;;;38863:38:0;;::::1;::::0;;;::::1;::::0;;38670:239::o;36466:497::-;2304:6;;36574:4;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;36653:6:::1;36632:13;10855:12:::0;;;10767:108;36632:13:::1;:17;::::0;36648:1:::1;36632:17;:::i;:::-;36631:28;;;;:::i;:::-;36618:9;:41;;36596:144;;;::::0;-1:-1:-1;;;36596:144:0;;9328:2:1;36596:144:0::1;::::0;::::1;9310:21:1::0;9367:2;9347:18;;;9340:30;9406:34;9386:18;;;9379:62;-1:-1:-1;;;9457:18:1;;;9450:51;9518:19;;36596:144:0::1;9126:417:1::0;36596:144:0::1;36808:4;36787:13;10855:12:::0;;;10767:108;36787:13:::1;:17;::::0;36803:1:::1;36787:17;:::i;:::-;36786:26;;;;:::i;:::-;36773:9;:39;;36751:141;;;::::0;-1:-1:-1;;;36751:141:0;;9750:2:1;36751:141:0::1;::::0;::::1;9732:21:1::0;9789:2;9769:18;;;9762:30;9828:34;9808:18;;;9801:62;-1:-1:-1;;;9879:18:1;;;9872:50;9939:19;;36751:141:0::1;9548:416:1::0;36751:141:0::1;-1:-1:-1::0;36903:18:0::1;:30:::0;;;36951:4:::1;2522:1;36466:497:::0;;;:::o;36261:135::-;2304:6;;36321:4;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;-1:-1:-1;36338:20:0::1;:28:::0;;-1:-1:-1;;36338:28:0::1;::::0;;;36261:135;:::o;37280:106::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;37364:7:::1;:14:::0;37280:106::o;3140:201::-;2304:6;;-1:-1:-1;;;;;2304:6:0;984:10;2451:23;2443:68;;;;-1:-1:-1;;;2443:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3229:22:0;::::1;3221:73;;;::::0;-1:-1:-1;;;3221:73:0;;10171:2:1;3221:73:0::1;::::0;::::1;10153:21:1::0;10210:2;10190:18;;;10183:30;10249:34;10229:18;;;10222:62;-1:-1:-1;;;10300:18:1;;;10293:36;10346:19;;3221:73:0::1;9969:402:1::0;3221:73:0::1;3305:28;3324:8;3305:18;:28::i;:::-;3140:201:::0;:::o;17778:380::-;-1:-1:-1;;;;;17914:19:0;;17906:68;;;;-1:-1:-1;;;17906:68:0;;10578:2:1;17906:68:0;;;10560:21:1;10617:2;10597:18;;;10590:30;10656:34;10636:18;;;10629:62;-1:-1:-1;;;10707:18:1;;;10700:34;10751:19;;17906:68:0;10376:400:1;17906:68:0;-1:-1:-1;;;;;17993:21:0;;17985:68;;;;-1:-1:-1;;;17985:68:0;;10983:2:1;17985:68:0;;;10965:21:1;11022:2;11002:18;;;10995:30;11061:34;11041:18;;;11034:62;-1:-1:-1;;;11112:18:1;;;11105:32;11154:19;;17985:68:0;10781:398:1;17985:68:0;-1:-1:-1;;;;;18066:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18118:32;;3245:25:1;;;18118:32:0;;3218:18:1;18118:32:0;;;;;;;17778:380;;;:::o;39101:4264::-;-1:-1:-1;;;;;39233:18:0;;39225:68;;;;-1:-1:-1;;;39225:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39312:16:0;;39304:64;;;;-1:-1:-1;;;39304:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39388:16:0;;;;;;:10;:16;;;;;;;;39387:17;:36;;;;-1:-1:-1;;;;;;39409:14:0;;;;;;:10;:14;;;;;;;;39408:15;39387:36;39379:62;;;;-1:-1:-1;;;39379:62:0;;12196:2:1;39379:62:0;;;12178:21:1;12235:2;12215:18;;;12208:30;-1:-1:-1;;;12254:18:1;;;12247:43;12307:18;;39379:62:0;11994:337:1;39379:62:0;39458:6;39468:1;39458:11;39454:93;;39486:28;39502:4;39508:2;39512:1;39486:15;:28::i;:::-;39101:4264;;;:::o;39454:93::-;39563:14;;;;39559:2447;;;2304:6;;-1:-1:-1;;;;;39616:15:0;;;2304:6;;39616:15;;;;:49;;-1:-1:-1;2304:6:0;;-1:-1:-1;;;;;39652:13:0;;;2304:6;;39652:13;;39616:49;:86;;;;-1:-1:-1;;;;;;39686:16:0;;;;39616:86;:128;;;;-1:-1:-1;;;;;;39723:21:0;;39737:6;39723:21;;39616:128;:158;;;;-1:-1:-1;39766:8:0;;;;39765:9;39616:158;39594:2401;;;39814:13;;;;;;;39809:223;;-1:-1:-1;;;;;39886:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39915:23:0;;;;;;:19;:23;;;;;;;;39886:52;39852:160;;;;-1:-1:-1;;;39852:160:0;;12538:2:1;39852:160:0;;;12520:21:1;12577:2;12557:18;;;12550:30;-1:-1:-1;;;12596:18:1;;;12589:52;12658:18;;39852:160:0;12336:346:1;39852:160:0;40188:20;;;;40184:641;;;2304:6;;-1:-1:-1;;;;;40263:13:0;;;2304:6;;40263:13;;;;:72;;;40319:15;-1:-1:-1;;;;;40305:30:0;:2;-1:-1:-1;;;;;40305:30:0;;;40263:72;:129;;;;;40378:13;-1:-1:-1;;;;;40364:28:0;:2;-1:-1:-1;;;;;40364:28:0;;;40263:129;40233:573;;;40510:9;40481:39;;;;:28;:39;;;;;;40556:12;-1:-1:-1;40443:258:0;;;;-1:-1:-1;;;40443:258:0;;12889:2:1;40443:258:0;;;12871:21:1;12928:2;12908:18;;;12901:30;12967:34;12947:18;;;12940:62;13038:34;13018:18;;;13011:62;-1:-1:-1;;;13089:19:1;;;13082:40;13139:19;;40443:258:0;12687:477:1;40443:258:0;40757:9;40728:39;;;;:28;:39;;;;;40770:12;40728:54;;40233:573;-1:-1:-1;;;;;40899:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;40956:35:0;;;;;;:31;:35;;;;;;;;40955:36;40899:92;40873:1107;;;41078:12;;41068:6;:22;;41034:148;;;;-1:-1:-1;;;41034:148:0;;13371:2:1;41034:148:0;;;13353:21:1;13410:2;13390:18;;;13383:30;13449:34;13429:18;;;13422:62;-1:-1:-1;;;13500:18:1;;;13493:38;13548:19;;41034:148:0;13169:404:1;41034:148:0;41265:9;;-1:-1:-1;;;;;11039:18:0;;11012:7;11039:18;;;;;;;;;;;41239:22;;:6;:22;:::i;:::-;:35;;41205:140;;;;-1:-1:-1;;;41205:140:0;;13780:2:1;41205:140:0;;;13762:21:1;13819:2;13799:18;;;13792:30;-1:-1:-1;;;13838:18:1;;;13831:49;13897:18;;41205:140:0;13578:343:1;41205:140:0;40873:1107;;;-1:-1:-1;;;;;41443:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;41498:37:0;;;;;;:31;:37;;;;;;;;41497:38;41443:92;41417:563;;;41622:13;;41612:6;:23;;41578:151;;;;-1:-1:-1;;;41578:151:0;;14128:2:1;41578:151:0;;;14110:21:1;14167:2;14147:18;;;14140:30;14206:34;14186:18;;;14179:62;-1:-1:-1;;;14257:18:1;;;14250:40;14307:19;;41578:151:0;13926:406:1;41417:563:0;-1:-1:-1;;;;;41760:35:0;;;;;;:31;:35;;;;;;;;41755:225;;41880:9;;-1:-1:-1;;;;;11039:18:0;;11012:7;11039:18;;;;;;;;;;;41854:22;;:6;:22;:::i;:::-;:35;;41820:140;;;;-1:-1:-1;;;41820:140:0;;13780:2:1;41820:140:0;;;13762:21:1;13819:2;13799:18;;;13792:30;-1:-1:-1;;;13838:18:1;;;13831:49;13897:18;;41820:140:0;13578:343:1;41820:140:0;42067:4;42018:28;11039:18;;;;;;;;;;;42125;;42101:42;;;;;;;42174:35;;-1:-1:-1;42198:11:0;;;;;;;42174:35;:61;;;;-1:-1:-1;42227:8:0;;;;42226:9;42174:61;:110;;;;-1:-1:-1;;;;;;42253:31:0;;;;;;:25;:31;;;;;;;;42252:32;42174:110;:153;;;;-1:-1:-1;;;;;;42302:25:0;;;;;;:19;:25;;;;;;;;42301:26;42174:153;:194;;;;-1:-1:-1;;;;;;42345:23:0;;;;;;:19;:23;;;;;;;;42344:24;42174:194;42156:326;;;42395:8;:15;;-1:-1:-1;;42395:15:0;42406:4;42395:15;;;42427:10;:8;:10::i;:::-;42454:8;:16;;-1:-1:-1;;42454:16:0;;;42156:326;42510:8;;-1:-1:-1;;;;;42620:25:0;;42494:12;42620:25;;;:19;:25;;;;;;42510:8;;;;42509:9;;42620:25;;:52;;-1:-1:-1;;;;;;42649:23:0;;;;;;:19;:23;;;;;;;;42620:52;42616:100;;;-1:-1:-1;42699:5:0;42616:100;42728:12;42833:7;42829:483;;;-1:-1:-1;;;;;42885:29:0;;;;;;:25;:29;;;;;;;;:44;;;;;42928:1;42918:7;;:11;42885:44;42881:282;;;42957:28;42981:3;42957:19;42968:7;;42957:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;42950:35;;42881:282;;;-1:-1:-1;;;;;43047:31:0;;;;;;:25;:31;;;;;;;;:45;;;;;43091:1;43082:6;;:10;43047:45;43043:120;;;43120:27;43143:3;43120:18;43131:6;;43120;:10;;:18;;;;:::i;:27::-;43113:34;;43043:120;43183:8;;43179:91;;43212:42;43228:4;43242;43249;43212:15;:42::i;:::-;43286:14;43296:4;43286:14;;:::i;:::-;;;42829:483;43324:33;43340:4;43346:2;43350:6;43324:15;:33::i;:::-;39214:4151;;;;39101:4264;;;:::o;44315:655::-;44398:4;44354:23;11039:18;;;;;;;;;;;;44444:20;;;44440:60;;44482:7;;44315:655::o;44440:60::-;44534:18;;:23;;44555:2;44534:23;:::i;:::-;44516:15;:41;44512:115;;;44592:18;;:23;;44613:2;44592:23;:::i;:::-;44574:41;;44512:115;44667:21;44699:33;44716:15;44699:16;:33::i;:::-;44743:16;44762:44;:21;44788:17;44762:25;:44::i;:::-;44743:63;-1:-1:-1;44856:12:0;;44852:101;;44898:17;;:43;;:17;;;;-1:-1:-1;;;;;44898:17:0;;44928:8;;44898:43;;;;44928:8;44898:17;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44885:56:0;;-1:-1:-1;;44852:101:0;44343:627;;;;44315:655::o;3501:191::-;3594:6;;;-1:-1:-1;;;;;3611:17:0;;;-1:-1:-1;;;;;;3611:17:0;;;;;;;3644:40;;3594:6;;;3611:17;3594:6;;3644:40;;3575:16;;3644:40;3564:128;3501:191;:::o;38474:188::-;-1:-1:-1;;;;;38557:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38557:39:0;;;;;;;;;;38614:40;;38557:39;;:31;38614:40;;;38474:188;;:::o;14987:743::-;-1:-1:-1;;;;;15127:20:0;;15119:70;;;;-1:-1:-1;;;15119:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15208:23:0;;15200:71;;;;-1:-1:-1;;;15200:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15378:17:0;;15354:21;15378:17;;;;;;;;;;;15414:23;;;;15406:74;;;;-1:-1:-1;;;15406:74:0;;14882:2:1;15406:74:0;;;14864:21:1;14921:2;14901:18;;;14894:30;14960:34;14940:18;;;14933:62;-1:-1:-1;;;15011:18:1;;;15004:36;15057:19;;15406:74:0;14680:402:1;15406:74:0;-1:-1:-1;;;;;15516:17:0;;;:9;:17;;;;;;;;;;;15536:22;;;15516:42;;15580:20;;;;;;;;:30;;15552:6;;15516:9;15580:30;;15552:6;;15580:30;:::i;:::-;;;;;;;;15645:9;-1:-1:-1;;;;;15628:35:0;15637:6;-1:-1:-1;;;;;15628:35:0;;15656:6;15628:35;;;;3245:25:1;;3233:2;3218:18;;3099:177;15628:35:0;;;;;;;;15676:46;39101:4264;23231:98;23289:7;23316:5;23320:1;23316;:5;:::i;:::-;23309:12;23231:98;-1:-1:-1;;;23231:98:0:o;23630:::-;23688:7;23715:5;23719:1;23715;:5;:::i;43716:589::-;43866:16;;;43880:1;43866:16;;;;;;;;43842:21;;43866:16;;;;;;;;;;-1:-1:-1;43866:16:0;43842:40;;43911:4;43893;43898:1;43893:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;43893:23:0;;;-1:-1:-1;;;;;43893:23:0;;;;;43937:15;-1:-1:-1;;;;;43937:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43927:4;43932:1;43927:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;43927:32:0;;;-1:-1:-1;;;;;43927:32:0;;;;;43972:62;43989:4;44004:15;44022:11;43972:8;:62::i;:::-;44073:224;;-1:-1:-1;;;44073:224:0;;-1:-1:-1;;;;;44073:15:0;:66;;;;:224;;44154:11;;44180:1;;44224:4;;44251;;44271:15;;44073:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43771:534;43716:589;:::o;22874:98::-;22932:7;22959:5;22963:1;22959;:5;:::i;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:134;771:20;;800:31;771:20;800:31;:::i;842:315::-;910:6;918;971:2;959:9;950:7;946:23;942:32;939:52;;;987:1;984;977:12;939:52;1026:9;1013:23;1045:31;1070:5;1045:31;:::i;:::-;1095:5;1147:2;1132:18;;;;1119:32;;-1:-1:-1;;;842:315:1:o;1354:127::-;1415:10;1410:3;1406:20;1403:1;1396:31;1446:4;1443:1;1436:15;1470:4;1467:1;1460:15;1486:1121;1570:6;1601:2;1644;1632:9;1623:7;1619:23;1615:32;1612:52;;;1660:1;1657;1650:12;1612:52;1700:9;1687:23;1729:18;1770:2;1762:6;1759:14;1756:34;;;1786:1;1783;1776:12;1756:34;1824:6;1813:9;1809:22;1799:32;;1869:7;1862:4;1858:2;1854:13;1850:27;1840:55;;1891:1;1888;1881:12;1840:55;1927:2;1914:16;1949:2;1945;1942:10;1939:36;;;1955:18;;:::i;:::-;2001:2;1998:1;1994:10;2033:2;2027:9;2096:2;2092:7;2087:2;2083;2079:11;2075:25;2067:6;2063:38;2151:6;2139:10;2136:22;2131:2;2119:10;2116:18;2113:46;2110:72;;;2162:18;;:::i;:::-;2198:2;2191:22;2248:18;;;2282:15;;;;-1:-1:-1;2324:11:1;;;2320:20;;;2352:19;;;2349:39;;;2384:1;2381;2374:12;2349:39;2408:11;;;;2428:148;2444:6;2439:3;2436:15;2428:148;;;2510:23;2529:3;2510:23;:::i;:::-;2498:36;;2461:12;;;;2554;;;;2428:148;;;2595:6;1486:1121;-1:-1:-1;;;;;;;;1486:1121:1:o;2612:247::-;2671:6;2724:2;2712:9;2703:7;2699:23;2695:32;2692:52;;;2740:1;2737;2730:12;2692:52;2779:9;2766:23;2798:31;2823:5;2798:31;:::i;3281:456::-;3358:6;3366;3374;3427:2;3415:9;3406:7;3402:23;3398:32;3395:52;;;3443:1;3440;3433:12;3395:52;3482:9;3469:23;3501:31;3526:5;3501:31;:::i;:::-;3551:5;-1:-1:-1;3608:2:1;3593:18;;3580:32;3621:33;3580:32;3621:33;:::i;:::-;3281:456;;3673:7;;-1:-1:-1;;;3727:2:1;3712:18;;;;3699:32;;3281:456::o;4139:180::-;4198:6;4251:2;4239:9;4230:7;4226:23;4222:32;4219:52;;;4267:1;4264;4257:12;4219:52;-1:-1:-1;4290:23:1;;4139:180;-1:-1:-1;4139:180:1:o;4324:160::-;4389:20;;4445:13;;4438:21;4428:32;;4418:60;;4474:1;4471;4464:12;4489:315;4554:6;4562;4615:2;4603:9;4594:7;4590:23;4586:32;4583:52;;;4631:1;4628;4621:12;4583:52;4670:9;4657:23;4689:31;4714:5;4689:31;:::i;:::-;4739:5;-1:-1:-1;4763:35:1;4794:2;4779:18;;4763:35;:::i;:::-;4753:45;;4489:315;;;;;:::o;4809:180::-;4865:6;4918:2;4906:9;4897:7;4893:23;4889:32;4886:52;;;4934:1;4931;4924:12;4886:52;4957:26;4973:9;4957:26;:::i;4994:388::-;5062:6;5070;5123:2;5111:9;5102:7;5098:23;5094:32;5091:52;;;5139:1;5136;5129:12;5091:52;5178:9;5165:23;5197:31;5222:5;5197:31;:::i;:::-;5247:5;-1:-1:-1;5304:2:1;5289:18;;5276:32;5317:33;5276:32;5317:33;:::i;:::-;5369:7;5359:17;;;4994:388;;;;;:::o;5387:380::-;5466:1;5462:12;;;;5509;;;5530:61;;5584:4;5576:6;5572:17;5562:27;;5530:61;5637:2;5629:6;5626:14;5606:18;5603:38;5600:161;;5683:10;5678:3;5674:20;5671:1;5664:31;5718:4;5715:1;5708:15;5746:4;5743:1;5736:15;5600:161;;5387:380;;;:::o;5772:356::-;5974:2;5956:21;;;5993:18;;;5986:30;6052:34;6047:2;6032:18;;6025:62;6119:2;6104:18;;5772:356::o;6133:127::-;6194:10;6189:3;6185:20;6182:1;6175:31;6225:4;6222:1;6215:15;6249:4;6246:1;6239:15;6265:127;6326:10;6321:3;6317:20;6314:1;6307:31;6357:4;6354:1;6347:15;6381:4;6378:1;6371:15;6397:135;6436:3;6457:17;;;6454:43;;6477:18;;:::i;:::-;-1:-1:-1;6524:1:1;6513:13;;6397:135::o;6946:125::-;7011:9;;;7032:10;;;7029:36;;;7045:18;;:::i;8731:168::-;8804:9;;;8835;;8852:15;;;8846:22;;8832:37;8822:71;;8873:18;;:::i;8904:217::-;8944:1;8970;8960:132;;9014:10;9009:3;9005:20;9002:1;8995:31;9049:4;9046:1;9039:15;9077:4;9074:1;9067:15;8960:132;-1:-1:-1;9106:9:1;;8904:217::o;11184:401::-;11386:2;11368:21;;;11425:2;11405:18;;;11398:30;11464:34;11459:2;11444:18;;11437:62;-1:-1:-1;;;11530:2:1;11515:18;;11508:35;11575:3;11560:19;;11184:401::o;11590:399::-;11792:2;11774:21;;;11831:2;11811:18;;;11804:30;11870:34;11865:2;11850:18;;11843:62;-1:-1:-1;;;11936:2:1;11921:18;;11914:33;11979:3;11964:19;;11590:399::o;14337:128::-;14404:9;;;14425:11;;;14422:37;;;14439:18;;:::i;15087:251::-;15157:6;15210:2;15198:9;15189:7;15185:23;15181:32;15178:52;;;15226:1;15223;15216:12;15178:52;15258:9;15252:16;15277:31;15302:5;15277:31;:::i;15343:980::-;15605:4;15653:3;15642:9;15638:19;15684:6;15673:9;15666:25;15710:2;15748:6;15743:2;15732:9;15728:18;15721:34;15791:3;15786:2;15775:9;15771:18;15764:31;15815:6;15850;15844:13;15881:6;15873;15866:22;15919:3;15908:9;15904:19;15897:26;;15958:2;15950:6;15946:15;15932:29;;15979:1;15989:195;16003:6;16000:1;15997:13;15989:195;;;16068:13;;-1:-1:-1;;;;;16064:39:1;16052:52;;16159:15;;;;16124:12;;;;16100:1;16018:9;15989:195;;;-1:-1:-1;;;;;;;16240:32:1;;;;16235:2;16220:18;;16213:60;-1:-1:-1;;;16304:3:1;16289:19;16282:35;16201:3;15343:980;-1:-1:-1;;;15343:980:1:o

Swarm Source

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