ETH Price: $3,471.96 (+2.39%)
Gas: 7 Gwei

Token

Degen (D三G三N)
 

Overview

Max Total Supply

100,000,000,000 D三G三N

Holders

1,067

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,955,066.307711495183941824 D三G三N

Value
$0.00
0x725655fe414c2c2c0c6b432dafb64a60b22263c1
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:
Degen

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

// SPDX-License-Identifier: MIT
 
pragma solidity 0.8.17;
pragma experimental ABIEncoderV2;
 
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
 
// pragma solidity ^0.8.0;
 
/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }
 
    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
 
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
 
// pragma solidity ^0.8.0;
 
// import "../utils/Context.sol";
 
/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;
 
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );
 
    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }
 
    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }
 
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }
 
    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }
 
    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(
            newOwner != address(0),
            "Ownable: new owner is the zero address"
        );
        _transferOwnership(newOwner);
    }
 
    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
 
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
 
// pragma solidity ^0.8.0;
 
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);
 
    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
 
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);
 
    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);
 
    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);
 
    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender)
        external
        view
        returns (uint256);
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);
 
    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}
 
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
 
// pragma solidity ^0.8.0;
 
// import "../IERC20.sol";
 
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);
 
    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);
 
    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
 
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)
 
// pragma solidity ^0.8.0;
 
// import "./IERC20.sol";
// import "./extensions/IERC20Metadata.sol";
// import "../../utils/Context.sol";
 
/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
 
    mapping(address => mapping(address => uint256)) private _allowances;
 
    uint256 private _totalSupply;
 
    string private _name;
    string private _symbol;
 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
 
    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }
 
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
 
    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }
 
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
 
    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _balances[account];
    }
 
    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _allowances[owner][spender];
    }
 
    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount)
        public
        virtual
        override
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
 
    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }
 
    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
 
    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue)
        public
        virtual
        returns (bool)
    {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }
 
        return true;
    }
 
    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        _beforeTokenTransfer(from, to, amount);
 
        uint256 fromBalance = _balances[from];
        require(
            fromBalance >= amount,
            "ERC20: transfer amount exceeds balance"
        );
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
 
        emit Transfer(from, to, amount);
 
        _afterTokenTransfer(from, to, amount);
    }
 
    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");
 
        _beforeTokenTransfer(address(0), account, amount);
 
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
 
        _afterTokenTransfer(address(0), account, amount);
    }
 
    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");
 
        _beforeTokenTransfer(account, address(0), amount);
 
        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }
 
        emit Transfer(account, address(0), amount);
 
        _afterTokenTransfer(account, address(0), amount);
    }
 
    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");
 
        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }
 
    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(
                currentAllowance >= amount,
                "ERC20: insufficient allowance"
            );
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }
 
    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
 
    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
 
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
 
// pragma solidity ^0.8.0;
 
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
 
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }
 
    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }
 
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }
 
    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }
 
    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
 
    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
 
    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}
 
// pragma solidity >=0.5.0;
 
interface IUniswapV2Factory {
    event PairCreated(
        address indexed token0,
        address indexed token1,
        address pair,
        uint256
    );
 
    function feeTo() external view returns (address);
 
    function feeToSetter() external view returns (address);
 
    function getPair(address tokenA, address tokenB)
        external
        view
        returns (address pair);
 
    function allPairs(uint256) external view returns (address pair);
 
    function allPairsLength() external view returns (uint256);
 
    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
 
    function setFeeTo(address) external;
 
    function setFeeToSetter(address) external;
}
 
// pragma solidity >=0.6.2;
 
interface IUniswapV2Router01 {
    function factory() external pure returns (address);
 
    function WETH() external pure returns (address);
 
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );
 
    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );
 
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);
 
    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);
 
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);
 
    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);
 
    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);
 
    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);
 
    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);
 
    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);
 
    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);
 
    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);
 
    function quote(
        uint256 amountA,
        uint256 reserveA,
        uint256 reserveB
    ) external pure returns (uint256 amountB);
 
    function getAmountOut(
        uint256 amountIn,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountOut);
 
    function getAmountIn(
        uint256 amountOut,
        uint256 reserveIn,
        uint256 reserveOut
    ) external pure returns (uint256 amountIn);
 
    function getAmountsOut(uint256 amountIn, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
 
    function getAmountsIn(uint256 amountOut, address[] calldata path)
        external
        view
        returns (uint256[] memory amounts);
}
 
// pragma solidity >=0.6.2;
 
// import './IUniswapV2Router01.sol';
 
interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);
 
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);
 
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
 
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;
 
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}
 
contract Degen is ERC20, Ownable {
    using SafeMath for uint256;
 
    IUniswapV2Router02 public immutable uniswapV2Router;
    address public uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
 
    bool private swapping;
 
    address public markAndDevWallet;
 
    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
 
    bool public tradingActive = false;
    bool public swapEnabled = false;
 
    uint256 public buyTotalFees;
    uint256 private buyMarkAndDevFee;
 
    uint256 public sellTotalFees;
    uint256 private sellMarkAndDevFee;
 
    uint256 private tokensForMarkAndDev;
    uint256 private previousFee;
 
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) private _isExcludedMaxTransactionAmount;
    mapping(address => bool) private automatedMarketMakerPairs;
 
    event ExcludeFromFees(address indexed account, bool isExcluded);
 
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
 
    event markAndDevWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );
 
 
    constructor(address _markAndDevWallet, address _CEXPlusAddress) ERC20(unicode"Degen", unicode"D三G三N") {
        uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        _approve(address(this), address(uniswapV2Router), type(uint256).max);
 
        uint256 totalSupply = 100_000_000_000 ether;

        maxTransactionAmount = (totalSupply) / 100; //1% of total supply
        maxWallet = (totalSupply) / 50;  //2% of total supply

        swapTokensAtAmount = (totalSupply * 5) / 10000;

        buyMarkAndDevFee = 10; //10% at Launch. 2% before renouncing

        buyTotalFees = buyMarkAndDevFee;
 
        sellMarkAndDevFee = 10; //10% at Launch. 2% before renouncing

        sellTotalFees = sellMarkAndDevFee;
 
        previousFee = sellTotalFees;

        markAndDevWallet = _markAndDevWallet;

 
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(deadAddress, true);
        excludeFromFees(markAndDevWallet, true);
 
        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(deadAddress, true);
        excludeFromMaxTransaction(address(uniswapV2Router), true);
        excludeFromMaxTransaction(markAndDevWallet, true);

        // Define address and the minting amounts. 90% will go to the LP and 10% will be held for the future
        address CEXTokenAddress = _CEXPlusAddress;
        uint256 cexTokenAmount = totalSupply / 10; // 10% for CEXPlus
        uint256 contractAmount = totalSupply - cexTokenAmount; // 90% for the LP

        // Mint the tokens
        _mint(CEXTokenAddress, cexTokenAmount);
        _mint(address(this), contractAmount);

    }
 
    receive() external payable {}
 
    function burn(uint256 amount) external {
        _burn(msg.sender, amount);
    }
 
    function enableTrading() external onlyOwner {
        require(!tradingActive, "Trading already active.");
 
        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );
 
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);

        uint256 tokensInWallet = balanceOf(address(this));
 
        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            tokensInWallet, 
            0,
            0,
            owner(),
            block.timestamp
        );
 
        tradingActive = true;
        swapEnabled = true;
    }
 
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "ERC20: Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "ERC20: Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }
 
    function updateMaxWalletAndTxnAmount(
        uint256 newTxnNum,
        uint256 newMaxWalletNum
    ) external onlyOwner {
        require(
            newTxnNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxTxn lower than 0.5%"
        );
        require(
            newMaxWalletNum >= ((totalSupply() * 5) / 1000),
            "ERC20: Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newMaxWalletNum;
        maxTransactionAmount = newTxnNum;
    }
 
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }
 
    function updateBuyFees(
        uint256 _markAndDevFee
    ) external onlyOwner {
        buyMarkAndDevFee = _markAndDevFee;
        buyTotalFees = buyMarkAndDevFee;
        require(buyTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }
 
    function updateSellFees(
        uint256 _markAndDevFee
    ) external onlyOwner {
        sellMarkAndDevFee = _markAndDevFee;
        sellTotalFees = sellMarkAndDevFee;
        previousFee = sellTotalFees;
        require(sellTotalFees <= 10, "ERC20: Must keep fees at 10% or less");
    }
 
    function updateMarkAndDevWallet(address _markAndDevWallet)
        external
        onlyOwner
    {
        require(_markAndDevWallet != address(0), "ERC20: Address 0");
        address oldWallet = markAndDevWallet;
        markAndDevWallet = _markAndDevWallet;
        emit markAndDevWalletUpdated(markAndDevWallet, oldWallet);
    }
  
    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }
 
    function withdrawStuckETH() public onlyOwner {
        bool success;
        (success, ) = address(msg.sender).call{value: address(this).balance}(
            ""
        );
    }
 
    function withdrawStuckTokens(address tkn) public onlyOwner {
        require(IERC20(tkn).balanceOf(address(this)) > 0, "No tokens");
        uint256 amount = IERC20(tkn).balanceOf(address(this));
        IERC20(tkn).transfer(msg.sender, amount);
    }
 
    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;
 
        emit SetAutomatedMarketMakerPair(pair, value);
    }
 
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
 
        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }
 
        if (
            from != owner() &&
            to != owner() &&
            to != address(0) &&
            to != deadAddress &&
            !swapping
        ) {
            if (!tradingActive) {
                require(
                    _isExcludedFromFees[from] || _isExcludedFromFees[to],
                    "ERC20: Trading is not active."
                );
            }
 
            //when buy
            if (
                automatedMarketMakerPairs[from] &&
                !_isExcludedMaxTransactionAmount[to]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Buy transfer amount exceeds the maxTransactionAmount."
                );
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
            //when sell
            else if (
                automatedMarketMakerPairs[to] &&
                !_isExcludedMaxTransactionAmount[from]
            ) {
                require(
                    amount <= maxTransactionAmount,
                    "ERC20: Sell transfer amount exceeds the maxTransactionAmount."
                );
            } else if (!_isExcludedMaxTransactionAmount[to]) {
                require(
                    amount + balanceOf(to) <= maxWallet,
                    "ERC20: Max wallet exceeded"
                );
            }
        }
 
        uint256 contractTokenBalance = balanceOf(address(this));
 
        bool canSwap = contractTokenBalance >= swapTokensAtAmount;
 
        if (
            canSwap &&
            swapEnabled &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            !_isExcludedFromFees[from] &&
            !_isExcludedFromFees[to]
        ) {
            swapping = true;
 
            swapBack();
 
            swapping = false;
        }
 
        bool takeFee = !swapping;
 
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }
 
        uint256 fees = 0;
 
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForMarkAndDev += (fees * sellMarkAndDevFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForMarkAndDev += (fees * buyMarkAndDevFee) / buyTotalFees;
            }
 
            if (fees > 0) {
                super._transfer(from, address(this), fees);
            }
 
            amount -= fees;
        }
 
        super._transfer(from, to, amount);
        sellTotalFees = previousFee;
    }
 
    function swapTokensForEth(uint256 tokenAmount) private {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(address(this), address(uniswapV2Router), tokenAmount);
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }
 
    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForMarkAndDev;
        bool success;
 
        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }
 
        if (contractBalance > swapTokensAtAmount * 20) {
            contractBalance = swapTokensAtAmount * 20;
        }
 
        swapTokensForEth(contractBalance);
 
        tokensForMarkAndDev = 0;
 
 
        (success, ) = address(markAndDevWallet).call{
            value: address(this).balance
        }("");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_markAndDevWallet","type":"address"},{"internalType":"address","name":"_CEXPlusAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"markAndDevWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"markAndDevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_markAndDevFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_markAndDevWallet","type":"address"}],"name":"updateMarkAndDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newTxnNum","type":"uint256"},{"internalType":"uint256","name":"newMaxWalletNum","type":"uint256"}],"name":"updateMaxWalletAndTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_markAndDevFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tkn","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a0604052600b805461ffff191690553480156200001c57600080fd5b5060405162002d5638038062002d568339810160408190526200003f91620005c8565b604051806040016040528060058152602001642232b3b2b760d91b8152506040518060400160405280600981526020016822725c44a3f25c44a760b91b8152508160039081620000909190620006a4565b5060046200009f8282620006a4565b505050620000bc620000b66200026560201b60201c565b62000269565b737a250d5630b4cf539739df2c5dacb4c659f2488d6080819052620000e6903090600019620002bb565b6c01431e0fae6d7217caa00000006200010160648262000786565b6008556200011160328262000786565b600a5561271062000124826005620007a9565b62000130919062000786565b600955600a600d819055600c819055600f819055600e819055601155600780546001600160a01b0319166001600160a01b038516179055620001866200017e6005546001600160a01b031690565b6001620003e7565b62000193306001620003e7565b620001a261dead6001620003e7565b600754620001bb906001600160a01b03166001620003e7565b620001da620001d26005546001600160a01b031690565b600162000450565b620001e730600162000450565b620001f661dead600162000450565b6080516200020690600162000450565b6007546200021f906001600160a01b0316600162000450565b8160006200022f600a8462000786565b905060006200023f8285620007c9565b90506200024d838362000485565b62000259308262000485565b505050505050620007f5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038316620003235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084015b60405180910390fd5b6001600160a01b038216620003865760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016200031a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b620003f162000548565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6200045a62000548565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6001600160a01b038216620004dd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200031a565b8060026000828254620004f19190620007df565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005a45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016200031a565b565b505050565b80516001600160a01b0381168114620005c357600080fd5b919050565b60008060408385031215620005dc57600080fd5b620005e783620005ab565b9150620005f760208401620005ab565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200062b57607f821691505b6020821081036200064c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005a657600081815260208120601f850160051c810160208610156200067b5750805b601f850160051c820191505b818110156200069c5782815560010162000687565b505050505050565b81516001600160401b03811115620006c057620006c062000600565b620006d881620006d1845462000616565b8462000652565b602080601f831160018114620007105760008415620006f75750858301515b600019600386901b1c1916600185901b1785556200069c565b600085815260208120601f198616915b82811015620007415788860151825594840194600190910190840162000720565b5085821015620007605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600082620007a457634e487b7160e01b600052601260045260246000fd5b500490565b8082028115828204841417620007c357620007c362000770565b92915050565b81810381811115620007c357620007c362000770565b80820180821115620007c357620007c362000770565b60805161251462000842600039600081816102970152818161094d015281816109de01528181610b1601528181610bd701528181611f5d01528181612016015261205201526125146000f3fe60806040526004361061021e5760003560e01c80638a8c523c11610123578063c8c8ebe4116100ab578063e2f456051161006f578063e2f456051461064b578063eba4c33314610661578063f2fde38b14610681578063f5648a4f146106a1578063f8b45b05146106b657600080fd5b8063c8c8ebe4146105bf578063cb963728146105d5578063d257b34f146105f5578063d85ba06314610615578063dd62ed3e1461062b57600080fd5b80639d0c6ce4116100f25780639d0c6ce414610525578063a457c2d714610545578063a9059cbb14610565578063bbc0c74214610585578063c02466681461059f57600080fd5b80638a8c523c146104bd5780638da5cb5b146104d257806395d89b41146104f0578063961883991461050557600080fd5b806349bd5a5e116101a657806370a082311161017557806370a0823114610412578063715018a61461044857806371fc46881461045d5780637571336a1461047d578063794618a11461049d57600080fd5b806349bd5a5e146103845780634fbee193146103a45780636a486a8e146103dd5780636ddd1713146103f357600080fd5b806323b872dd116101ed57806323b872dd146102f057806327c8f83514610310578063313ce56714610326578063395093511461034257806342966c681461036257600080fd5b806306fdde031461022a578063095ea7b3146102555780631694505e1461028557806318160ddd146102d157600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106cc565b60405161024c91906120be565b60405180910390f35b34801561026157600080fd5b50610275610270366004612121565b61075e565b604051901515815260200161024c565b34801561029157600080fd5b506102b97f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b3480156102dd57600080fd5b506002545b60405190815260200161024c565b3480156102fc57600080fd5b5061027561030b36600461214d565b610778565b34801561031c57600080fd5b506102b961dead81565b34801561033257600080fd5b506040516012815260200161024c565b34801561034e57600080fd5b5061027561035d366004612121565b61079c565b34801561036e57600080fd5b5061038261037d36600461218e565b6107be565b005b34801561039057600080fd5b506006546102b9906001600160a01b031681565b3480156103b057600080fd5b506102756103bf3660046121a7565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156103e957600080fd5b506102e2600e5481565b3480156103ff57600080fd5b50600b5461027590610100900460ff1681565b34801561041e57600080fd5b506102e261042d3660046121a7565b6001600160a01b031660009081526020819052604090205490565b34801561045457600080fd5b506103826107cb565b34801561046957600080fd5b5061038261047836600461218e565b6107df565b34801561048957600080fd5b506103826104983660046121d2565b61081b565b3480156104a957600080fd5b506103826104b83660046121a7565b61084e565b3480156104c957600080fd5b506103826108f0565b3480156104de57600080fd5b506005546001600160a01b03166102b9565b3480156104fc57600080fd5b5061023f610cbe565b34801561051157600080fd5b5061038261052036600461220b565b610ccd565b34801561053157600080fd5b506007546102b9906001600160a01b031681565b34801561055157600080fd5b50610275610560366004612121565b610de2565b34801561057157600080fd5b50610275610580366004612121565b610e5d565b34801561059157600080fd5b50600b546102759060ff1681565b3480156105ab57600080fd5b506103826105ba3660046121d2565b610e6b565b3480156105cb57600080fd5b506102e260085481565b3480156105e157600080fd5b506103826105f03660046121a7565b610ed2565b34801561060157600080fd5b5061027561061036600461218e565b611062565b34801561062157600080fd5b506102e2600c5481565b34801561063757600080fd5b506102e261064636600461222d565b6111a2565b34801561065757600080fd5b506102e260095481565b34801561066d57600080fd5b5061038261067c36600461218e565b6111cd565b34801561068d57600080fd5b5061038261069c3660046121a7565b611205565b3480156106ad57600080fd5b5061038261127b565b3480156106c257600080fd5b506102e2600a5481565b6060600380546106db9061225b565b80601f01602080910402602001604051908101604052809291908181526020018280546107079061225b565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b60003361076c8185856112d0565b60019150505b92915050565b6000336107868582856113f4565b610791858585611468565b506001949350505050565b60003361076c8185856107af83836111a2565b6107b991906122ab565b6112d0565b6107c83382611ad2565b50565b6107d3611c04565b6107dd6000611c5e565b565b6107e7611c04565b600d819055600c819055600a8111156107c85760405162461bcd60e51b8152600401610812906122be565b60405180910390fd5b610823611c04565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b610856611c04565b6001600160a01b03811661089f5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610812565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaaaba21fdc67a4e02f365e1c9558e673ab5131891204b5338beb30926d25c6e90600090a35050565b6108f8611c04565b600b5460ff161561094b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610812565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cd9190612302565b6001600160a01b031663c9c65396307f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e9190612302565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190612302565b600680546001600160a01b0319166001600160a01b03929092169182179055610afc9030906000196112d0565b60065460405163095ea7b360e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000008116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b94919061231f565b50600654610bac906001600160a01b03166001611cb0565b600654610bc3906001600160a01b0316600161081b565b3060009081526020819052604081205490507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663f305d719473084600080610c1c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c84573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ca9919061233c565b5050600b805461ffff19166101011790555050565b6060600480546106db9061225b565b610cd5611c04565b6103e8610ce160025490565b610cec90600561236a565b610cf69190612381565b821015610d565760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610812565b6103e8610d6260025490565b610d6d90600561236a565b610d779190612381565b811015610dda5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610812565b600a55600855565b60003381610df082866111a2565b905083811015610e505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610812565b61079182868684036112d0565b60003361076c818585611468565b610e73611c04565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610eda611c04565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4591906123a3565b11610f7e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610812565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610fc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe991906123a3565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611039573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105d919061231f565b505050565b600061106c611c04565b620186a061107960025490565b61108490600161236a565b61108e9190612381565b8210156111035760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610812565b6103e861110f60025490565b61111a90600561236a565b6111249190612381565b8211156111995760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610812565b50600955600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111d5611c04565b600f819055600e8190556011819055600a8111156107c85760405162461bcd60e51b8152600401610812906122be565b61120d611c04565b6001600160a01b0381166112725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610812565b6107c881611c5e565b611283611c04565b604051600090339047908381818185875af1925050503d80600081146112c5576040519150601f19603f3d011682016040523d82523d6000602084013e6112ca565b606091505b50505050565b6001600160a01b0383166113325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610812565b6001600160a01b0382166113935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610812565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061140084846111a2565b905060001981146112ca578181101561145b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610812565b6112ca84848484036112d0565b6001600160a01b03831661148e5760405162461bcd60e51b8152600401610812906123bc565b6001600160a01b0382166114b45760405162461bcd60e51b815260040161081290612401565b806000036114c85761105d83836000611d04565b6005546001600160a01b038481169116148015906114f457506005546001600160a01b03838116911614155b801561150857506001600160a01b03821615155b801561151f57506001600160a01b03821661dead14155b80156115355750600654600160a01b900460ff16155b1561185857600b5460ff166115cf576001600160a01b03831660009081526012602052604090205460ff168061158357506001600160a01b03821660009081526012602052604090205460ff165b6115cf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610812565b6001600160a01b03831660009081526014602052604090205460ff16801561161057506001600160a01b03821660009081526013602052604090205460ff16155b156117065760085481111561168d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610812565b600a546001600160a01b0383166000908152602081905260409020546116b390836122ab565b11156117015760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b611858565b6001600160a01b03821660009081526014602052604090205460ff16801561174757506001600160a01b03831660009081526013602052604090205460ff16155b156117c4576008548111156117015760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610812565b6001600160a01b03821660009081526013602052604090205460ff1661185857600a546001600160a01b03831660009081526020819052604090205461180a90836122ab565b11156118585760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b30600090815260208190526040902054600954811080159081906118835750600b54610100900460ff165b80156118995750600654600160a01b900460ff16155b80156118be57506001600160a01b03851660009081526014602052604090205460ff16155b80156118e357506001600160a01b03851660009081526012602052604090205460ff16155b801561190857506001600160a01b03841660009081526012602052604090205460ff16155b15611936576006805460ff60a01b1916600160a01b179055611928611e2e565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061198457506001600160a01b03851660009081526012602052604090205460ff165b1561198d575060005b60008115611ab8576001600160a01b03861660009081526014602052604090205460ff1680156119bf57506000600e54115b15611a1d576119e460646119de600e5488611ee790919063ffffffff16565b90611efa565b9050600e54600f54826119f7919061236a565b611a019190612381565b60106000828254611a1291906122ab565b90915550611a9a9050565b6001600160a01b03871660009081526014602052604090205460ff168015611a4757506000600c54115b15611a9a57611a6660646119de600c5488611ee790919063ffffffff16565b9050600c54600d5482611a79919061236a565b611a839190612381565b60106000828254611a9491906122ab565b90915550505b8015611aab57611aab873083611d04565b611ab58186612444565b94505b611ac3878787611d04565b5050601154600e555050505050565b6001600160a01b038216611b325760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610812565b6001600160a01b03821660009081526020819052604090205481811015611ba65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610812565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610812565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d2a5760405162461bcd60e51b8152600401610812906123bc565b6001600160a01b038216611d505760405162461bcd60e51b815260040161081290612401565b6001600160a01b03831660009081526020819052604090205481811015611dc85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610812565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112ca565b306000908152602081905260408120546010549091821580611e4e575081155b15611e5857505050565b600954611e6690601461236a565b831115611e7e57600954611e7b90601461236a565b92505b611e8783611f06565b600060108190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114611eda576040519150601f19603f3d011682016040523d82523d6000602084013e611edf565b606091505b505050505050565b6000611ef3828461236a565b9392505050565b6000611ef38284612381565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f3b57611f3b612457565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdd9190612302565b81600181518110611ff057611ff0612457565b60200260200101906001600160a01b031690816001600160a01b03168152505061203b307f0000000000000000000000000000000000000000000000000000000000000000846112d0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061209090859060009086903090429060040161246d565b600060405180830381600087803b1580156120aa57600080fd5b505af1158015611edf573d6000803e3d6000fd5b600060208083528351808285015260005b818110156120eb578581018301518582016040015282016120cf565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107c857600080fd5b6000806040838503121561213457600080fd5b823561213f8161210c565b946020939093013593505050565b60008060006060848603121561216257600080fd5b833561216d8161210c565b9250602084013561217d8161210c565b929592945050506040919091013590565b6000602082840312156121a057600080fd5b5035919050565b6000602082840312156121b957600080fd5b8135611ef38161210c565b80151581146107c857600080fd5b600080604083850312156121e557600080fd5b82356121f08161210c565b91506020830135612200816121c4565b809150509250929050565b6000806040838503121561221e57600080fd5b50508035926020909101359150565b6000806040838503121561224057600080fd5b823561224b8161210c565b915060208301356122008161210c565b600181811c9082168061226f57607f821691505b60208210810361228f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077257610772612295565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561231457600080fd5b8151611ef38161210c565b60006020828403121561233157600080fd5b8151611ef3816121c4565b60008060006060848603121561235157600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761077257610772612295565b60008261239e57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156123b557600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561077257610772612295565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124bd5784516001600160a01b031683529383019391830191600101612498565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e3df3a131b57a3445509cc11184c41d3b5d79695aa1d020b424e605ffefa3a8764736f6c634300081100330000000000000000000000000ce1858308693de2576329175b5bfc26dbb1de6e00000000000000000000000091c234d95a64ac159ba58a366c47d50cec128f57

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80638a8c523c11610123578063c8c8ebe4116100ab578063e2f456051161006f578063e2f456051461064b578063eba4c33314610661578063f2fde38b14610681578063f5648a4f146106a1578063f8b45b05146106b657600080fd5b8063c8c8ebe4146105bf578063cb963728146105d5578063d257b34f146105f5578063d85ba06314610615578063dd62ed3e1461062b57600080fd5b80639d0c6ce4116100f25780639d0c6ce414610525578063a457c2d714610545578063a9059cbb14610565578063bbc0c74214610585578063c02466681461059f57600080fd5b80638a8c523c146104bd5780638da5cb5b146104d257806395d89b41146104f0578063961883991461050557600080fd5b806349bd5a5e116101a657806370a082311161017557806370a0823114610412578063715018a61461044857806371fc46881461045d5780637571336a1461047d578063794618a11461049d57600080fd5b806349bd5a5e146103845780634fbee193146103a45780636a486a8e146103dd5780636ddd1713146103f357600080fd5b806323b872dd116101ed57806323b872dd146102f057806327c8f83514610310578063313ce56714610326578063395093511461034257806342966c681461036257600080fd5b806306fdde031461022a578063095ea7b3146102555780631694505e1461028557806318160ddd146102d157600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f6106cc565b60405161024c91906120be565b60405180910390f35b34801561026157600080fd5b50610275610270366004612121565b61075e565b604051901515815260200161024c565b34801561029157600080fd5b506102b97f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161024c565b3480156102dd57600080fd5b506002545b60405190815260200161024c565b3480156102fc57600080fd5b5061027561030b36600461214d565b610778565b34801561031c57600080fd5b506102b961dead81565b34801561033257600080fd5b506040516012815260200161024c565b34801561034e57600080fd5b5061027561035d366004612121565b61079c565b34801561036e57600080fd5b5061038261037d36600461218e565b6107be565b005b34801561039057600080fd5b506006546102b9906001600160a01b031681565b3480156103b057600080fd5b506102756103bf3660046121a7565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156103e957600080fd5b506102e2600e5481565b3480156103ff57600080fd5b50600b5461027590610100900460ff1681565b34801561041e57600080fd5b506102e261042d3660046121a7565b6001600160a01b031660009081526020819052604090205490565b34801561045457600080fd5b506103826107cb565b34801561046957600080fd5b5061038261047836600461218e565b6107df565b34801561048957600080fd5b506103826104983660046121d2565b61081b565b3480156104a957600080fd5b506103826104b83660046121a7565b61084e565b3480156104c957600080fd5b506103826108f0565b3480156104de57600080fd5b506005546001600160a01b03166102b9565b3480156104fc57600080fd5b5061023f610cbe565b34801561051157600080fd5b5061038261052036600461220b565b610ccd565b34801561053157600080fd5b506007546102b9906001600160a01b031681565b34801561055157600080fd5b50610275610560366004612121565b610de2565b34801561057157600080fd5b50610275610580366004612121565b610e5d565b34801561059157600080fd5b50600b546102759060ff1681565b3480156105ab57600080fd5b506103826105ba3660046121d2565b610e6b565b3480156105cb57600080fd5b506102e260085481565b3480156105e157600080fd5b506103826105f03660046121a7565b610ed2565b34801561060157600080fd5b5061027561061036600461218e565b611062565b34801561062157600080fd5b506102e2600c5481565b34801561063757600080fd5b506102e261064636600461222d565b6111a2565b34801561065757600080fd5b506102e260095481565b34801561066d57600080fd5b5061038261067c36600461218e565b6111cd565b34801561068d57600080fd5b5061038261069c3660046121a7565b611205565b3480156106ad57600080fd5b5061038261127b565b3480156106c257600080fd5b506102e2600a5481565b6060600380546106db9061225b565b80601f01602080910402602001604051908101604052809291908181526020018280546107079061225b565b80156107545780601f1061072957610100808354040283529160200191610754565b820191906000526020600020905b81548152906001019060200180831161073757829003601f168201915b5050505050905090565b60003361076c8185856112d0565b60019150505b92915050565b6000336107868582856113f4565b610791858585611468565b506001949350505050565b60003361076c8185856107af83836111a2565b6107b991906122ab565b6112d0565b6107c83382611ad2565b50565b6107d3611c04565b6107dd6000611c5e565b565b6107e7611c04565b600d819055600c819055600a8111156107c85760405162461bcd60e51b8152600401610812906122be565b60405180910390fd5b610823611c04565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b610856611c04565b6001600160a01b03811661089f5760405162461bcd60e51b815260206004820152601060248201526f045524332303a204164647265737320360841b6044820152606401610812565b600780546001600160a01b038381166001600160a01b03198316811790935560405191169182917ffaaaba21fdc67a4e02f365e1c9558e673ab5131891204b5338beb30926d25c6e90600090a35050565b6108f8611c04565b600b5460ff161561094b5760405162461bcd60e51b815260206004820152601760248201527f54726164696e6720616c7265616479206163746976652e0000000000000000006044820152606401610812565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109cd9190612302565b6001600160a01b031663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a3a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5e9190612302565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610aab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610acf9190612302565b600680546001600160a01b0319166001600160a01b03929092169182179055610afc9030906000196112d0565b60065460405163095ea7b360e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8116600483015260001960248301529091169063095ea7b3906044016020604051808303816000875af1158015610b70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b94919061231f565b50600654610bac906001600160a01b03166001611cb0565b600654610bc3906001600160a01b0316600161081b565b3060009081526020819052604081205490507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663f305d719473084600080610c1c6005546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610c84573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ca9919061233c565b5050600b805461ffff19166101011790555050565b6060600480546106db9061225b565b610cd5611c04565b6103e8610ce160025490565b610cec90600561236a565b610cf69190612381565b821015610d565760405162461bcd60e51b815260206004820152602860248201527f45524332303a2043616e6e6f7420736574206d617854786e206c6f776572207460448201526768616e20302e352560c01b6064820152608401610812565b6103e8610d6260025490565b610d6d90600561236a565b610d779190612381565b811015610dda5760405162461bcd60e51b815260206004820152602b60248201527f45524332303a2043616e6e6f7420736574206d617857616c6c6574206c6f776560448201526a72207468616e20302e352560a81b6064820152608401610812565b600a55600855565b60003381610df082866111a2565b905083811015610e505760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610812565b61079182868684036112d0565b60003361076c818585611468565b610e73611c04565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b610eda611c04565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f4591906123a3565b11610f7e5760405162461bcd60e51b81526020600482015260096024820152684e6f20746f6b656e7360b81b6044820152606401610812565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610fc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fe991906123a3565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303816000875af1158015611039573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061105d919061231f565b505050565b600061106c611c04565b620186a061107960025490565b61108490600161236a565b61108e9190612381565b8210156111035760405162461bcd60e51b815260206004820152603c60248201527f45524332303a205377617020616d6f756e742063616e6e6f74206265206c6f7760448201527f6572207468616e20302e3030312520746f74616c20737570706c792e000000006064820152608401610812565b6103e861110f60025490565b61111a90600561236a565b6111249190612381565b8211156111995760405162461bcd60e51b815260206004820152603b60248201527f45524332303a205377617020616d6f756e742063616e6e6f742062652068696760448201527f686572207468616e20302e352520746f74616c20737570706c792e00000000006064820152608401610812565b50600955600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6111d5611c04565b600f819055600e8190556011819055600a8111156107c85760405162461bcd60e51b8152600401610812906122be565b61120d611c04565b6001600160a01b0381166112725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610812565b6107c881611c5e565b611283611c04565b604051600090339047908381818185875af1925050503d80600081146112c5576040519150601f19603f3d011682016040523d82523d6000602084013e6112ca565b606091505b50505050565b6001600160a01b0383166113325760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610812565b6001600160a01b0382166113935760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610812565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061140084846111a2565b905060001981146112ca578181101561145b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610812565b6112ca84848484036112d0565b6001600160a01b03831661148e5760405162461bcd60e51b8152600401610812906123bc565b6001600160a01b0382166114b45760405162461bcd60e51b815260040161081290612401565b806000036114c85761105d83836000611d04565b6005546001600160a01b038481169116148015906114f457506005546001600160a01b03838116911614155b801561150857506001600160a01b03821615155b801561151f57506001600160a01b03821661dead14155b80156115355750600654600160a01b900460ff16155b1561185857600b5460ff166115cf576001600160a01b03831660009081526012602052604090205460ff168061158357506001600160a01b03821660009081526012602052604090205460ff165b6115cf5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a2054726164696e67206973206e6f74206163746976652e0000006044820152606401610812565b6001600160a01b03831660009081526014602052604090205460ff16801561161057506001600160a01b03821660009081526013602052604090205460ff16155b156117065760085481111561168d5760405162461bcd60e51b815260206004820152603c60248201527f45524332303a20427579207472616e7366657220616d6f756e7420657863656560448201527f647320746865206d61785472616e73616374696f6e416d6f756e742e000000006064820152608401610812565b600a546001600160a01b0383166000908152602081905260409020546116b390836122ab565b11156117015760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b611858565b6001600160a01b03821660009081526014602052604090205460ff16801561174757506001600160a01b03831660009081526013602052604090205460ff16155b156117c4576008548111156117015760405162461bcd60e51b815260206004820152603d60248201527f45524332303a2053656c6c207472616e7366657220616d6f756e74206578636560448201527f65647320746865206d61785472616e73616374696f6e416d6f756e742e0000006064820152608401610812565b6001600160a01b03821660009081526013602052604090205460ff1661185857600a546001600160a01b03831660009081526020819052604090205461180a90836122ab565b11156118585760405162461bcd60e51b815260206004820152601a60248201527f45524332303a204d61782077616c6c65742065786365656465640000000000006044820152606401610812565b30600090815260208190526040902054600954811080159081906118835750600b54610100900460ff165b80156118995750600654600160a01b900460ff16155b80156118be57506001600160a01b03851660009081526014602052604090205460ff16155b80156118e357506001600160a01b03851660009081526012602052604090205460ff16155b801561190857506001600160a01b03841660009081526012602052604090205460ff16155b15611936576006805460ff60a01b1916600160a01b179055611928611e2e565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b90920482161591168061198457506001600160a01b03851660009081526012602052604090205460ff165b1561198d575060005b60008115611ab8576001600160a01b03861660009081526014602052604090205460ff1680156119bf57506000600e54115b15611a1d576119e460646119de600e5488611ee790919063ffffffff16565b90611efa565b9050600e54600f54826119f7919061236a565b611a019190612381565b60106000828254611a1291906122ab565b90915550611a9a9050565b6001600160a01b03871660009081526014602052604090205460ff168015611a4757506000600c54115b15611a9a57611a6660646119de600c5488611ee790919063ffffffff16565b9050600c54600d5482611a79919061236a565b611a839190612381565b60106000828254611a9491906122ab565b90915550505b8015611aab57611aab873083611d04565b611ab58186612444565b94505b611ac3878787611d04565b5050601154600e555050505050565b6001600160a01b038216611b325760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610812565b6001600160a01b03821660009081526020819052604090205481811015611ba65760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610812565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b6005546001600160a01b031633146107dd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610812565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611d2a5760405162461bcd60e51b8152600401610812906123bc565b6001600160a01b038216611d505760405162461bcd60e51b815260040161081290612401565b6001600160a01b03831660009081526020819052604090205481811015611dc85760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610812565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36112ca565b306000908152602081905260408120546010549091821580611e4e575081155b15611e5857505050565b600954611e6690601461236a565b831115611e7e57600954611e7b90601461236a565b92505b611e8783611f06565b600060108190556007546040516001600160a01b039091169147919081818185875af1925050503d8060008114611eda576040519150601f19603f3d011682016040523d82523d6000602084013e611edf565b606091505b505050505050565b6000611ef3828461236a565b9392505050565b6000611ef38284612381565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f3b57611f3b612457565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611fb9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fdd9190612302565b81600181518110611ff057611ff0612457565b60200260200101906001600160a01b031690816001600160a01b03168152505061203b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846112d0565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061209090859060009086903090429060040161246d565b600060405180830381600087803b1580156120aa57600080fd5b505af1158015611edf573d6000803e3d6000fd5b600060208083528351808285015260005b818110156120eb578581018301518582016040015282016120cf565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146107c857600080fd5b6000806040838503121561213457600080fd5b823561213f8161210c565b946020939093013593505050565b60008060006060848603121561216257600080fd5b833561216d8161210c565b9250602084013561217d8161210c565b929592945050506040919091013590565b6000602082840312156121a057600080fd5b5035919050565b6000602082840312156121b957600080fd5b8135611ef38161210c565b80151581146107c857600080fd5b600080604083850312156121e557600080fd5b82356121f08161210c565b91506020830135612200816121c4565b809150509250929050565b6000806040838503121561221e57600080fd5b50508035926020909101359150565b6000806040838503121561224057600080fd5b823561224b8161210c565b915060208301356122008161210c565b600181811c9082168061226f57607f821691505b60208210810361228f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561077257610772612295565b60208082526024908201527f45524332303a204d757374206b656570206665657320617420313025206f72206040820152636c65737360e01b606082015260800190565b60006020828403121561231457600080fd5b8151611ef38161210c565b60006020828403121561233157600080fd5b8151611ef3816121c4565b60008060006060848603121561235157600080fd5b8351925060208401519150604084015190509250925092565b808202811582820484141761077257610772612295565b60008261239e57634e487b7160e01b600052601260045260246000fd5b500490565b6000602082840312156123b557600080fd5b5051919050565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561077257610772612295565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124bd5784516001600160a01b031683529383019391830191600101612498565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220e3df3a131b57a3445509cc11184c41d3b5d79695aa1d020b424e605ffefa3a8764736f6c63430008110033

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

0000000000000000000000000ce1858308693de2576329175b5bfc26dbb1de6e00000000000000000000000091c234d95a64ac159ba58a366c47d50cec128f57

-----Decoded View---------------
Arg [0] : _markAndDevWallet (address): 0x0CE1858308693dE2576329175b5Bfc26dBB1de6e
Arg [1] : _CEXPlusAddress (address): 0x91c234d95a64Ac159bA58a366C47D50Cec128f57

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000ce1858308693de2576329175b5bfc26dbb1de6e
Arg [1] : 00000000000000000000000091c234d95a64ac159ba58a366c47d50cec128f57


Deployed Bytecode Sourcemap

34830:11724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9481:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11989:242;;;;;;;;;;-1:-1:-1;11989:242:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11989:242:0;1023:187:1;34906:51:0;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1406:32:1;;;1388:51;;1376:2;1361:18;34906:51:0;1215:230:1;10613:108:0;;;;;;;;;;-1:-1:-1;10701:12:0;;10613:108;;;1596:25:1;;;1584:2;1569:18;10613:108:0;1450:177:1;12812:295:0;;;;;;;;;;-1:-1:-1;12812:295:0;;;;;:::i;:::-;;:::i;34999:53::-;;;;;;;;;;;;35045:6;34999:53;;10454:93;;;;;;;;;;-1:-1:-1;10454:93:0;;10537:2;2443:36:1;;2431:2;2416:18;10454:93:0;2301:184:1;13517:270:0;;;;;;;;;;-1:-1:-1;13517:270:0;;;;;:::i;:::-;;:::i;37904:83::-;;;;;;;;;;-1:-1:-1;37904:83:0;;;;;:::i;:::-;;:::i;:::-;;34964:28;;;;;;;;;;-1:-1:-1;34964:28:0;;;;-1:-1:-1;;;;;34964:28:0;;;41947:126;;;;;;;;;;-1:-1:-1;41947:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;42037:28:0;42013:4;42037:28;;;:19;:28;;;;;;;;;41947:126;35407:28;;;;;;;;;;;;;;;;35290:31;;;;;;;;;;-1:-1:-1;35290:31:0;;;;;;;;;;;10785:177;;;;;;;;;;-1:-1:-1;10785:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10936:18:0;10904:7;10936:18;;;;;;;;;;;;10785:177;2834:103;;;;;;;;;;;;;:::i;40181:254::-;;;;;;;;;;-1:-1:-1;40181:254:0;;;;;:::i;:::-;;:::i;40005:167::-;;;;;;;;;;-1:-1:-1;40005:167:0;;;;;:::i;:::-;;:::i;40750:342::-;;;;;;;;;;-1:-1:-1;40750:342:0;;;;;:::i;:::-;;:::i;37996:964::-;;;;;;;;;;;;;:::i;2191:87::-;;;;;;;;;;-1:-1:-1;2264:6:0;;-1:-1:-1;;;;;2264:6:0;2191:87;;9701:104;;;;;;;;;;;;;:::i;39489:507::-;;;;;;;;;;-1:-1:-1;39489:507:0;;;;;:::i;:::-;;:::i;35093:31::-;;;;;;;;;;-1:-1:-1;35093:31:0;;;;-1:-1:-1;;;;;35093:31:0;;;14291:506;;;;;;;;;;-1:-1:-1;14291:506:0;;;;;:::i;:::-;;:::i;11169:234::-;;;;;;;;;;-1:-1:-1;11169:234:0;;;;;:::i;:::-;;:::i;35250:33::-;;;;;;;;;;-1:-1:-1;35250:33:0;;;;;;;;41102:182;;;;;;;;;;-1:-1:-1;41102:182:0;;;;;:::i;:::-;;:::i;35134:35::-;;;;;;;;;;;;;;;;41485:255;;;;;;;;;;-1:-1:-1;41485:255:0;;;;;:::i;:::-;;:::i;38969:511::-;;;;;;;;;;-1:-1:-1;38969:511:0;;;;;:::i;:::-;;:::i;35331:27::-;;;;;;;;;;;;;;;;11467:201;;;;;;;;;;-1:-1:-1;11467:201:0;;;;;:::i;:::-;;:::i;35176:33::-;;;;;;;;;;;;;;;;40444:297;;;;;;;;;;-1:-1:-1;40444:297:0;;;;;:::i;:::-;;:::i;3093:238::-;;;;;;;;;;-1:-1:-1;3093:238:0;;;;;:::i;:::-;;:::i;41293:183::-;;;;;;;;;;;;;:::i;35216:24::-;;;;;;;;;;;;;;;;9481:100;9535:13;9568:5;9561:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9481:100;:::o;11989:242::-;12108:4;807:10;12169:32;807:10;12185:7;12194:6;12169:8;:32::i;:::-;12219:4;12212:11;;;11989:242;;;;;:::o;12812:295::-;12943:4;807:10;13001:38;13017:4;807:10;13032:6;13001:15;:38::i;:::-;13050:27;13060:4;13066:2;13070:6;13050:9;:27::i;:::-;-1:-1:-1;13095:4:0;;12812:295;-1:-1:-1;;;;12812:295:0:o;13517:270::-;13632:4;807:10;13693:64;807:10;13709:7;13746:10;13718:25;807:10;13709:7;13718:9;:25::i;:::-;:38;;;;:::i;:::-;13693:8;:64::i;37904:83::-;37954:25;37960:10;37972:6;37954:5;:25::i;:::-;37904:83;:::o;2834:103::-;2076:13;:11;:13::i;:::-;2899:30:::1;2926:1;2899:18;:30::i;:::-;2834:103::o:0;40181:254::-;2076:13;:11;:13::i;:::-;40274:16:::1;:33:::0;;;40318:12:::1;:31:::0;;;40384:2:::1;40368:18:::0;::::1;;40360:67;;;;-1:-1:-1::0;;;40360:67:0::1;;;;;;;:::i;:::-;;;;;;;;40005:167:::0;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;40118:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;40118:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;40005:167::o;40750:342::-;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;40870:31:0;::::1;40862:60;;;::::0;-1:-1:-1;;;40862:60:0;;5337:2:1;40862:60:0::1;::::0;::::1;5319:21:1::0;5376:2;5356:18;;;5349:30;-1:-1:-1;;;5395:18:1;;;5388:46;5451:18;;40862:60:0::1;5135:340:1::0;40862:60:0::1;40953:16;::::0;;-1:-1:-1;;;;;40980:36:0;;::::1;-1:-1:-1::0;;;;;;40980:36:0;::::1;::::0;::::1;::::0;;;41032:52:::1;::::0;40953:16;::::1;::::0;;;41032:52:::1;::::0;40933:17:::1;::::0;41032:52:::1;40851:241;40750:342:::0;:::o;37996:964::-;2076:13;:11;:13::i;:::-;38060::::1;::::0;::::1;;38059:14;38051:50;;;::::0;-1:-1:-1;;;38051:50:0;;5682:2:1;38051:50:0::1;::::0;::::1;5664:21:1::0;5721:2;5701:18;;;5694:30;5760:25;5740:18;;;5733:53;5803:18;;38051:50:0::1;5480:347:1::0;38051:50:0::1;38149:15;-1:-1:-1::0;;;;;38149:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38131:55:0::1;;38209:4;38229:15;-1:-1:-1::0;;;;;38229:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38131:131;::::0;-1:-1:-1;;;;;;38131:131:0::1;::::0;;;;;;-1:-1:-1;;;;;6318:15:1;;;38131:131:0::1;::::0;::::1;6300:34:1::0;6370:15;;6350:18;;;6343:43;6235:18;;38131:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;38115:13;:147:::0;;-1:-1:-1;;;;;;38115:147:0::1;-1:-1:-1::0;;;;;38115:147:0;;;::::1;::::0;;::::1;::::0;;38273:66:::1;::::0;38290:4:::1;::::0;-1:-1:-1;;38273:8:0::1;:66::i;:::-;38357:13;::::0;38350:111:::1;::::0;-1:-1:-1;;;38350:111:0;;-1:-1:-1;;;;;38402:15:0::1;6589:32:1::0;;38350:111:0::1;::::0;::::1;6571:51:1::0;-1:-1:-1;;6638:18:1;;;6631:34;38357:13:0;;::::1;::::0;38350:29:::1;::::0;6544:18:1;;38350:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;38512:13:0::1;::::0;38475:58:::1;::::0;-1:-1:-1;;;;;38512:13:0::1;::::0;38475:28:::1;:58::i;:::-;38578:13;::::0;38544:55:::1;::::0;-1:-1:-1;;;;;38578:13:0::1;::::0;38544:25:::1;:55::i;:::-;38655:4;38612:22;10936:18:::0;;;;;;;;;;;38612:49:::1;;38675:15;-1:-1:-1::0;;;;;38675:31:0::1;;38714:21;38759:4;38779:14;38809:1;38825::::0;38841:7:::1;2264:6:::0;;-1:-1:-1;;;;;2264:6:0;;2191:87;38841:7:::1;38675:214;::::0;::::1;::::0;;;-1:-1:-1;;;;;;38675:214:0;;;-1:-1:-1;;;;;7285:15:1;;;38675:214:0::1;::::0;::::1;7267:34:1::0;7317:18;;;7310:34;;;;7360:18;;;7353:34;;;;7403:18;;;7396:34;7467:15;;;7446:19;;;7439:44;38863:15:0::1;7499:19:1::0;;;7492:35;7201:19;;38675:214:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;38903:13:0::1;:20:::0;;-1:-1:-1;;38934:18:0;;;;;-1:-1:-1;;37996:964:0:o;9701:104::-;9757:13;9790:7;9783:14;;;;;:::i;39489:507::-;2076:13;:11;:13::i;:::-;39683:4:::1;39662:13;10701:12:::0;;;10613:108;39662:13:::1;:17;::::0;39678:1:::1;39662:17;:::i;:::-;39661:26;;;;:::i;:::-;39647:9;:41;;39625:131;;;::::0;-1:-1:-1;;;39625:131:0;;8446:2:1;39625:131:0::1;::::0;::::1;8428:21:1::0;8485:2;8465:18;;;8458:30;8524:34;8504:18;;;8497:62;-1:-1:-1;;;8575:18:1;;;8568:38;8623:19;;39625:131:0::1;8244:404:1::0;39625:131:0::1;39831:4;39810:13;10701:12:::0;;;10613:108;39810:13:::1;:17;::::0;39826:1:::1;39810:17;:::i;:::-;39809:26;;;;:::i;:::-;39789:15;:47;;39767:140;;;::::0;-1:-1:-1;;;39767:140:0;;8855:2:1;39767:140:0::1;::::0;::::1;8837:21:1::0;8894:2;8874:18;;;8867:30;8933:34;8913:18;;;8906:62;-1:-1:-1;;;8984:18:1;;;8977:41;9035:19;;39767:140:0::1;8653:407:1::0;39767:140:0::1;39918:9;:27:::0;39956:20:::1;:32:::0;39489:507::o;14291:506::-;14411:4;807:10;14411:4;14499:25;807:10;14516:7;14499:9;:25::i;:::-;14472:52;;14577:15;14557:16;:35;;14535:122;;;;-1:-1:-1;;;14535:122:0;;9267:2:1;14535:122:0;;;9249:21:1;9306:2;9286:18;;;9279:30;9345:34;9325:18;;;9318:62;-1:-1:-1;;;9396:18:1;;;9389:35;9441:19;;14535:122:0;9065:401:1;14535:122:0;14693:60;14702:5;14709:7;14737:15;14718:16;:34;14693:8;:60::i;11169:234::-;11284:4;807:10;11345:28;807:10;11362:2;11366:6;11345:9;:28::i;41102:182::-;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;41187:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;41187:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41242:34;;1163:41:1;;;41242:34:0::1;::::0;1136:18:1;41242:34:0::1;;;;;;;41102:182:::0;;:::o;41485:255::-;2076:13;:11;:13::i;:::-;41563:36:::1;::::0;-1:-1:-1;;;41563:36:0;;41593:4:::1;41563:36;::::0;::::1;1388:51:1::0;41602:1:0::1;::::0;-1:-1:-1;;;;;41563:21:0;::::1;::::0;::::1;::::0;1361:18:1;;41563:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:40;41555:62;;;::::0;-1:-1:-1;;;41555:62:0;;9862:2:1;41555:62:0::1;::::0;::::1;9844:21:1::0;9901:1;9881:18;;;9874:29;-1:-1:-1;;;9919:18:1;;;9912:39;9968:18;;41555:62:0::1;9660:332:1::0;41555:62:0::1;41645:36;::::0;-1:-1:-1;;;41645:36:0;;41675:4:::1;41645:36;::::0;::::1;1388:51:1::0;41628:14:0::1;::::0;-1:-1:-1;;;;;41645:21:0;::::1;::::0;::::1;::::0;1361:18:1;;41645:36:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41692:40;::::0;-1:-1:-1;;;41692:40:0;;41713:10:::1;41692:40;::::0;::::1;6571:51:1::0;6638:18;;;6631:34;;;41628:53:0;;-1:-1:-1;;;;;;41692:20:0;::::1;::::0;::::1;::::0;6544:18:1;;41692:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;41544:196;41485:255:::0;:::o;38969:511::-;39077:4;2076:13;:11;:13::i;:::-;39156:6:::1;39135:13;10701:12:::0;;;10613:108;39135:13:::1;:17;::::0;39151:1:::1;39135:17;:::i;:::-;39134:28;;;;:::i;:::-;39121:9;:41;;39099:151;;;::::0;-1:-1:-1;;;39099:151:0;;10199:2:1;39099:151:0::1;::::0;::::1;10181:21:1::0;10238:2;10218:18;;;10211:30;10277:34;10257:18;;;10250:62;10348:30;10328:18;;;10321:58;10396:19;;39099:151:0::1;9997:424:1::0;39099:151:0::1;39318:4;39297:13;10701:12:::0;;;10613:108;39297:13:::1;:17;::::0;39313:1:::1;39297:17;:::i;:::-;39296:26;;;;:::i;:::-;39283:9;:39;;39261:148;;;::::0;-1:-1:-1;;;39261:148:0;;10628:2:1;39261:148:0::1;::::0;::::1;10610:21:1::0;10667:2;10647:18;;;10640:30;10706:34;10686:18;;;10679:62;10777:29;10757:18;;;10750:57;10824:19;;39261:148:0::1;10426:423:1::0;39261:148:0::1;-1:-1:-1::0;39420:18:0::1;:30:::0;39468:4:::1;::::0;38969:511::o;11467:201::-;-1:-1:-1;;;;;11633:18:0;;;11601:7;11633:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11467:201::o;40444:297::-;2076:13;:11;:13::i;:::-;40538:17:::1;:34:::0;;;40583:13:::1;:33:::0;;;40627:11:::1;:27:::0;;;40690:2:::1;40673:19:::0;::::1;;40665:68;;;;-1:-1:-1::0;;;40665:68:0::1;;;;;;;:::i;3093:238::-:0;2076:13;:11;:13::i;:::-;-1:-1:-1;;;;;3196:22:0;::::1;3174:110;;;::::0;-1:-1:-1;;;3174:110:0;;11056:2:1;3174:110:0::1;::::0;::::1;11038:21:1::0;11095:2;11075:18;;;11068:30;11134:34;11114:18;;;11107:62;-1:-1:-1;;;11185:18:1;;;11178:36;11231:19;;3174:110:0::1;10854:402:1::0;3174:110:0::1;3295:28;3314:8;3295:18;:28::i;41293:183::-:0;2076:13;:11;:13::i;:::-;41386:82:::1;::::0;41349:12:::1;::::0;41394:10:::1;::::0;41418:21:::1;::::0;41349:12;41386:82;41349:12;41386:82;41418:21;41394:10;41386:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;41293:183:0:o;18440:381::-;-1:-1:-1;;;;;18576:19:0;;18568:68;;;;-1:-1:-1;;;18568:68:0;;11673:2:1;18568:68:0;;;11655:21:1;11712:2;11692:18;;;11685:30;11751:34;11731:18;;;11724:62;-1:-1:-1;;;11802:18:1;;;11795:34;11846:19;;18568:68:0;11471:400:1;18568:68:0;-1:-1:-1;;;;;18655:21:0;;18647:68;;;;-1:-1:-1;;;18647:68:0;;12078:2:1;18647:68:0;;;12060:21:1;12117:2;12097:18;;;12090:30;12156:34;12136:18;;;12129:62;-1:-1:-1;;;12207:18:1;;;12200:32;12249:19;;18647:68:0;11876:398:1;18647:68:0;-1:-1:-1;;;;;18729:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18781:32;;1596:25:1;;;18781:32:0;;1569:18:1;18781:32:0;;;;;;;18440:381;;;:::o;19113:502::-;19248:24;19275:25;19285:5;19292:7;19275:9;:25::i;:::-;19248:52;;-1:-1:-1;;19315:16:0;:37;19311:297;;19415:6;19395:16;:26;;19369:117;;;;-1:-1:-1;;;19369:117:0;;12481:2:1;19369:117:0;;;12463:21:1;12520:2;12500:18;;;12493:30;12559:31;12539:18;;;12532:59;12608:18;;19369:117:0;12279:353:1;19369:117:0;19530:51;19539:5;19546:7;19574:6;19555:16;:25;19530:8;:51::i;42082:3341::-;-1:-1:-1;;;;;42214:18:0;;42206:68;;;;-1:-1:-1;;;42206:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42293:16:0;;42285:64;;;;-1:-1:-1;;;42285:64:0;;;;;;;:::i;:::-;42367:6;42377:1;42367:11;42363:93;;42395:28;42411:4;42417:2;42421:1;42395:15;:28::i;42363:93::-;2264:6;;-1:-1:-1;;;;;42487:15:0;;;2264:6;;42487:15;;;;:45;;-1:-1:-1;2264:6:0;;-1:-1:-1;;;;;42519:13:0;;;2264:6;;42519:13;;42487:45;:78;;;;-1:-1:-1;;;;;;42549:16:0;;;;42487:78;:112;;;;-1:-1:-1;;;;;;42582:17:0;;35045:6;42582:17;;42487:112;:138;;;;-1:-1:-1;42617:8:0;;-1:-1:-1;;;42617:8:0;;;;42616:9;42487:138;42469:1512;;;42657:13;;;;42652:210;;-1:-1:-1;;;;;42721:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;42750:23:0;;;;;;:19;:23;;;;;;;;42721:52;42691:155;;;;-1:-1:-1;;;42691:155:0;;13649:2:1;42691:155:0;;;13631:21:1;13688:2;13668:18;;;13661:30;13727:31;13707:18;;;13700:59;13776:18;;42691:155:0;13447:353:1;42691:155:0;-1:-1:-1;;;;;42925:31:0;;;;;;:25;:31;;;;;;;;:88;;;;-1:-1:-1;;;;;;42978:35:0;;;;;;:31;:35;;;;;;;;42977:36;42925:88;42903:1067;;;43088:20;;43078:6;:30;;43048:164;;;;-1:-1:-1;;;43048:164:0;;14007:2:1;43048:164:0;;;13989:21:1;14046:2;14026:18;;;14019:30;14085:34;14065:18;;;14058:62;14156:30;14136:18;;;14129:58;14204:19;;43048:164:0;13805:424:1;43048:164:0;43287:9;;-1:-1:-1;;;;;10936:18:0;;10904:7;10936:18;;;;;;;;;;;43261:22;;:6;:22;:::i;:::-;:35;;43231:135;;;;-1:-1:-1;;;43231:135:0;;14436:2:1;43231:135:0;;;14418:21:1;14475:2;14455:18;;;14448:30;14514:28;14494:18;;;14487:56;14560:18;;43231:135:0;14234:350:1;43231:135:0;42903:1067;;;-1:-1:-1;;;;;43448:29:0;;;;;;:25;:29;;;;;;;;:88;;;;-1:-1:-1;;;;;;43499:37:0;;;;;;:31;:37;;;;;;;;43498:38;43448:88;43426:544;;;43611:20;;43601:6;:30;;43571:165;;;;-1:-1:-1;;;43571:165:0;;14791:2:1;43571:165:0;;;14773:21:1;14830:2;14810:18;;;14803:30;14869:34;14849:18;;;14842:62;14940:31;14920:18;;;14913:59;14989:19;;43571:165:0;14589:425:1;43426:544:0;-1:-1:-1;;;;;43763:35:0;;;;;;:31;:35;;;;;;;;43758:212;;43875:9;;-1:-1:-1;;;;;10936:18:0;;10904:7;10936:18;;;;;;;;;;;43849:22;;:6;:22;:::i;:::-;:35;;43819:135;;;;-1:-1:-1;;;43819:135:0;;14436:2:1;43819:135:0;;;14418:21:1;14475:2;14455:18;;;14448:30;14514:28;14494:18;;;14487:56;14560:18;;43819:135:0;14234:350:1;43819:135:0;44043:4;43994:28;10936:18;;;;;;;;;;;44102;;44078:42;;;;;;;44152:35;;-1:-1:-1;44176:11:0;;;;;;;44152:35;:61;;;;-1:-1:-1;44205:8:0;;-1:-1:-1;;;44205:8:0;;;;44204:9;44152:61;:110;;;;-1:-1:-1;;;;;;44231:31:0;;;;;;:25;:31;;;;;;;;44230:32;44152:110;:153;;;;-1:-1:-1;;;;;;44280:25:0;;;;;;:19;:25;;;;;;;;44279:26;44152:153;:194;;;;-1:-1:-1;;;;;;44323:23:0;;;;;;:19;:23;;;;;;;;44322:24;44152:194;44134:328;;;44373:8;:15;;-1:-1:-1;;;;44373:15:0;-1:-1:-1;;;44373:15:0;;;44406:10;:8;:10::i;:::-;44434:8;:16;;-1:-1:-1;;;;44434:16:0;;;44134:328;44491:8;;-1:-1:-1;;;;;44517:25:0;;44475:12;44517:25;;;:19;:25;;;;;;44491:8;-1:-1:-1;;;44491:8:0;;;;;44490:9;;44517:25;;:52;;-1:-1:-1;;;;;;44546:23:0;;;;;;:19;:23;;;;;;;;44517:52;44513:100;;;-1:-1:-1;44596:5:0;44513:100;44626:12;44660:7;44656:675;;;-1:-1:-1;;;;;44712:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;44761:1;44745:13;;:17;44712:50;44708:472;;;44790:34;44820:3;44790:25;44801:13;;44790:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;44783:41;;44895:13;;44874:17;;44867:4;:24;;;;:::i;:::-;44866:42;;;;:::i;:::-;44843:19;;:65;;;;;;;:::i;:::-;;;;-1:-1:-1;44708:472:0;;-1:-1:-1;44708:472:0;;-1:-1:-1;;;;;44970:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;45020:1;45005:12;;:16;44970:51;44966:214;;;45049:33;45078:3;45049:24;45060:12;;45049:6;:10;;:24;;;;:::i;:33::-;45042:40;;45152:12;;45132:16;;45125:4;:23;;;;:::i;:::-;45124:40;;;;:::i;:::-;45101:19;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;44966:214:0;45201:8;;45197:91;;45230:42;45246:4;45260;45267;45230:15;:42::i;:::-;45305:14;45315:4;45305:14;;:::i;:::-;;;44656:675;45344:33;45360:4;45366:2;45370:6;45344:15;:33::i;:::-;-1:-1:-1;;45404:11:0;;45388:13;:27;-1:-1:-1;;;;;42082:3341:0:o;17322:679::-;-1:-1:-1;;;;;17406:21:0;;17398:67;;;;-1:-1:-1;;;17398:67:0;;15354:2:1;17398:67:0;;;15336:21:1;15393:2;15373:18;;;15366:30;15432:34;15412:18;;;15405:62;-1:-1:-1;;;15483:18:1;;;15476:31;15524:19;;17398:67:0;15152:397:1;17398:67:0;-1:-1:-1;;;;;17567:18:0;;17542:22;17567:18;;;;;;;;;;;17604:24;;;;17596:71;;;;-1:-1:-1;;;17596:71:0;;15756:2:1;17596:71:0;;;15738:21:1;15795:2;15775:18;;;15768:30;15834:34;15814:18;;;15807:62;-1:-1:-1;;;15885:18:1;;;15878:32;15927:19;;17596:71:0;15554:398:1;17596:71:0;-1:-1:-1;;;;;17703:18:0;;:9;:18;;;;;;;;;;;17724:23;;;17703:44;;17842:12;:22;;;;;;;17894:37;1596:25:1;;;17703:9:0;;:18;17894:37;;1569:18:1;17894:37:0;;;;;;;41692:40:::1;41544:196;41485:255:::0;:::o;2357:132::-;2264:6;;-1:-1:-1;;;;;2264:6:0;807:10;2421:23;2413:68;;;;-1:-1:-1;;;2413:68:0;;16159:2:1;2413:68:0;;;16141:21:1;;;16178:18;;;16171:30;16237:34;16217:18;;;16210:62;16289:18;;2413:68:0;15957:356:1;3492:191:0;3585:6;;;-1:-1:-1;;;;;3602:17:0;;;-1:-1:-1;;;;;;3602:17:0;;;;;;;3635:40;;3585:6;;;3602:17;3585:6;;3635:40;;3566:16;;3635:40;3555:128;3492:191;:::o;41749:189::-;-1:-1:-1;;;;;41832:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;41832:39:0;;;;;;;;;;41890:40;;41832:39;;:31;41890:40;;;41749:189;;:::o;15268:881::-;-1:-1:-1;;;;;15399:18:0;;15391:68;;;;-1:-1:-1;;;15391:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15478:16:0;;15470:64;;;;-1:-1:-1;;;15470:64:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15622:15:0;;15600:19;15622:15;;;;;;;;;;;15670:21;;;;15648:109;;;;-1:-1:-1;;;15648:109:0;;16520:2:1;15648:109:0;;;16502:21:1;16559:2;16539:18;;;16532:30;16598:34;16578:18;;;16571:62;-1:-1:-1;;;16649:18:1;;;16642:36;16695:19;;15648:109:0;16318:402:1;15648:109:0;-1:-1:-1;;;;;15793:15:0;;;:9;:15;;;;;;;;;;;15811:20;;;15793:38;;16011:13;;;;;;;;;;:23;;;;;;16064:26;;1596:25:1;;;16011:13:0;;16064:26;;1569:18:1;16064:26:0;;;;;;;16104:37;41485:255;45944:607;46027:4;45983:23;10936:18;;;;;;;;;;;46072:19;;10936:18;;46132:20;;;:46;;-1:-1:-1;46156:22:0;;46132:46;46128:85;;;46195:7;;;45944:607::o;46128:85::-;46248:18;;:23;;46269:2;46248:23;:::i;:::-;46230:15;:41;46226:115;;;46306:18;;:23;;46327:2;46306:23;:::i;:::-;46288:41;;46226:115;46354:33;46371:15;46354:16;:33::i;:::-;46423:1;46401:19;:23;;;46463:16;;46455:88;;-1:-1:-1;;;;;46463:16:0;;;;46507:21;;46455:88;;46423:1;46455:88;46507:21;46463:16;46455:88;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45944:607:0:o;24803:98::-;24861:7;24888:5;24892:1;24888;:5;:::i;:::-;24881:12;24803:98;-1:-1:-1;;;24803:98:0:o;25203:::-;25261:7;25288:5;25292:1;25288;:5;:::i;45432:503::-;45522:16;;;45536:1;45522:16;;;;;;;;45498:21;;45522:16;;;;;;;;;;-1:-1:-1;45522:16:0;45498:40;;45567:4;45549;45554:1;45549:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;45549:23:0;;;-1:-1:-1;;;;;45549:23:0;;;;;45593:15;-1:-1:-1;;;;;45593:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45583:4;45588:1;45583:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;45583:32:0;;;-1:-1:-1;;;;;45583:32:0;;;;;45629:62;45646:4;45661:15;45679:11;45629:8;:62::i;:::-;45731:196;;-1:-1:-1;;;45731:196:0;;-1:-1:-1;;;;;45731:15:0;:66;;;;:196;;45812:11;;45838:1;;45854:4;;45881;;45901:15;;45731:196;;;:::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:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1632:456::-;1709:6;1717;1725;1778:2;1766:9;1757:7;1753:23;1749:32;1746:52;;;1794:1;1791;1784:12;1746:52;1833:9;1820:23;1852:31;1877:5;1852:31;:::i;:::-;1902:5;-1:-1:-1;1959:2:1;1944:18;;1931:32;1972:33;1931:32;1972:33;:::i;:::-;1632:456;;2024:7;;-1:-1:-1;;;2078:2:1;2063:18;;;;2050:32;;1632:456::o;2490:180::-;2549:6;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;-1:-1:-1;2641:23:1;;2490:180;-1:-1:-1;2490:180:1:o;2675:247::-;2734:6;2787:2;2775:9;2766:7;2762:23;2758:32;2755:52;;;2803:1;2800;2793:12;2755:52;2842:9;2829:23;2861:31;2886:5;2861:31;:::i;2927:118::-;3013:5;3006:13;2999:21;2992:5;2989:32;2979:60;;3035:1;3032;3025:12;3050:382;3115:6;3123;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3231:9;3218:23;3250:31;3275:5;3250:31;:::i;:::-;3300:5;-1:-1:-1;3357:2:1;3342:18;;3329:32;3370:30;3329:32;3370:30;:::i;:::-;3419:7;3409:17;;;3050:382;;;;;:::o;3437:248::-;3505:6;3513;3566:2;3554:9;3545:7;3541:23;3537:32;3534:52;;;3582:1;3579;3572:12;3534:52;-1:-1:-1;;3605:23:1;;;3675:2;3660:18;;;3647:32;;-1:-1:-1;3437:248:1:o;3690:388::-;3758:6;3766;3819:2;3807:9;3798:7;3794:23;3790:32;3787:52;;;3835:1;3832;3825:12;3787:52;3874:9;3861:23;3893:31;3918:5;3893:31;:::i;:::-;3943:5;-1:-1:-1;4000:2:1;3985:18;;3972:32;4013:33;3972:32;4013:33;:::i;4083:380::-;4162:1;4158:12;;;;4205;;;4226:61;;4280:4;4272:6;4268:17;4258:27;;4226:61;4333:2;4325:6;4322:14;4302:18;4299:38;4296:161;;4379:10;4374:3;4370:20;4367:1;4360:31;4414:4;4411:1;4404:15;4442:4;4439:1;4432:15;4296:161;;4083:380;;;:::o;4468:127::-;4529:10;4524:3;4520:20;4517:1;4510:31;4560:4;4557:1;4550:15;4584:4;4581:1;4574:15;4600:125;4665:9;;;4686:10;;;4683:36;;;4699:18;;:::i;4730:400::-;4932:2;4914:21;;;4971:2;4951:18;;;4944:30;5010:34;5005:2;4990:18;;4983:62;-1:-1:-1;;;5076:2:1;5061:18;;5054:34;5120:3;5105:19;;4730:400::o;5832:251::-;5902:6;5955:2;5943:9;5934:7;5930:23;5926:32;5923:52;;;5971:1;5968;5961:12;5923:52;6003:9;5997:16;6022:31;6047:5;6022:31;:::i;6676:245::-;6743:6;6796:2;6784:9;6775:7;6771:23;6767:32;6764:52;;;6812:1;6809;6802:12;6764:52;6844:9;6838:16;6863:28;6885:5;6863:28;:::i;7538:306::-;7626:6;7634;7642;7695:2;7683:9;7674:7;7670:23;7666:32;7663:52;;;7711:1;7708;7701:12;7663:52;7740:9;7734:16;7724:26;;7790:2;7779:9;7775:18;7769:25;7759:35;;7834:2;7823:9;7819:18;7813:25;7803:35;;7538:306;;;;;:::o;7849:168::-;7922:9;;;7953;;7970:15;;;7964:22;;7950:37;7940:71;;7991:18;;:::i;8022:217::-;8062:1;8088;8078:132;;8132:10;8127:3;8123:20;8120:1;8113:31;8167:4;8164:1;8157:15;8195:4;8192:1;8185:15;8078:132;-1:-1:-1;8224:9:1;;8022:217::o;9471:184::-;9541:6;9594:2;9582:9;9573:7;9569:23;9565:32;9562:52;;;9610:1;9607;9600:12;9562:52;-1:-1:-1;9633:16:1;;9471:184;-1:-1:-1;9471:184:1:o;12637:401::-;12839:2;12821:21;;;12878:2;12858:18;;;12851:30;12917:34;12912:2;12897:18;;12890:62;-1:-1:-1;;;12983:2:1;12968:18;;12961:35;13028:3;13013:19;;12637:401::o;13043:399::-;13245:2;13227:21;;;13284:2;13264:18;;;13257:30;13323:34;13318:2;13303:18;;13296:62;-1:-1:-1;;;13389:2:1;13374:18;;13367:33;13432:3;13417:19;;13043:399::o;15019:128::-;15086:9;;;15107:11;;;15104:37;;;15121:18;;:::i;16857:127::-;16918:10;16913:3;16909:20;16906:1;16899:31;16949:4;16946:1;16939:15;16973:4;16970:1;16963:15;16989:980;17251:4;17299:3;17288:9;17284:19;17330:6;17319:9;17312:25;17356:2;17394:6;17389:2;17378:9;17374:18;17367:34;17437:3;17432:2;17421:9;17417:18;17410:31;17461:6;17496;17490:13;17527:6;17519;17512:22;17565:3;17554:9;17550:19;17543:26;;17604:2;17596:6;17592:15;17578:29;;17625:1;17635:195;17649:6;17646:1;17643:13;17635:195;;;17714:13;;-1:-1:-1;;;;;17710:39:1;17698:52;;17805:15;;;;17770:12;;;;17746:1;17664:9;17635:195;;;-1:-1:-1;;;;;;;17886:32:1;;;;17881:2;17866:18;;17859:60;-1:-1:-1;;;17950:3:1;17935:19;17928:35;17847:3;16989:980;-1:-1:-1;;;16989:980:1:o

Swarm Source

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