ETH Price: $2,360.12 (+0.81%)
Gas: 7.35 Gwei

Token

N Protocol ($N)
 

Overview

Max Total Supply

1,000,000 $N

Holders

78

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,350.53267772402841885 $N

Value
$0.00
0x5248c07204874232515f1B0498aA3acC26Fd5eb1
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:
N

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-13
*/

/*

*/

// SPDX-License-Identifier: MIT
pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

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

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

    bool private swapping;

    address public devWallet;

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

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

    uint256 public buyTotalFees;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

    constructor() ERC20("N Protocol", "$N") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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

        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 3;

        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 3;

        uint256 totalSupply = 1 * 1e6 * 1e18;

        maxTransactionAmount = 3 * 1e4 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 3 * 1e4 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 10) / 10000; // 0.1% swap wallet

        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        devWallet = address(0x8b3C43CcefD704cEb278801761B4Ab47c040F9D2);

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

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

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

    receive() external payable {}

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

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

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

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

    function updateTaxes(uint256 buyDev, uint256 buyLiq, uint256 sellDev, uint256 sellliq) external onlyOwner {
        buyLiquidityFee = buyLiq;
        buyDevFee = buyDev;
        buyTotalFees = buyLiquidityFee + buyDevFee;

        sellLiquidityFee = sellliq;
        sellDevFee = sellDev;
        sellTotalFees = sellLiquidityFee + sellDevFee;

        require(buyTotalFees + sellTotalFees < 99, "Sanity check");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;
        bool success;

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

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

        // Halve the amount of liquidity tokens
        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) / totalTokensToSwap / 2;
        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance.sub(initialETHBalance);
	
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForDev;

        tokensForLiquidity = 0;
        tokensForDev = 0;

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyDev","type":"uint256"},{"internalType":"uint256","name":"buyLiq","type":"uint256"},{"internalType":"uint256","name":"sellDev","type":"uint256"},{"internalType":"uint256","name":"sellliq","type":"uint256"}],"name":"updateTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805462ffffff191660011790553480156200002057600080fd5b50604080518082018252600a8152691388141c9bdd1bd8dbdb60b21b602080830191825283518085019094526002845261122760f11b9084015281519192916200006d9160039162000622565b5080516200008390600490602084019062000622565b505050620000a06200009a6200036f60201b60201c565b62000373565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000c2816001620003c5565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200010d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001339190620006c8565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000181573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a79190620006c8565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021b9190620006c8565b6001600160a01b031660a081905262000236906001620003c5565b60a051620002469060016200043f565b69065a4da25d3016c00000600781905560095560006003818169d3c21bcecceda10000006127106200027a82600a62000710565b62000286919062000732565b600855600c859055600d8490556200029f848662000755565b600b55600f8390556010829055620002b8828462000755565b600e55600680546001600160a01b031916738b3c43ccefd704ceb278801761b4ab47c040f9d217905562000300620002f86005546001600160a01b031690565b600162000493565b6200030d30600162000493565b6200031c61dead600162000493565b6200033b620003336005546001600160a01b031690565b6001620003c5565b62000348306001620003c5565b6200035761dead6001620003c5565b6200036333826200053d565b505050505050620007ad565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004145760405162461bcd60e51b8152602060048201819052602482015260008051602062002a2583398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620004de5760405162461bcd60e51b8152602060048201819052602482015260008051602062002a2583398151915260448201526064016200040b565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005955760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200040b565b8060026000828254620005a9919062000755565b90915550506001600160a01b03821660009081526020819052604081208054839290620005d890849062000755565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006309062000770565b90600052602060002090601f0160209004810192826200065457600085556200069f565b82601f106200066f57805160ff19168380011785556200069f565b828001600101855582156200069f579182015b828111156200069f57825182559160200191906001019062000682565b50620006ad929150620006b1565b5090565b5b80821115620006ad5760008155600101620006b2565b600060208284031215620006db57600080fd5b81516001600160a01b0381168114620006f357600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200072d576200072d620006fa565b500290565b6000826200075057634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200076b576200076b620006fa565b500190565b600181811c908216806200078557607f821691505b60208210811415620007a757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612228620007fd600039600081816103fc0152610b0501526000818161030901528181611b7b01528181611c3401528181611c7001528181611cea0152611d5201526122286000f3fe6080604052600436106102605760003560e01c80638ea5220f11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461072e578063e2f4560514610774578063f11a24d31461078a578063f2fde38b146107a0578063f6374342146107c0578063f8b45b05146107d657600080fd5b8063bbc0c742146106a3578063c0246668146106c2578063c8c8ebe4146106e2578063d257b34f146106f8578063d85ba0631461071857600080fd5b80639fccce32116101085780639fccce32146105e7578063a0d82dc5146105fd578063a457c2d714610613578063a9059cbb14610633578063adda68ee14610653578063b62496f51461067357600080fd5b80638ea5220f1461055c578063924de9b71461057c57806395d89b411461059c5780639a7a23d6146105b15780639c3b4fdc146105d157600080fd5b806349bd5a5e116101dd57806370a08231116101a157806370a08231146104a7578063715018a6146104dd578063751039fc146104f45780637571336a146105095780638a8c523c146105295780638da5cb5b1461053e57600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780636a486a8e146104715780636ddd17131461048757600080fd5b80631a8145bb116102245780631a8145bb1461036257806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806339509351146103ca57600080fd5b806306fdde031461026c578063095ea7b31461029757806310d5de53146102c75780631694505e146102f757806318160ddd1461034357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107ec565b60405161028e9190611dca565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611e34565b61087e565b604051901515815260200161028e565b3480156102d357600080fd5b506102b76102e2366004611e60565b60146020526000908152604090205460ff1681565b34801561030357600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161028e565b34801561034f57600080fd5b506002545b60405190815260200161028e565b34801561036e57600080fd5b5061035460115481565b34801561038457600080fd5b506102b7610393366004611e7d565b610894565b3480156103a457600080fd5b5061032b61dead81565b3480156103ba57600080fd5b506040516012815260200161028e565b3480156103d657600080fd5b506102b76103e5366004611e34565b610943565b3480156103f657600080fd5b5061032b7f000000000000000000000000000000000000000000000000000000000000000081565b34801561042a57600080fd5b50600a546102b79060ff1681565b34801561044457600080fd5b506102b7610453366004611e60565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047d57600080fd5b50610354600e5481565b34801561049357600080fd5b50600a546102b79062010000900460ff1681565b3480156104b357600080fd5b506103546104c2366004611e60565b6001600160a01b031660009081526020819052604090205490565b3480156104e957600080fd5b506104f261097f565b005b34801561050057600080fd5b506102b76109b5565b34801561051557600080fd5b506104f2610524366004611ece565b6109f2565b34801561053557600080fd5b506104f2610a47565b34801561054a57600080fd5b506005546001600160a01b031661032b565b34801561056857600080fd5b5060065461032b906001600160a01b031681565b34801561058857600080fd5b506104f2610597366004611f03565b610a84565b3480156105a857600080fd5b50610281610aca565b3480156105bd57600080fd5b506104f26105cc366004611ece565b610ad9565b3480156105dd57600080fd5b50610354600d5481565b3480156105f357600080fd5b5061035460125481565b34801561060957600080fd5b5061035460105481565b34801561061f57600080fd5b506102b761062e366004611e34565b610bb9565b34801561063f57600080fd5b506102b761064e366004611e34565b610c52565b34801561065f57600080fd5b506104f261066e366004611f1e565b610c5f565b34801561067f57600080fd5b506102b761068e366004611e60565b60156020526000908152604090205460ff1681565b3480156106af57600080fd5b50600a546102b790610100900460ff1681565b3480156106ce57600080fd5b506104f26106dd366004611ece565b610d0a565b3480156106ee57600080fd5b5061035460075481565b34801561070457600080fd5b506102b7610713366004611f50565b610d93565b34801561072457600080fd5b50610354600b5481565b34801561073a57600080fd5b50610354610749366004611f69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078057600080fd5b5061035460085481565b34801561079657600080fd5b50610354600c5481565b3480156107ac57600080fd5b506104f26107bb366004611e60565b610eea565b3480156107cc57600080fd5b50610354600f5481565b3480156107e257600080fd5b5061035460095481565b6060600380546107fb90611fa2565b80601f016020809104026020016040519081016040528092919081815260200182805461082790611fa2565b80156108745780601f1061084957610100808354040283529160200191610874565b820191906000526020600020905b81548152906001019060200180831161085757829003601f168201915b5050505050905090565b600061088b338484610f85565b50600192915050565b60006108a18484846110a9565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109388533858403610f85565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161088b91859061097a908690611ff3565b610f85565b6005546001600160a01b031633146109a95760405162461bcd60e51b81526004016109229061200b565b6109b36000611756565b565b6005546000906001600160a01b031633146109e25760405162461bcd60e51b81526004016109229061200b565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a1c5760405162461bcd60e51b81526004016109229061200b565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a715760405162461bcd60e51b81526004016109229061200b565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610aae5760405162461bcd60e51b81526004016109229061200b565b600a8054911515620100000262ff000019909216919091179055565b6060600480546107fb90611fa2565b6005546001600160a01b03163314610b035760405162461bcd60e51b81526004016109229061200b565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610bab5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610922565b610bb582826117a8565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610922565b610c483385858403610f85565b5060019392505050565b600061088b3384846110a9565b6005546001600160a01b03163314610c895760405162461bcd60e51b81526004016109229061200b565b600c839055600d849055610c9d8484611ff3565b600b55600f8190556010829055610cb48282611ff3565b600e819055600b54606391610cc891611ff3565b10610d045760405162461bcd60e51b815260206004820152600c60248201526b53616e69747920636865636b60a01b6044820152606401610922565b50505050565b6005546001600160a01b03163314610d345760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610dc05760405162461bcd60e51b81526004016109229061200b565b620186a0610dcd60025490565b610dd8906001612040565b610de2919061205f565b821015610e4f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610922565b6103e8610e5b60025490565b610e66906005612040565b610e70919061205f565b821115610edc5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610922565b50600881905560015b919050565b6005546001600160a01b03163314610f145760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038116610f795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610922565b610f8281611756565b50565b6001600160a01b038316610fe75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610922565b6001600160a01b0382166110485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610922565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110cf5760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166110f55760405162461bcd60e51b8152600401610922906120c6565b8061110b57611106838360006117fc565b505050565b600a5460ff1615611481576005546001600160a01b0384811691161480159061114257506005546001600160a01b03838116911614155b801561115657506001600160a01b03821615155b801561116d57506001600160a01b03821661dead14155b80156111835750600554600160a01b900460ff16155b1561148157600a54610100900460ff1661121b576001600160a01b03831660009081526013602052604090205460ff16806111d657506001600160a01b03821660009081526013602052604090205460ff165b61121b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610922565b6001600160a01b03831660009081526015602052604090205460ff16801561125c57506001600160a01b03821660009081526014602052604090205460ff16155b15611340576007548111156112d15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610922565b6009546001600160a01b0383166000908152602081905260409020546112f79083611ff3565b111561133b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b611481565b6001600160a01b03821660009081526015602052604090205460ff16801561138157506001600160a01b03831660009081526014602052604090205460ff16155b156113f75760075481111561133b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610922565b6001600160a01b03821660009081526014602052604090205460ff16611481576009546001600160a01b03831660009081526020819052604090205461143d9083611ff3565b11156114815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b30600090815260208190526040902054600854811080159081906114ad5750600a5462010000900460ff165b80156114c35750600554600160a01b900460ff16155b80156114e857506001600160a01b03851660009081526015602052604090205460ff16155b801561150d57506001600160a01b03851660009081526013602052604090205460ff16155b801561153257506001600160a01b03841660009081526013602052604090205460ff16155b15611560576005805460ff60a01b1916600160a01b179055611552611950565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806115ae57506001600160a01b03851660009081526013602052604090205460ff165b156115b7575060005b60008115611742576001600160a01b03861660009081526015602052604090205460ff1680156115e957506000600e54115b156116775761160e6064611608600e5488611af990919063ffffffff16565b90611b0c565b9050600e54600f54826116219190612040565b61162b919061205f565b6011600082825461163c9190611ff3565b9091555050600e546010546116519083612040565b61165b919061205f565b6012600082825461166c9190611ff3565b909155506117249050565b6001600160a01b03871660009081526015602052604090205460ff1680156116a157506000600b54115b15611724576116c06064611608600b5488611af990919063ffffffff16565b9050600b54600c54826116d39190612040565b6116dd919061205f565b601160008282546116ee9190611ff3565b9091555050600b54600d546117039083612040565b61170d919061205f565b6012600082825461171e9190611ff3565b90915550505b8015611735576117358730836117fc565b61173f8186612109565b94505b61174d8787876117fc565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118225760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166118485760405162461bcd60e51b8152600401610922906120c6565b6001600160a01b038316600090815260208190526040902054818110156118c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610922565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118f7908490611ff3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194391815260200190565b60405180910390a3610d04565b30600090815260208190526040812054905060006012546011546119749190611ff3565b90506000821580611983575081155b1561198d57505050565b60085461199b906014612040565b8311156119b3576008546119b0906014612040565b92505b6000600283601154866119c69190612040565b6119d0919061205f565b6119da919061205f565b905060006119e88583611b18565b9050476119f482611b24565b6000611a004783611b18565b90506000611a1d8761160860125485611af990919063ffffffff16565b90506000611a2b8284612109565b6000601181905560125590508515801590611a465750600081115b15611a9957611a558682611ce4565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ae6576040519150601f19603f3d011682016040523d82523d6000602084013e611aeb565b606091505b505050505050505050505050565b6000611b058284612040565b9392505050565b6000611b05828461205f565b6000611b058284612109565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5957611b59612120565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612136565b81600181518110611c0e57611c0e612120565b60200260200101906001600160a01b031690816001600160a01b031681525050611c59307f000000000000000000000000000000000000000000000000000000000000000084610f85565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611cae908590600090869030904290600401612153565b600060405180830381600087803b158015611cc857600080fd5b505af1158015611cdc573d6000803e3d6000fd5b505050505050565b611d0f307f000000000000000000000000000000000000000000000000000000000000000084610f85565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000009091169063f305d71990839060c40160606040518083038185885af1158015611d9e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611dc391906121c4565b5050505050565b600060208083528351808285015260005b81811015611df757858101830151858201604001528201611ddb565b81811115611e09576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f8257600080fd5b60008060408385031215611e4757600080fd5b8235611e5281611e1f565b946020939093013593505050565b600060208284031215611e7257600080fd5b8135611b0581611e1f565b600080600060608486031215611e9257600080fd5b8335611e9d81611e1f565b92506020840135611ead81611e1f565b929592945050506040919091013590565b80358015158114610ee557600080fd5b60008060408385031215611ee157600080fd5b8235611eec81611e1f565b9150611efa60208401611ebe565b90509250929050565b600060208284031215611f1557600080fd5b611b0582611ebe565b60008060008060808587031215611f3457600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611f6257600080fd5b5035919050565b60008060408385031215611f7c57600080fd5b8235611f8781611e1f565b91506020830135611f9781611e1f565b809150509250929050565b600181811c90821680611fb657607f821691505b60208210811415611fd757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561200657612006611fdd565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081600019048311821515161561205a5761205a611fdd565b500290565b60008261207c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561211b5761211b611fdd565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561214857600080fd5b8151611b0581611e1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121a35784516001600160a01b03168352938301939183019160010161217e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121d957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a333be72cd7280794c762ae44dcee8f8e831c364d273e7cd34edfc1f2e6ae94764736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638ea5220f11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461072e578063e2f4560514610774578063f11a24d31461078a578063f2fde38b146107a0578063f6374342146107c0578063f8b45b05146107d657600080fd5b8063bbc0c742146106a3578063c0246668146106c2578063c8c8ebe4146106e2578063d257b34f146106f8578063d85ba0631461071857600080fd5b80639fccce32116101085780639fccce32146105e7578063a0d82dc5146105fd578063a457c2d714610613578063a9059cbb14610633578063adda68ee14610653578063b62496f51461067357600080fd5b80638ea5220f1461055c578063924de9b71461057c57806395d89b411461059c5780639a7a23d6146105b15780639c3b4fdc146105d157600080fd5b806349bd5a5e116101dd57806370a08231116101a157806370a08231146104a7578063715018a6146104dd578063751039fc146104f45780637571336a146105095780638a8c523c146105295780638da5cb5b1461053e57600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780636a486a8e146104715780636ddd17131461048757600080fd5b80631a8145bb116102245780631a8145bb1461036257806323b872dd1461037857806327c8f83514610398578063313ce567146103ae57806339509351146103ca57600080fd5b806306fdde031461026c578063095ea7b31461029757806310d5de53146102c75780631694505e146102f757806318160ddd1461034357600080fd5b3661026757005b600080fd5b34801561027857600080fd5b506102816107ec565b60405161028e9190611dca565b60405180910390f35b3480156102a357600080fd5b506102b76102b2366004611e34565b61087e565b604051901515815260200161028e565b3480156102d357600080fd5b506102b76102e2366004611e60565b60146020526000908152604090205460ff1681565b34801561030357600080fd5b5061032b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161028e565b34801561034f57600080fd5b506002545b60405190815260200161028e565b34801561036e57600080fd5b5061035460115481565b34801561038457600080fd5b506102b7610393366004611e7d565b610894565b3480156103a457600080fd5b5061032b61dead81565b3480156103ba57600080fd5b506040516012815260200161028e565b3480156103d657600080fd5b506102b76103e5366004611e34565b610943565b3480156103f657600080fd5b5061032b7f000000000000000000000000178d9b1943a131f7289d30f0f4cc82436f23a3a381565b34801561042a57600080fd5b50600a546102b79060ff1681565b34801561044457600080fd5b506102b7610453366004611e60565b6001600160a01b031660009081526013602052604090205460ff1690565b34801561047d57600080fd5b50610354600e5481565b34801561049357600080fd5b50600a546102b79062010000900460ff1681565b3480156104b357600080fd5b506103546104c2366004611e60565b6001600160a01b031660009081526020819052604090205490565b3480156104e957600080fd5b506104f261097f565b005b34801561050057600080fd5b506102b76109b5565b34801561051557600080fd5b506104f2610524366004611ece565b6109f2565b34801561053557600080fd5b506104f2610a47565b34801561054a57600080fd5b506005546001600160a01b031661032b565b34801561056857600080fd5b5060065461032b906001600160a01b031681565b34801561058857600080fd5b506104f2610597366004611f03565b610a84565b3480156105a857600080fd5b50610281610aca565b3480156105bd57600080fd5b506104f26105cc366004611ece565b610ad9565b3480156105dd57600080fd5b50610354600d5481565b3480156105f357600080fd5b5061035460125481565b34801561060957600080fd5b5061035460105481565b34801561061f57600080fd5b506102b761062e366004611e34565b610bb9565b34801561063f57600080fd5b506102b761064e366004611e34565b610c52565b34801561065f57600080fd5b506104f261066e366004611f1e565b610c5f565b34801561067f57600080fd5b506102b761068e366004611e60565b60156020526000908152604090205460ff1681565b3480156106af57600080fd5b50600a546102b790610100900460ff1681565b3480156106ce57600080fd5b506104f26106dd366004611ece565b610d0a565b3480156106ee57600080fd5b5061035460075481565b34801561070457600080fd5b506102b7610713366004611f50565b610d93565b34801561072457600080fd5b50610354600b5481565b34801561073a57600080fd5b50610354610749366004611f69565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078057600080fd5b5061035460085481565b34801561079657600080fd5b50610354600c5481565b3480156107ac57600080fd5b506104f26107bb366004611e60565b610eea565b3480156107cc57600080fd5b50610354600f5481565b3480156107e257600080fd5b5061035460095481565b6060600380546107fb90611fa2565b80601f016020809104026020016040519081016040528092919081815260200182805461082790611fa2565b80156108745780601f1061084957610100808354040283529160200191610874565b820191906000526020600020905b81548152906001019060200180831161085757829003601f168201915b5050505050905090565b600061088b338484610f85565b50600192915050565b60006108a18484846110a9565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561092b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6109388533858403610f85565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161088b91859061097a908690611ff3565b610f85565b6005546001600160a01b031633146109a95760405162461bcd60e51b81526004016109229061200b565b6109b36000611756565b565b6005546000906001600160a01b031633146109e25760405162461bcd60e51b81526004016109229061200b565b50600a805460ff19169055600190565b6005546001600160a01b03163314610a1c5760405162461bcd60e51b81526004016109229061200b565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a715760405162461bcd60e51b81526004016109229061200b565b600a805462ffff00191662010100179055565b6005546001600160a01b03163314610aae5760405162461bcd60e51b81526004016109229061200b565b600a8054911515620100000262ff000019909216919091179055565b6060600480546107fb90611fa2565b6005546001600160a01b03163314610b035760405162461bcd60e51b81526004016109229061200b565b7f000000000000000000000000178d9b1943a131f7289d30f0f4cc82436f23a3a36001600160a01b0316826001600160a01b03161415610bab5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610922565b610bb582826117a8565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610c3b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610922565b610c483385858403610f85565b5060019392505050565b600061088b3384846110a9565b6005546001600160a01b03163314610c895760405162461bcd60e51b81526004016109229061200b565b600c839055600d849055610c9d8484611ff3565b600b55600f8190556010829055610cb48282611ff3565b600e819055600b54606391610cc891611ff3565b10610d045760405162461bcd60e51b815260206004820152600c60248201526b53616e69747920636865636b60a01b6044820152606401610922565b50505050565b6005546001600160a01b03163314610d345760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038216600081815260136020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546000906001600160a01b03163314610dc05760405162461bcd60e51b81526004016109229061200b565b620186a0610dcd60025490565b610dd8906001612040565b610de2919061205f565b821015610e4f5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610922565b6103e8610e5b60025490565b610e66906005612040565b610e70919061205f565b821115610edc5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610922565b50600881905560015b919050565b6005546001600160a01b03163314610f145760405162461bcd60e51b81526004016109229061200b565b6001600160a01b038116610f795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610922565b610f8281611756565b50565b6001600160a01b038316610fe75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610922565b6001600160a01b0382166110485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610922565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166110cf5760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166110f55760405162461bcd60e51b8152600401610922906120c6565b8061110b57611106838360006117fc565b505050565b600a5460ff1615611481576005546001600160a01b0384811691161480159061114257506005546001600160a01b03838116911614155b801561115657506001600160a01b03821615155b801561116d57506001600160a01b03821661dead14155b80156111835750600554600160a01b900460ff16155b1561148157600a54610100900460ff1661121b576001600160a01b03831660009081526013602052604090205460ff16806111d657506001600160a01b03821660009081526013602052604090205460ff165b61121b5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610922565b6001600160a01b03831660009081526015602052604090205460ff16801561125c57506001600160a01b03821660009081526014602052604090205460ff16155b15611340576007548111156112d15760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610922565b6009546001600160a01b0383166000908152602081905260409020546112f79083611ff3565b111561133b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b611481565b6001600160a01b03821660009081526015602052604090205460ff16801561138157506001600160a01b03831660009081526014602052604090205460ff16155b156113f75760075481111561133b5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610922565b6001600160a01b03821660009081526014602052604090205460ff16611481576009546001600160a01b03831660009081526020819052604090205461143d9083611ff3565b11156114815760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610922565b30600090815260208190526040902054600854811080159081906114ad5750600a5462010000900460ff165b80156114c35750600554600160a01b900460ff16155b80156114e857506001600160a01b03851660009081526015602052604090205460ff16155b801561150d57506001600160a01b03851660009081526013602052604090205460ff16155b801561153257506001600160a01b03841660009081526013602052604090205460ff16155b15611560576005805460ff60a01b1916600160a01b179055611552611950565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526013602052604090205460ff600160a01b9092048216159116806115ae57506001600160a01b03851660009081526013602052604090205460ff165b156115b7575060005b60008115611742576001600160a01b03861660009081526015602052604090205460ff1680156115e957506000600e54115b156116775761160e6064611608600e5488611af990919063ffffffff16565b90611b0c565b9050600e54600f54826116219190612040565b61162b919061205f565b6011600082825461163c9190611ff3565b9091555050600e546010546116519083612040565b61165b919061205f565b6012600082825461166c9190611ff3565b909155506117249050565b6001600160a01b03871660009081526015602052604090205460ff1680156116a157506000600b54115b15611724576116c06064611608600b5488611af990919063ffffffff16565b9050600b54600c54826116d39190612040565b6116dd919061205f565b601160008282546116ee9190611ff3565b9091555050600b54600d546117039083612040565b61170d919061205f565b6012600082825461171e9190611ff3565b90915550505b8015611735576117358730836117fc565b61173f8186612109565b94505b61174d8787876117fc565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260156020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b0383166118225760405162461bcd60e51b815260040161092290612081565b6001600160a01b0382166118485760405162461bcd60e51b8152600401610922906120c6565b6001600160a01b038316600090815260208190526040902054818110156118c05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610922565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118f7908490611ff3565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161194391815260200190565b60405180910390a3610d04565b30600090815260208190526040812054905060006012546011546119749190611ff3565b90506000821580611983575081155b1561198d57505050565b60085461199b906014612040565b8311156119b3576008546119b0906014612040565b92505b6000600283601154866119c69190612040565b6119d0919061205f565b6119da919061205f565b905060006119e88583611b18565b9050476119f482611b24565b6000611a004783611b18565b90506000611a1d8761160860125485611af990919063ffffffff16565b90506000611a2b8284612109565b6000601181905560125590508515801590611a465750600081115b15611a9957611a558682611ce4565b601154604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114611ae6576040519150601f19603f3d011682016040523d82523d6000602084013e611aeb565b606091505b505050505050505050505050565b6000611b058284612040565b9392505050565b6000611b05828461205f565b6000611b058284612109565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5957611b59612120565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611bd7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bfb9190612136565b81600181518110611c0e57611c0e612120565b60200260200101906001600160a01b031690816001600160a01b031681525050611c59307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f85565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611cae908590600090869030904290600401612153565b600060405180830381600087803b158015611cc857600080fd5b505af1158015611cdc573d6000803e3d6000fd5b505050505050565b611d0f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f85565b60065460405163f305d71960e01b81523060048201526024810184905260006044820181905260648201526001600160a01b0391821660848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d9091169063f305d71990839060c40160606040518083038185885af1158015611d9e573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611dc391906121c4565b5050505050565b600060208083528351808285015260005b81811015611df757858101830151858201604001528201611ddb565b81811115611e09576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610f8257600080fd5b60008060408385031215611e4757600080fd5b8235611e5281611e1f565b946020939093013593505050565b600060208284031215611e7257600080fd5b8135611b0581611e1f565b600080600060608486031215611e9257600080fd5b8335611e9d81611e1f565b92506020840135611ead81611e1f565b929592945050506040919091013590565b80358015158114610ee557600080fd5b60008060408385031215611ee157600080fd5b8235611eec81611e1f565b9150611efa60208401611ebe565b90509250929050565b600060208284031215611f1557600080fd5b611b0582611ebe565b60008060008060808587031215611f3457600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215611f6257600080fd5b5035919050565b60008060408385031215611f7c57600080fd5b8235611f8781611e1f565b91506020830135611f9781611e1f565b809150509250929050565b600181811c90821680611fb657607f821691505b60208210811415611fd757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561200657612006611fdd565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600081600019048311821515161561205a5761205a611fdd565b500290565b60008261207c57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60008282101561211b5761211b611fdd565b500390565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561214857600080fd5b8151611b0581611e1f565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156121a35784516001600160a01b03168352938301939183019160010161217e565b50506001600160a01b03969096166060850152505050608001529392505050565b6000806000606084860312156121d957600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220a333be72cd7280794c762ae44dcee8f8e831c364d273e7cd34edfc1f2e6ae94764736f6c634300080a0033

Deployed Bytecode Sourcemap

32639:12509:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9567:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11734:169;;;;;;;;;;-1:-1:-1;11734:169:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11734:169:0;1072:187:1;33597:63:0;;;;;;;;;;-1:-1:-1;33597:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;32710:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;32710:51:0;1516:230:1;10687:108:0;;;;;;;;;;-1:-1:-1;10775:12:0;;10687:108;;;1897:25:1;;;1885:2;1870:18;10687:108:0;1751:177:1;33381:33:0;;;;;;;;;;;;;;;;12385:492;;;;;;;;;;-1:-1:-1;12385:492:0;;;;;:::i;:::-;;:::i;32813:53::-;;;;;;;;;;;;32859:6;32813:53;;10529:93;;;;;;;;;;-1:-1:-1;10529:93:0;;10612:2;2744:36:1;;2732:2;2717:18;10529:93:0;2602:184:1;13286:215:0;;;;;;;;;;-1:-1:-1;13286:215:0;;;;;:::i;:::-;;:::i;32768:38::-;;;;;;;;;;;;;;;33053:33;;;;;;;;;;-1:-1:-1;33053:33:0;;;;;;;;38690:126;;;;;;;;;;-1:-1:-1;38690:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38780:28:0;38756:4;38780:28;;;:19;:28;;;;;;;;;38690:126;33277:28;;;;;;;;;;;;;;;;33133:31;;;;;;;;;;-1:-1:-1;33133:31:0;;;;;;;;;;;10858:127;;;;;;;;;;-1:-1:-1;10858:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10959:18:0;10932:7;10959:18;;;;;;;;;;;;10858:127;2802:103;;;;;;;;;;;;;:::i;:::-;;36488:121;;;;;;;;;;;;;:::i;37185:167::-;;;;;;;;;;-1:-1:-1;37185:167:0;;;;;:::i;:::-;;:::i;36324:112::-;;;;;;;;;;;;;:::i;2151:87::-;;;;;;;;;;-1:-1:-1;2224:6:0;;-1:-1:-1;;;;;2224:6:0;2151:87;;32905:24;;;;;;;;;;-1:-1:-1;32905:24:0;;;;-1:-1:-1;;;;;32905:24:0;;;37448:100;;;;;;;;;;-1:-1:-1;37448:100:0;;;;;:::i;:::-;;:::i;9786:104::-;;;;;;;;;;;;;:::i;38182:304::-;;;;;;;;;;-1:-1:-1;38182:304:0;;;;;:::i;:::-;;:::i;33244:24::-;;;;;;;;;;;;;;;;33421:27;;;;;;;;;;;;;;;;33350:25;;;;;;;;;;;;;;;;14004:413;;;;;;;;;;-1:-1:-1;14004:413:0;;;;;:::i;:::-;;:::i;11198:175::-;;;;;;;;;;-1:-1:-1;11198:175:0;;;;;:::i;:::-;;:::i;37556:428::-;;;;;;;;;;-1:-1:-1;37556:428:0;;;;;:::i;:::-;;:::i;33818:57::-;;;;;;;;;;-1:-1:-1;33818:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;33093:33;;;;;;;;;;-1:-1:-1;33093:33:0;;;;;;;;;;;37992:182;;;;;;;;;;-1:-1:-1;37992:182:0;;;;;:::i;:::-;;:::i;32938:35::-;;;;;;;;;;;;;;;;36679:497;;;;;;;;;;-1:-1:-1;36679:497:0;;;;;:::i;:::-;;:::i;33173:27::-;;;;;;;;;;;;;;;;11436:151;;;;;;;;;;-1:-1:-1;11436:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11552:18:0;;;11525:7;11552:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11436:151;32980:33;;;;;;;;;;;;;;;;33207:30;;;;;;;;;;;;;;;;3060:201;;;;;;;;;;-1:-1:-1;3060:201:0;;;;;:::i;:::-;;:::i;33312:31::-;;;;;;;;;;;;;;;;33020:24;;;;;;;;;;;;;;;;9567:100;9621:13;9654:5;9647:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9567:100;:::o;11734:169::-;11817:4;11834:39;904:10;11857:7;11866:6;11834:8;:39::i;:::-;-1:-1:-1;11891:4:0;11734:169;;;;:::o;12385:492::-;12525:4;12542:36;12552:6;12560:9;12571:6;12542:9;:36::i;:::-;-1:-1:-1;;;;;12618:19:0;;12591:24;12618:19;;;:11;:19;;;;;;;;904:10;12618:33;;;;;;;;12670:26;;;;12662:79;;;;-1:-1:-1;;;12662:79:0;;5016:2:1;12662:79:0;;;4998:21:1;5055:2;5035:18;;;5028:30;5094:34;5074:18;;;5067:62;-1:-1:-1;;;5145:18:1;;;5138:38;5193:19;;12662:79:0;;;;;;;;;12777:57;12786:6;904:10;12827:6;12808:16;:25;12777:8;:57::i;:::-;-1:-1:-1;12865:4:0;;12385:492;-1:-1:-1;;;;12385:492:0:o;13286:215::-;904:10;13374:4;13423:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13423:34:0;;;;;;;;;;13374:4;;13391:80;;13414:7;;13423:47;;13460:10;;13423:47;:::i;:::-;13391:8;:80::i;2802:103::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;2867:30:::1;2894:1;2867:18;:30::i;:::-;2802:103::o:0;36488:121::-;2224:6;;36540:4;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;36557:14:0::1;:22:::0;;-1:-1:-1;;36557:22:0::1;::::0;;;36488:121;:::o;37185:167::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37298:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37298:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37185:167::o;36324:112::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;36379:13:::1;:20:::0;;-1:-1:-1;;36410:18:0;;;;;36324:112::o;37448:100::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;37519:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37519:21:0;;::::1;::::0;;;::::1;::::0;;37448:100::o;9786:104::-;9842:13;9875:7;9868:14;;;;;:::i;38182:304::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;38326:13:::1;-1:-1:-1::0;;;;;38318:21:0::1;:4;-1:-1:-1::0;;;;;38318:21:0::1;;;38296:128;;;::::0;-1:-1:-1;;;38296:128:0;;6051:2:1;38296:128:0::1;::::0;::::1;6033:21:1::0;6090:2;6070:18;;;6063:30;6129:34;6109:18;;;6102:62;6200:27;6180:18;;;6173:55;6245:19;;38296:128:0::1;5849:421:1::0;38296:128:0::1;38437:41;38466:4;38472:5;38437:28;:41::i;:::-;38182:304:::0;;:::o;14004:413::-;904:10;14097:4;14141:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14141:34:0;;;;;;;;;;14194:35;;;;14186:85;;;;-1:-1:-1;;;14186:85:0;;6477:2:1;14186:85:0;;;6459:21:1;6516:2;6496:18;;;6489:30;6555:34;6535:18;;;6528:62;-1:-1:-1;;;6606:18:1;;;6599:35;6651:19;;14186:85:0;6275:401:1;14186:85:0;14307:67;904:10;14330:7;14358:15;14339:16;:34;14307:8;:67::i;:::-;-1:-1:-1;14405:4:0;;14004:413;-1:-1:-1;;;14004:413:0:o;11198:175::-;11284:4;11301:42;904:10;11325:9;11336:6;11301:9;:42::i;37556:428::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;37673:15:::1;:24:::0;;;37708:9:::1;:18:::0;;;37752:27:::1;37720:6:::0;37691;37752:27:::1;:::i;:::-;37737:12;:42:::0;37792:16:::1;:26:::0;;;37829:10:::1;:20:::0;;;37876:29:::1;37842:7:::0;37811;37876:29:::1;:::i;:::-;37860:13;:45:::0;;;37926:12:::1;::::0;37957:2:::1;::::0;37926:28:::1;::::0;::::1;:::i;:::-;:33;37918:58;;;::::0;-1:-1:-1;;;37918:58:0;;6883:2:1;37918:58:0::1;::::0;::::1;6865:21:1::0;6922:2;6902:18;;;6895:30;-1:-1:-1;;;6941:18:1;;;6934:42;6993:18;;37918:58:0::1;6681:336:1::0;37918:58:0::1;37556:428:::0;;;;:::o;37992:182::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38077:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38077:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38132:34;;1212:41:1;;;38132:34:0::1;::::0;1185:18:1;38132:34:0::1;;;;;;;37992:182:::0;;:::o;36679:497::-;2224:6;;36787:4;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;36866:6:::1;36845:13;10775:12:::0;;;10687:108;36845:13:::1;:17;::::0;36861:1:::1;36845:17;:::i;:::-;36844:28;;;;:::i;:::-;36831:9;:41;;36809:144;;;::::0;-1:-1:-1;;;36809:144:0;;7619:2:1;36809:144:0::1;::::0;::::1;7601:21:1::0;7658:2;7638:18;;;7631:30;7697:34;7677:18;;;7670:62;-1:-1:-1;;;7748:18:1;;;7741:51;7809:19;;36809:144:0::1;7417:417:1::0;36809:144:0::1;37021:4;37000:13;10775:12:::0;;;10687:108;37000:13:::1;:17;::::0;37016:1:::1;37000:17;:::i;:::-;36999:26;;;;:::i;:::-;36986:9;:39;;36964:141;;;::::0;-1:-1:-1;;;36964:141:0;;8041:2:1;36964:141:0::1;::::0;::::1;8023:21:1::0;8080:2;8060:18;;;8053:30;8119:34;8099:18;;;8092:62;-1:-1:-1;;;8170:18:1;;;8163:50;8230:19;;36964:141:0::1;7839:416:1::0;36964:141:0::1;-1:-1:-1::0;37116:18:0::1;:30:::0;;;37164:4:::1;2442:1;36679:497:::0;;;:::o;3060:201::-;2224:6;;-1:-1:-1;;;;;2224:6:0;904:10;2371:23;2363:68;;;;-1:-1:-1;;;2363:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3149:22:0;::::1;3141:73;;;::::0;-1:-1:-1;;;3141:73:0;;8462:2:1;3141:73:0::1;::::0;::::1;8444:21:1::0;8501:2;8481:18;;;8474:30;8540:34;8520:18;;;8513:62;-1:-1:-1;;;8591:18:1;;;8584:36;8637:19;;3141:73:0::1;8260:402:1::0;3141:73:0::1;3225:28;3244:8;3225:18;:28::i;:::-;3060:201:::0;:::o;17688:380::-;-1:-1:-1;;;;;17824:19:0;;17816:68;;;;-1:-1:-1;;;17816:68:0;;8869:2:1;17816:68:0;;;8851:21:1;8908:2;8888:18;;;8881:30;8947:34;8927:18;;;8920:62;-1:-1:-1;;;8998:18:1;;;8991:34;9042:19;;17816:68:0;8667:400:1;17816:68:0;-1:-1:-1;;;;;17903:21:0;;17895:68;;;;-1:-1:-1;;;17895:68:0;;9274:2:1;17895:68:0;;;9256:21:1;9313:2;9293:18;;;9286:30;9352:34;9332:18;;;9325:62;-1:-1:-1;;;9403:18:1;;;9396:32;9445:19;;17895:68:0;9072:398:1;17895:68:0;-1:-1:-1;;;;;17976:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18028:32;;1897:25:1;;;18028:32:0;;1870:18:1;18028:32:0;;;;;;;17688:380;;;:::o;38824:3778::-;-1:-1:-1;;;;;38956:18:0;;38948:68;;;;-1:-1:-1;;;38948:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39035:16:0;;39027:64;;;;-1:-1:-1;;;39027:64:0;;;;;;;:::i;:::-;39108:11;39104:93;;39136:28;39152:4;39158:2;39162:1;39136:15;:28::i;:::-;38824:3778;;;:::o;39104:93::-;39213:14;;;;39209:1694;;;2224:6;;-1:-1:-1;;;;;39266:15:0;;;2224:6;;39266:15;;;;:49;;-1:-1:-1;2224:6:0;;-1:-1:-1;;;;;39302:13:0;;;2224:6;;39302:13;;39266:49;:86;;;;-1:-1:-1;;;;;;39336:16:0;;;;39266:86;:128;;;;-1:-1:-1;;;;;;39373:21:0;;39387:6;39373:21;;39266:128;:158;;;;-1:-1:-1;39416:8:0;;-1:-1:-1;;;39416:8:0;;;;39415:9;39266:158;39244:1648;;;39464:13;;;;;;;39459:223;;-1:-1:-1;;;;;39536:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;39565:23:0;;;;;;:19;:23;;;;;;;;39536:52;39502:160;;;;-1:-1:-1;;;39502:160:0;;10487:2:1;39502:160:0;;;10469:21:1;10526:2;10506:18;;;10499:30;-1:-1:-1;;;10545:18:1;;;10538:52;10607:18;;39502:160:0;10285:346:1;39502:160:0;-1:-1:-1;;;;;39756:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;39813:35:0;;;;;;:31;:35;;;;;;;;39812:36;39756:92;39730:1147;;;39935:20;;39925:6;:30;;39891:169;;;;-1:-1:-1;;;39891:169:0;;10838:2:1;39891:169:0;;;10820:21:1;10877:2;10857:18;;;10850:30;10916:34;10896:18;;;10889:62;-1:-1:-1;;;10967:18:1;;;10960:51;11028:19;;39891:169:0;10636:417:1;39891:169:0;40143:9;;-1:-1:-1;;;;;10959:18:0;;10932:7;10959:18;;;;;;;;;;;40117:22;;:6;:22;:::i;:::-;:35;;40083:140;;;;-1:-1:-1;;;40083:140:0;;11260:2:1;40083:140:0;;;11242:21:1;11299:2;11279:18;;;11272:30;-1:-1:-1;;;11318:18:1;;;11311:49;11377:18;;40083:140:0;11058:343:1;40083:140:0;39730:1147;;;-1:-1:-1;;;;;40321:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;40376:37:0;;;;;;:31;:37;;;;;;;;40375:38;40321:92;40295:582;;;40500:20;;40490:6;:30;;40456:170;;;;-1:-1:-1;;;40456:170:0;;11608:2:1;40456:170:0;;;11590:21:1;11647:2;11627:18;;;11620:30;11686:34;11666:18;;;11659:62;-1:-1:-1;;;11737:18:1;;;11730:52;11799:19;;40456:170:0;11406:418:1;40295:582:0;-1:-1:-1;;;;;40657:35:0;;;;;;:31;:35;;;;;;;;40652:225;;40777:9;;-1:-1:-1;;;;;10959:18:0;;10932:7;10959:18;;;;;;;;;;;40751:22;;:6;:22;:::i;:::-;:35;;40717:140;;;;-1:-1:-1;;;40717:140:0;;11260:2:1;40717:140:0;;;11242:21:1;11299:2;11279:18;;;11272:30;-1:-1:-1;;;11318:18:1;;;11311:49;11377:18;;40717:140:0;11058:343:1;40717:140:0;40964:4;40915:28;10959:18;;;;;;;;;;;41022;;40998:42;;;;;;;41071:35;;-1:-1:-1;41095:11:0;;;;;;;41071:35;:61;;;;-1:-1:-1;41124:8:0;;-1:-1:-1;;;41124:8:0;;;;41123:9;41071:61;:110;;;;-1:-1:-1;;;;;;41150:31:0;;;;;;:25;:31;;;;;;;;41149:32;41071:110;:153;;;;-1:-1:-1;;;;;;41199:25:0;;;;;;:19;:25;;;;;;;;41198:26;41071:153;:194;;;;-1:-1:-1;;;;;;41242:23:0;;;;;;:19;:23;;;;;;;;41241:24;41071:194;41053:326;;;41292:8;:15;;-1:-1:-1;;;;41292:15:0;-1:-1:-1;;;41292:15:0;;;41324:10;:8;:10::i;:::-;41351:8;:16;;-1:-1:-1;;;;41351:16:0;;;41053:326;41407:8;;-1:-1:-1;;;;;41517:25:0;;41391:12;41517:25;;;:19;:25;;;;;;41407:8;-1:-1:-1;;;41407:8:0;;;;;41406:9;;41517:25;;:52;;-1:-1:-1;;;;;;41546:23:0;;;;;;:19;:23;;;;;;;;41517:52;41513:100;;;-1:-1:-1;41596:5:0;41513:100;41625:12;41730:7;41726:823;;;-1:-1:-1;;;;;41782:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;41831:1;41815:13;;:17;41782:50;41778:622;;;41860:34;41890:3;41860:25;41871:13;;41860:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;41853:41;;41963:13;;41943:16;;41936:4;:23;;;;:::i;:::-;41935:41;;;;:::i;:::-;41913:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;42033:13:0;;42019:10;;42012:17;;:4;:17;:::i;:::-;42011:35;;;;:::i;:::-;41995:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;41778:622:0;;-1:-1:-1;41778:622:0;;-1:-1:-1;;;;;42124:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;42174:1;42159:12;;:16;42124:51;42120:280;;;42203:33;42232:3;42203:24;42214:12;;42203:6;:10;;:24;;;;:::i;:33::-;42196:40;;42304:12;;42285:15;;42278:4;:22;;;;:::i;:::-;42277:39;;;;:::i;:::-;42255:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;42372:12:0;;42359:9;;42352:16;;:4;:16;:::i;:::-;42351:33;;;;:::i;:::-;42335:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;42120:280:0;42420:8;;42416:91;;42449:42;42465:4;42479;42486;42449:15;:42::i;:::-;42523:14;42533:4;42523:14;;:::i;:::-;;;41726:823;42561:33;42577:4;42583:2;42587:6;42561:15;:33::i;:::-;38937:3665;;;;38824:3778;;;:::o;3421:191::-;3514:6;;;-1:-1:-1;;;;;3531:17:0;;;-1:-1:-1;;;;;;3531:17:0;;;;;;;3564:40;;3514:6;;;3531:17;3514:6;;3564:40;;3495:16;;3564:40;3484:128;3421:191;:::o;38494:188::-;-1:-1:-1;;;;;38577:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;38577:39:0;;;;;;;;;;38634:40;;38577:39;;:31;38634:40;;;38494:188;;:::o;14907:733::-;-1:-1:-1;;;;;15047:20:0;;15039:70;;;;-1:-1:-1;;;15039:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15128:23:0;;15120:71;;;;-1:-1:-1;;;15120:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15288:17:0;;15264:21;15288:17;;;;;;;;;;;15324:23;;;;15316:74;;;;-1:-1:-1;;;15316:74:0;;12161:2:1;15316:74:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:36;12336:19;;15316:74:0;11959:402:1;15316:74:0;-1:-1:-1;;;;;15426:17:0;;;:9;:17;;;;;;;;;;;15446:22;;;15426:42;;15490:20;;;;;;;;:30;;15462:6;;15426:9;15490:30;;15462:6;;15490:30;:::i;:::-;;;;;;;;15555:9;-1:-1:-1;;;;;15538:35:0;15547:6;-1:-1:-1;;;;;15538:35:0;;15566:6;15538:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15538:35:0;;;;;;;;15586:46;38824:3778;43730:1413;43813:4;43769:23;10959:18;;;;;;;;;;;43769:50;;43830:25;43879:12;;43858:18;;:33;;;;:::i;:::-;43830:61;-1:-1:-1;43902:12:0;43931:20;;;:46;;-1:-1:-1;43955:22:0;;43931:46;43927:85;;;43994:7;;;43730:1413::o;43927:85::-;44046:18;;:23;;44067:2;44046:23;:::i;:::-;44028:15;:41;44024:115;;;44104:18;;:23;;44125:2;44104:23;:::i;:::-;44086:41;;44024:115;44200:23;44287:1;44267:17;44245:18;;44227:15;:36;;;;:::i;:::-;44226:58;;;;:::i;:::-;:62;;;;:::i;:::-;44200:88;-1:-1:-1;44299:26:0;44328:36;:15;44200:88;44328:19;:36::i;:::-;44299:65;-1:-1:-1;44405:21:0;44439:36;44299:65;44439:16;:36::i;:::-;44488:18;44509:44;:21;44535:17;44509:25;:44::i;:::-;44488:65;;44567:17;44587:51;44620:17;44587:28;44602:12;;44587:10;:14;;:28;;;;:::i;:51::-;44567:71;-1:-1:-1;44651:23:0;44677:22;44567:71;44677:10;:22;:::i;:::-;44733:1;44712:18;:22;;;44745:12;:16;44651:48;-1:-1:-1;44778:19:0;;;;;:42;;;44819:1;44801:15;:19;44778:42;44774:278;;;44837:46;44850:15;44867;44837:12;:46::i;:::-;45007:18;;44903:137;;;12568:25:1;;;12624:2;12609:18;;12602:34;;;12652:18;;;12645:34;;;;44903:137:0;;;;;;12556:2:1;44903:137:0;;;44774:278;45086:9;;45078:57;;-1:-1:-1;;;;;45086:9:0;;;;45109:21;;45078:57;;;;45109:21;45086:9;45078:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;43730:1413:0:o;23141:98::-;23199:7;23226:5;23230:1;23226;:5;:::i;:::-;23219:12;23141:98;-1:-1:-1;;;23141:98:0:o;23540:::-;23598:7;23625:5;23629:1;23625;:5;:::i;22784:98::-;22842:7;22869:5;22873:1;22869;:5;:::i;42610:589::-;42760:16;;;42774:1;42760:16;;;;;;;;42736:21;;42760:16;;;;;;;;;;-1:-1:-1;42760:16:0;42736:40;;42805:4;42787;42792:1;42787:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;42787:23:0;;;-1:-1:-1;;;;;42787:23:0;;;;;42831:15;-1:-1:-1;;;;;42831:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42821:4;42826:1;42821:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;42821:32:0;;;-1:-1:-1;;;;;42821:32:0;;;;;42866:62;42883:4;42898:15;42916:11;42866:8;:62::i;:::-;42967:224;;-1:-1:-1;;;42967:224:0;;-1:-1:-1;;;;;42967:15:0;:66;;;;:224;;43048:11;;43074:1;;43118:4;;43145;;43165:15;;42967:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42665:534;42610:589;:::o;43207:515::-;43355:62;43372:4;43387:15;43405:11;43355:8;:62::i;:::-;43664:9;;43460:254;;-1:-1:-1;;;43460:254:0;;43532:4;43460:254;;;14746:34:1;14796:18;;;14789:34;;;43578:1:0;14839:18:1;;;14832:34;;;14882:18;;;14875:34;-1:-1:-1;;;;;43664:9:0;;;14925:19:1;;;14918:44;43688:15:0;14978:19:1;;;14971:35;43460:15:0;:31;;;;;;43499:9;;14680:19:1;;43460:254:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;43207:515;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:456::-;2010:6;2018;2026;2079:2;2067:9;2058:7;2054:23;2050:32;2047:52;;;2095:1;2092;2085:12;2047:52;2134:9;2121:23;2153:31;2178:5;2153:31;:::i;:::-;2203:5;-1:-1:-1;2260:2:1;2245:18;;2232:32;2273:33;2232:32;2273:33;:::i;:::-;1933:456;;2325:7;;-1:-1:-1;;;2379:2:1;2364:18;;;;2351:32;;1933:456::o;2791:160::-;2856:20;;2912:13;;2905:21;2895:32;;2885:60;;2941:1;2938;2931:12;2956:315;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3137:9;3124:23;3156:31;3181:5;3156:31;:::i;:::-;3206:5;-1:-1:-1;3230:35:1;3261:2;3246:18;;3230:35;:::i;:::-;3220:45;;2956:315;;;;;:::o;3276:180::-;3332:6;3385:2;3373:9;3364:7;3360:23;3356:32;3353:52;;;3401:1;3398;3391:12;3353:52;3424:26;3440:9;3424:26;:::i;3461:385::-;3547:6;3555;3563;3571;3624:3;3612:9;3603:7;3599:23;3595:33;3592:53;;;3641:1;3638;3631:12;3592:53;-1:-1:-1;;3664:23:1;;;3734:2;3719:18;;3706:32;;-1:-1:-1;3785:2:1;3770:18;;3757:32;;3836:2;3821:18;3808:32;;-1:-1:-1;3461:385:1;-1:-1:-1;3461:385:1:o;3851:180::-;3910:6;3963:2;3951:9;3942:7;3938:23;3934:32;3931:52;;;3979:1;3976;3969:12;3931:52;-1:-1:-1;4002:23:1;;3851:180;-1:-1:-1;3851:180:1:o;4036:388::-;4104:6;4112;4165:2;4153:9;4144:7;4140:23;4136:32;4133:52;;;4181:1;4178;4171:12;4133:52;4220:9;4207:23;4239:31;4264:5;4239:31;:::i;:::-;4289:5;-1:-1:-1;4346:2:1;4331:18;;4318:32;4359:33;4318:32;4359:33;:::i;:::-;4411:7;4401:17;;;4036:388;;;;;:::o;4429:380::-;4508:1;4504:12;;;;4551;;;4572:61;;4626:4;4618:6;4614:17;4604:27;;4572:61;4679:2;4671:6;4668:14;4648:18;4645:38;4642:161;;;4725:10;4720:3;4716:20;4713:1;4706:31;4760:4;4757:1;4750:15;4788:4;4785:1;4778:15;4642:161;;4429:380;;;:::o;5223:127::-;5284:10;5279:3;5275:20;5272:1;5265:31;5315:4;5312:1;5305:15;5339:4;5336:1;5329:15;5355:128;5395:3;5426:1;5422:6;5419:1;5416:13;5413:39;;;5432:18;;:::i;:::-;-1:-1:-1;5468:9:1;;5355:128::o;5488:356::-;5690:2;5672:21;;;5709:18;;;5702:30;5768:34;5763:2;5748:18;;5741:62;5835:2;5820:18;;5488:356::o;7022:168::-;7062:7;7128:1;7124;7120:6;7116:14;7113:1;7110:21;7105:1;7098:9;7091:17;7087:45;7084:71;;;7135:18;;:::i;:::-;-1:-1:-1;7175:9:1;;7022:168::o;7195:217::-;7235:1;7261;7251:132;;7305:10;7300:3;7296:20;7293:1;7286:31;7340:4;7337:1;7330:15;7368:4;7365:1;7358:15;7251:132;-1:-1:-1;7397:9:1;;7195:217::o;9475:401::-;9677:2;9659:21;;;9716:2;9696:18;;;9689:30;9755:34;9750:2;9735:18;;9728:62;-1:-1:-1;;;9821:2:1;9806:18;;9799:35;9866:3;9851:19;;9475:401::o;9881:399::-;10083:2;10065:21;;;10122:2;10102:18;;;10095:30;10161:34;10156:2;10141:18;;10134:62;-1:-1:-1;;;10227:2:1;10212:18;;10205:33;10270:3;10255:19;;9881:399::o;11829:125::-;11869:4;11897:1;11894;11891:8;11888:34;;;11902:18;;:::i;:::-;-1:-1:-1;11939:9:1;;11829:125::o;13032:127::-;13093:10;13088:3;13084:20;13081:1;13074:31;13124:4;13121:1;13114:15;13148:4;13145:1;13138:15;13164:251;13234:6;13287:2;13275:9;13266:7;13262:23;13258:32;13255:52;;;13303:1;13300;13293:12;13255:52;13335:9;13329:16;13354:31;13379:5;13354:31;:::i;13420:980::-;13682:4;13730:3;13719:9;13715:19;13761:6;13750:9;13743:25;13787:2;13825:6;13820:2;13809:9;13805:18;13798:34;13868:3;13863:2;13852:9;13848:18;13841:31;13892:6;13927;13921:13;13958:6;13950;13943:22;13996:3;13985:9;13981:19;13974:26;;14035:2;14027:6;14023:15;14009:29;;14056:1;14066:195;14080:6;14077:1;14074:13;14066:195;;;14145:13;;-1:-1:-1;;;;;14141:39:1;14129:52;;14236:15;;;;14201:12;;;;14177:1;14095:9;14066:195;;;-1:-1:-1;;;;;;;14317:32:1;;;;14312:2;14297:18;;14290:60;-1:-1:-1;;;14381:3:1;14366:19;14359:35;14278:3;13420:980;-1:-1:-1;;;13420:980:1:o;15017:306::-;15105:6;15113;15121;15174:2;15162:9;15153:7;15149:23;15145:32;15142:52;;;15190:1;15187;15180:12;15142:52;15219:9;15213:16;15203:26;;15269:2;15258:9;15254:18;15248:25;15238:35;;15313:2;15302:9;15298:18;15292:25;15282:35;;15017:306;;;;;:::o

Swarm Source

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