ETH Price: $2,649.61 (+0.50%)

Token

Titter (TITR)
 

Overview

Max Total Supply

1,000,000,000,000 TITR

Holders

419

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
42,960,589.626558371396544902 TITR

Value
$0.00
0xb22ffc650c08fdd09c352845940152db278bb6b6
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:
Titter

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-29
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

// File: @openzeppelin/contracts/utils/Context.sol


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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);
    }
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;




/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @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);
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: Titter.sol



pragma solidity ^0.8.9;





interface ISwapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}

interface ISwapRouter {
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);

    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

contract Titter is ERC20, Ownable, ReentrancyGuard {

    using SafeERC20 for IERC20;

    mapping(address => bool) private _whitelist;
    address private _taxAddress;
    uint256 private immutable _maxTax;
    uint256 private _buyTax;
    uint256 private _sellTax;
    address private _swapRouter;
    bool private _swapEnabled;
    address[] private _swapPath;
    mapping(address => bool) private _isPool;
    mapping(address => bool) private _blacklist;
    mapping(address => bool) private _buyWhitelist;

    mapping(address => uint256) private _buyAmount;
    uint256 private _maxBuy;
    uint256 private _blockStartTime;
    uint256 private _blockEndTime;


    constructor(address taxAccount, uint256 maxTaxAmount, uint256 buyTaxAmount, uint256 sellTaxAmount, address swapRouter, uint256 preMint, uint256 maxBuyAmount) ERC20("Titter", "TITR") {
        require(taxAccount != address(0), "taxAccount_ can't be the zero address");
        _mint(msg.sender, preMint * 10 ** decimals());
        _taxAddress = taxAccount;
        _maxTax = maxTaxAmount;
        _buyTax = buyTaxAmount;
        _sellTax = sellTaxAmount;
        _swapRouter = swapRouter;
        _swapEnabled = true;
        _whitelist[address(this)] = true;
        _whitelist[taxAccount] = true;
        _whitelist[_msgSender()] = true;

        _buyWhitelist[address(this)] = true;
        _buyWhitelist[taxAccount] = true;
        _buyWhitelist[_msgSender()] = true;

        _blockStartTime = block.timestamp;
        _blockEndTime = block.timestamp + 525600 minutes;
        _maxBuy = maxBuyAmount * 10 ** decimals();

        address swapFactory = ISwapRouter(swapRouter).factory();
        address wETH = ISwapRouter(swapRouter).WETH();
        address pair = ISwapFactory(swapFactory).createPair(address(this), wETH);

        _isPool[pair]  = true;
        _swapPath.push(address(this));
        _swapPath.push(wETH);

        emit AddWhitelist(taxAccount);
        emit AddWhitelist(address(this));
    }

     function changeBlockTime(uint256 mins) external onlyOwner {
        require(block.timestamp < _blockEndTime, "Blocktime ended");
        _blockStartTime = block.timestamp;
        _blockEndTime = _blockStartTime + (  mins * (1 minutes));
    }

    function addBuyWhitelist(address[] calldata userAddresses) external onlyOwner {
        for(uint256 i=0; i< userAddresses.length; i++) {
            _buyWhitelist[userAddresses[i]] = true;
        }
    }

    receive() external payable nonReentrant {
        payable(owner()).transfer(address(this).balance);
    }

    function retrieveAll(address token) external onlyOwner {
        IERC20 retrieveToken = IERC20(token);
        uint256 retrieveBalance = retrieveToken.balanceOf(address(this));
        retrieveToken.safeTransfer(_msgSender(), retrieveBalance);
    }

    function setSwapPath(address[] calldata swapPath) external onlyOwner {
        _swapPath = swapPath;
    }

    function setSwapAddress(address swapRouter) external onlyOwner {
        _swapRouter = swapRouter;
    }

    function addBlacklist(address blacklistAddress) external onlyOwner {
        _blacklist[blacklistAddress] = true;
        emit AddBlacklist(blacklistAddress);
    }

    function removeBlacklist(address blacklistAddress) external onlyOwner {
        _blacklist[blacklistAddress] = false;
        emit RemoveBlacklist(blacklistAddress);
    }

    function isBlacklisted(address blacklistAddress) external view returns(bool) {
        return _blacklist[blacklistAddress] ;
    }

    function addPool(address poolAddress) external onlyOwner {
        _isPool[poolAddress] = true;
        emit AddPoolAddress(poolAddress);
    }

    function removePool(address poolAddress) external onlyOwner {
        _isPool[poolAddress] = false;
        emit RemovePoolAddress(poolAddress);
    }

    function setBuyTax(uint256 currentTaxAmount) external onlyOwner {
        require(currentTaxAmount <= _maxTax, "Tax amount exceeds maxTax");
        _buyTax = currentTaxAmount;
        emit BuyTaxUpdated(currentTaxAmount);
    }

    function setSellTax(uint256 currentTaxAmount) external onlyOwner {
        require(currentTaxAmount <= _maxTax, "Tax amount exceeds maxTax");
        _sellTax = currentTaxAmount;
        emit SellTaxUpdated(currentTaxAmount);
    }

    function setTaxAccount(address taxAccount) external onlyOwner {
        require(taxAccount != address(0), "taxAccount_ can't be the zero address");
        _taxAddress = taxAccount;
        _whitelist[taxAccount] = true;
        emit TaxAddressUpdated(taxAccount);
        emit AddWhitelist(taxAccount);
    }

    function addWhitelisted(address  userAddress) external onlyOwner {
        _whitelist[userAddress] = true;
        emit AddWhitelist(userAddress);
    }

    function removeWhitelisted(address userAddress) external onlyOwner {
        _whitelist[userAddress] = false;
        emit RemoveWhitelist(userAddress);
    }

    function setSwapEnabled(bool _isEnabled) external onlyOwner {
        _swapEnabled = _isEnabled;
    }

    function swapAll() external onlyOwner {
        uint256 _amount = balanceOf(address(this));
        if(_amount > 10000) {
            _approve(address(this), _swapRouter, _amount);
            ISwapRouter(_swapRouter).swapExactTokensForTokens(_amount, 0, _swapPath, _taxAddress, block.timestamp);
        }
    }

    function retrieveAll() external onlyOwner {
        _transfer(address(this), _taxAddress, balanceOf(address(this)));
    }

    function isPool(address poolAddress) external view returns(bool) {
        return _isPool[poolAddress];
    }

    function swapEnabled() external view returns(bool) {
        return _swapEnabled;
    }

    function buyTax() external view returns(uint256) {
        return _buyTax;
    }

    function sellTax() external view returns(uint256) {
        return _sellTax;
    }

    function taxAddress() external view returns (address) {
        return _taxAddress;
    }
    
    function isWhitelisted(address userAddress) external view returns (bool) {
        return _whitelist[userAddress];
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        override
    {
        require(!_blacklist[from], "Sender Blacklisted");
        require(!_blacklist[to], "Receiver Blacklisted");

        if(block.timestamp <= _blockEndTime) {
            require(_buyWhitelist[from] || _buyWhitelist[to], "Address not whitelisted");
            if(_buyWhitelist[to] && to != owner()) {
                require(_buyAmount[to] + amount <= _maxBuy, "Maximum buy amount reached");
                _buyAmount[to] += amount;
            }
        }

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

    function _doSwap() internal {
        if(_swapEnabled){
            uint256 _amount = balanceOf(address(this));
            if(_amount > 10000) {
                _approve(address(this), _swapRouter, _amount);
                try ISwapRouter(_swapRouter).swapExactTokensForTokens(_amount, 0, _swapPath, _taxAddress, block.timestamp) returns (uint[] memory ){

                }
                catch Error(string memory){

                }
                catch(bytes memory){

                }
            }
        }
    }

    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);

        if(_whitelist[from] || _whitelist[to]){
            //No tax added for a whitelisted address
        }
        else{
            if(_isPool[from]) {
                //Add buyTax
                require(amount >= 10000, "Amount too low");
                uint256 taxAmount = (_buyTax * amount) / 100;
                amount = amount - taxAmount;
                _transfer(from , address(this), taxAmount);
            }
            else if(_isPool[to]) {
                //Add sellTax
                require(amount >= 10000, "Amount too low");
                uint256 taxAmount = (_sellTax * amount) / 100;
                amount = amount - taxAmount;
                _transfer(from , address(this), taxAmount);
                _doSwap();
            }
            else{

            }
        }

        _transfer(from, to, amount);
        return true;
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address from = _msgSender();

        if(_whitelist[from] || _whitelist[to]){
            //No tax added for a whitelisted address
        }
        else{
            if(_isPool[from]) {
                //Add buyTax
                require(amount >= 10000, "Amount too low");
                uint256 taxAmount = (_buyTax * amount) / 100;
                amount = amount - taxAmount;
                _transfer(from , address(this), taxAmount);
            }
            
            else if(_isPool[to]) {
                //Add sellTax
                require(amount >= 10000, "Amount too low");
                uint256 taxAmount = (_sellTax * amount) / 100;
                amount = amount - taxAmount;
                _transfer(from , address(this), taxAmount);
                _doSwap();
            }
            else{

            }
        }

        _transfer(from, to, amount);
        return true;
    }
    
    event BuyTaxUpdated(uint256 buyTaxAmount);
    event SellTaxUpdated(uint256 sellTaxAmount);
    event TaxAddressUpdated(address taxAccount);
    event AddWhitelist(address userAddress);
    event RemoveWhitelist(address userAddress);
    event AddBlacklist(address userAddress);
    event RemoveBlacklist(address userAddress);
    event AddPoolAddress(address poolAddress);
    event RemovePoolAddress(address poolAddress);

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"taxAccount","type":"address"},{"internalType":"uint256","name":"maxTaxAmount","type":"uint256"},{"internalType":"uint256","name":"buyTaxAmount","type":"uint256"},{"internalType":"uint256","name":"sellTaxAmount","type":"uint256"},{"internalType":"address","name":"swapRouter","type":"address"},{"internalType":"uint256","name":"preMint","type":"uint256"},{"internalType":"uint256","name":"maxBuyAmount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"}],"name":"AddBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"poolAddress","type":"address"}],"name":"AddPoolAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"}],"name":"AddWhitelist","type":"event"},{"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":false,"internalType":"uint256","name":"buyTaxAmount","type":"uint256"}],"name":"BuyTaxUpdated","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":false,"internalType":"address","name":"userAddress","type":"address"}],"name":"RemoveBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"poolAddress","type":"address"}],"name":"RemovePoolAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"}],"name":"RemoveWhitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxAmount","type":"uint256"}],"name":"SellTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"taxAccount","type":"address"}],"name":"TaxAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"blacklistAddress","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userAddresses","type":"address[]"}],"name":"addBuyWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"addWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mins","type":"uint256"}],"name":"changeBlockTime","outputs":[],"stateMutability":"nonpayable","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":[{"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":"blacklistAddress","type":"address"}],"name":"isBlacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"isPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"address","name":"blacklistAddress","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"poolAddress","type":"address"}],"name":"removePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"}],"name":"removeWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"retrieveAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"retrieveAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentTaxAmount","type":"uint256"}],"name":"setBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentTaxAmount","type":"uint256"}],"name":"setSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"swapRouter","type":"address"}],"name":"setSwapAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEnabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"swapPath","type":"address[]"}],"name":"setSwapPath","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxAccount","type":"address"}],"name":"setTaxAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040523480156200001157600080fd5b5060405162002fd338038062002fd3833981016040819052620000349162000934565b60408051808201825260068152652a34ba3a32b960d11b6020808301918252835180850190945260048452632a24aa2960e11b9084015281519192916200007e9160039162000871565b5080516200009490600490602084019062000871565b505050620000b1620000ab620004e460201b60201c565b620004e8565b60016006556001600160a01b038716620001205760405162461bcd60e51b815260206004820152602560248201527f7461784163636f756e745f2063616e277420626520746865207a65726f206164604482015264647265737360d81b60648201526084015b60405180910390fd5b6200014533620001336012600a62000ab1565b6200013f908562000ac9565b6200053a565b600880546001600160a01b03808a166001600160a01b0319909216821790925560808890526009879055600a869055600b80546001600160a81b03191692861692909217600160a01b17909155306000908152600760208190526040808320805460ff1990811660019081179092559484529083208054909416811790935590620001cd3390565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff19968716179055308152600f93849052828120805486166001908117909155918c168152918220805490941681179093556200022d3390565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790554260128190556200026b906301e1338062000aeb565b6013556200027c6012600a62000ab1565b62000288908262000ac9565b6011819055506000836001600160a01b031663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ca57600080fd5b505afa158015620002df573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000305919062000b06565b90506000846001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200034357600080fd5b505afa15801562000358573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200037e919062000b06565b6040516364e329cb60e11b81523060048201526001600160a01b03808316602483015291925060009184169063c9c6539690604401602060405180830381600087803b158015620003ce57600080fd5b505af1158015620003e3573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000409919062000b06565b6001600160a01b038181166000908152600d602090815260408083208054600160ff199091168117909155600c80548083018255948190527fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c79485018054306001600160a01b031991821617909155815492830190915593018054909316878516179092559051918d16825291925060008051602062002fb3833981519152910160405180910390a160405130815260008051602062002fb38339815191529060200160405180910390a15050505050505050505062000b61565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620005925760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000117565b620005a0600083836200060b565b8060026000828254620005b4919062000aeb565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166000908152600e602052604090205460ff16156200066b5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88109b1858dadb1a5cdd195960721b604482015260640162000117565b6001600160a01b0382166000908152600e602052604090205460ff1615620006d65760405162461bcd60e51b815260206004820152601460248201527f526563656976657220426c61636b6c6973746564000000000000000000000000604482015260640162000117565b601354421162000854576001600160a01b0383166000908152600f602052604090205460ff16806200072057506001600160a01b0382166000908152600f602052604090205460ff165b6200076e5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c6973746564000000000000000000604482015260640162000117565b6001600160a01b0382166000908152600f602052604090205460ff168015620007a557506005546001600160a01b03838116911614155b1562000854576011546001600160a01b038316600090815260106020526040902054620007d490839062000aeb565b1115620008245760405162461bcd60e51b815260206004820152601a60248201527f4d6178696d756d2062757920616d6f756e742072656163686564000000000000604482015260640162000117565b6001600160a01b038216600090815260106020526040812080548392906200084e90849062000aeb565b90915550505b6200086c8383836200086c60201b620009051760201c565b505050565b8280546200087f9062000b24565b90600052602060002090601f016020900481019282620008a35760008555620008ee565b82601f10620008be57805160ff1916838001178555620008ee565b82800160010185558215620008ee579182015b82811115620008ee578251825591602001919060010190620008d1565b50620008fc92915062000900565b5090565b5b80821115620008fc576000815560010162000901565b80516001600160a01b03811681146200092f57600080fd5b919050565b600080600080600080600060e0888a0312156200095057600080fd5b6200095b8862000917565b9650602088015195506040880151945060608801519350620009806080890162000917565b925060a0880151915060c0880151905092959891949750929550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009f3578160001904821115620009d757620009d76200099c565b80851615620009e557918102915b93841c9390800290620009b7565b509250929050565b60008262000a0c5750600162000aab565b8162000a1b5750600062000aab565b816001811462000a34576002811462000a3f5762000a5f565b600191505062000aab565b60ff84111562000a535762000a536200099c565b50506001821b62000aab565b5060208310610133831016604e8410600b841016171562000a84575081810a62000aab565b62000a908383620009b2565b806000190482111562000aa75762000aa76200099c565b0290505b92915050565b600062000ac260ff841683620009fb565b9392505050565b600081600019048311821515161562000ae65762000ae66200099c565b500290565b6000821982111562000b015762000b016200099c565b500190565b60006020828403121562000b1957600080fd5b62000ac28262000917565b600181811c9082168062000b3957607f821691505b6020821081141562000b5b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805161242f62000b8460003960008181610d6b015261125a015261242f6000f3fe6080604052600436106102295760003560e01c80637dc4b9cc11610123578063b7bda68f116100ab578063dd62ed3e1161006f578063dd62ed3e146106cc578063e01af92c146106ec578063eb91e6511461070c578063f2fde38b1461072c578063fe575a871461074c57600080fd5b8063b7bda68f14610639578063cc1776d314610657578063d0385b5e1461066c578063d914cd4b1461068c578063dc1052e2146106ac57600080fd5b806395d89b41116100f257806395d89b41146105a45780639cfe42da146105b9578063a457c2d7146105d9578063a9059cbb146105f9578063b72692611461061957600080fd5b80637dc4b9cc1461051d5780638cd09d501461053d5780638da5cb5b1461055d57806395607ced1461058f57600080fd5b8063313ce567116101b15780634f7041a5116101755780634f7041a5146104655780635b16ebb71461047a5780636ddd1713146104b357806370a08231146104d2578063715018a61461050857600080fd5b8063313ce567146103bb57806339509351146103d75780633af32abf146103f75780633b7d0946146104305780633e9ffbea1461045057600080fd5b806318160ddd116101f857806318160ddd1461031c5780631ed1fd4c1461033b57806323b872dd1461035b578063277ecee41461037b578063291d95491461039b57600080fd5b806306fdde0314610281578063095ea7b3146102ac57806310154bad146102dc57806312ddadbc146102fc57600080fd5b3661027c57610236610785565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561026f573d6000803e3d6000fd5b5061027a6001600655565b005b600080fd5b34801561028d57600080fd5b506102966107e4565b6040516102a39190611ec4565b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004611f13565b610876565b60405190151581526020016102a3565b3480156102e857600080fd5b5061027a6102f7366004611f3d565b61088e565b34801561030857600080fd5b5061027a610317366004611f5f565b6108f1565b34801561032857600080fd5b506002545b6040519081526020016102a3565b34801561034757600080fd5b5061027a610356366004611f3d565b61090a565b34801561036757600080fd5b506102cc610376366004611fd4565b6109a4565b34801561038757600080fd5b5061027a610396366004612010565b610b0f565b3480156103a757600080fd5b5061027a6103b6366004611f3d565b610b7c565b3480156103c757600080fd5b50604051601281526020016102a3565b3480156103e357600080fd5b506102cc6103f2366004611f13565b610bd5565b34801561040357600080fd5b506102cc610412366004611f3d565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561043c57600080fd5b5061027a61044b366004611f3d565b610bf7565b34801561045c57600080fd5b5061027a610c50565b34801561047157600080fd5b5060095461032d565b34801561048657600080fd5b506102cc610495366004611f3d565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156104bf57600080fd5b50600b54600160a01b900460ff166102cc565b3480156104de57600080fd5b5061032d6104ed366004611f3d565b6001600160a01b031660009081526020819052604090205490565b34801561051457600080fd5b5061027a610d23565b34801561052957600080fd5b5061027a610538366004611f3d565b610d37565b34801561054957600080fd5b5061027a610558366004612010565b610d61565b34801561056957600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b34801561059b57600080fd5b5061027a610e0a565b3480156105b057600080fd5b50610296610e38565b3480156105c557600080fd5b5061027a6105d4366004611f3d565b610e47565b3480156105e557600080fd5b506102cc6105f4366004611f13565b610ea3565b34801561060557600080fd5b506102cc610614366004611f13565b610f1e565b34801561062557600080fd5b5061027a610634366004611f5f565b61106a565b34801561064557600080fd5b506008546001600160a01b0316610577565b34801561066357600080fd5b50600a5461032d565b34801561067857600080fd5b5061027a610687366004611f3d565b6110e4565b34801561069857600080fd5b5061027a6106a7366004611f3d565b6111f4565b3480156106b857600080fd5b5061027a6106c7366004612010565b611250565b3480156106d857600080fd5b5061032d6106e7366004612029565b6112f9565b3480156106f857600080fd5b5061027a61070736600461206a565b611324565b34801561071857600080fd5b5061027a610727366004611f3d565b61134a565b34801561073857600080fd5b5061027a610747366004611f3d565b6113a3565b34801561075857600080fd5b506102cc610767366004611f3d565b6001600160a01b03166000908152600e602052604090205460ff1690565b600260065414156107dd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600655565b6060600380546107f390612087565b80601f016020809104026020016040519081016040528092919081815260200182805461081f90612087565b801561086c5780601f106108415761010080835404028352916020019161086c565b820191906000526020600020905b81548152906001019060200180831161084f57829003601f168201915b5050505050905090565b600033610884818585611419565b5060019392505050565b61089661153d565b6001600160a01b038116600081815260076020908152604091829020805460ff1916600117905590519182527fe463fa6bdecb16f96f58191d902152633214e760ea443684105a7eef1ad16b9d91015b60405180910390a150565b6108f961153d565b610905600c8383611e20565b505050565b61091261153d565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561095657600080fd5b505afa15801561096a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098e91906120c2565b90506109056001600160a01b0383163383611597565b6000336109b28582856115e9565b6001600160a01b03851660009081526007602052604090205460ff16806109f157506001600160a01b03841660009081526007602052604090205460ff165b156109fb57610af9565b6001600160a01b0385166000908152600d602052604090205460ff1615610a7957612710831015610a3e5760405162461bcd60e51b81526004016107d4906120db565b6000606484600954610a509190612119565b610a5a9190612138565b9050610a66818561215a565b9350610a73863083611663565b50610af9565b6001600160a01b0384166000908152600d602052604090205460ff1615610af957612710831015610abc5760405162461bcd60e51b81526004016107d4906120db565b6000606484600a54610ace9190612119565b610ad89190612138565b9050610ae4818561215a565b9350610af1863083611663565b610a73611812565b610b04858585611663565b506001949350505050565b610b1761153d565b6013544210610b5a5760405162461bcd60e51b815260206004820152600f60248201526e109b1bd8dadd1a5b5948195b991959608a1b60448201526064016107d4565b42601255610b6981603c612119565b601254610b769190612171565b60135550565b610b8461153d565b6001600160a01b038116600081815260076020908152604091829020805460ff1916905590519182527fa6667e187c57c5b0fa4e1122a695ed0754287513bcb4901fa6c1f44ba22c018791016108e6565b600033610884818585610be883836112f9565b610bf29190612171565b611419565b610bff61153d565b6001600160a01b0381166000818152600d6020908152604091829020805460ff1916905590519182527fdd70381b60b785acf30dbbb2f2ef58e218cf6553b5e45f3454ef5717490e5d8791016108e6565b610c5861153d565b30600090815260208190526040902054612710811115610d2057600b54610c8a9030906001600160a01b031683611419565b600b546008546040516338ed173960e01b81526001600160a01b03928316926338ed173992610cc8928692600092600c929116904290600401612189565b600060405180830381600087803b158015610ce257600080fd5b505af1158015610cf6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d1e9190810190612242565b505b50565b610d2b61153d565b610d35600061193b565b565b610d3f61153d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610d6961153d565b7f0000000000000000000000000000000000000000000000000000000000000000811115610dd55760405162461bcd60e51b81526020600482015260196024820152780a8c2f040c2dadeeadce840caf0c6cacac8e640dac2f0a8c2f603b1b60448201526064016107d4565b600a8190556040518181527fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11906020016108e6565b610e1261153d565b60085430600081815260208190526040902054610d35926001600160a01b031690611663565b6060600480546107f390612087565b610e4f61153d565b6001600160a01b0381166000818152600e6020908152604091829020805460ff1916600117905590519182527f7e239e822fa537514cc6b38d8350bde5ce06a8f9282c77161b926fc077a8102691016108e6565b60003381610eb182866112f9565b905083811015610f115760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d4565b610b048286868403611419565b3360008181526007602052604081205490919060ff1680610f5757506001600160a01b03841660009081526007602052604090205460ff165b15610f615761105f565b6001600160a01b0381166000908152600d602052604090205460ff1615610fdf57612710831015610fa45760405162461bcd60e51b81526004016107d4906120db565b6000606484600954610fb69190612119565b610fc09190612138565b9050610fcc818561215a565b9350610fd9823083611663565b5061105f565b6001600160a01b0384166000908152600d602052604090205460ff161561105f576127108310156110225760405162461bcd60e51b81526004016107d4906120db565b6000606484600a546110349190612119565b61103e9190612138565b905061104a818561215a565b9350611057823083611663565b610fd9611812565b610884818585611663565b61107261153d565b60005b81811015610905576001600f6000858585818110611095576110956122e9565b90506020020160208101906110aa9190611f3d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806110dc816122ff565b915050611075565b6110ec61153d565b6001600160a01b0381166111505760405162461bcd60e51b815260206004820152602560248201527f7461784163636f756e745f2063616e277420626520746865207a65726f206164604482015264647265737360d81b60648201526084016107d4565b600880546001600160a01b0319166001600160a01b038316908117909155600081815260076020908152604091829020805460ff1916600117905590519182527ffa575a2937f4d8860715335c80a51e975f276f15a8717f4ad9d5ad153d3011ce910160405180910390a16040516001600160a01b03821681527fe463fa6bdecb16f96f58191d902152633214e760ea443684105a7eef1ad16b9d906020016108e6565b6111fc61153d565b6001600160a01b0381166000818152600d6020908152604091829020805460ff1916600117905590519182527fa6962d82409e82f161f3074698fd98d9f3777134745cb5f86a0ec938fceb696491016108e6565b61125861153d565b7f00000000000000000000000000000000000000000000000000000000000000008111156112c45760405162461bcd60e51b81526020600482015260196024820152780a8c2f040c2dadeeadce840caf0c6cacac8e640dac2f0a8c2f603b1b60448201526064016107d4565b60098190556040518181527f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce906020016108e6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61132c61153d565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b61135261153d565b6001600160a01b0381166000818152600e6020908152604091829020805460ff1916905590519182527f54646b2d47b5332deb93b310542f2c11bc9351e59950cdfb3ba518af28f13d2991016108e6565b6113ab61153d565b6001600160a01b0381166114105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d4565b610d208161193b565b6001600160a01b03831661147b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d4565b6001600160a01b0382166114dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d4565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261090590849061198d565b60006115f584846112f9565b9050600019811461165d57818110156116505760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d4565b61165d8484848403611419565b50505050565b6001600160a01b0383166116c75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107d4565b6001600160a01b0382166117295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d4565b611734838383611a5f565b6001600160a01b038316600090815260208190526040902054818110156117ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d4565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361165d565b600b54600160a01b900460ff1615610d355730600090815260208190526040902054612710811115610d2057600b546118569030906001600160a01b031683611419565b600b546008546040516338ed173960e01b81526001600160a01b03928316926338ed173992611894928692600092600c929116904290600401612189565b600060405180830381600087803b1580156118ae57600080fd5b505af19250505080156118e357506040513d6000823e601f3d908101601f191682016040526118e09190810190612242565b60015b610d1e576118ef61231a565b806308c379a0141561190f5750611904612336565b80610d1e5750611911565b505b3d808015610905576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006119e2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c939092919063ffffffff16565b8051909150156109055780806020019051810190611a0091906123c0565b6109055760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107d4565b6001600160a01b0383166000908152600e602052604090205460ff1615611abd5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88109b1858dadb1a5cdd195960721b60448201526064016107d4565b6001600160a01b0382166000908152600e602052604090205460ff1615611b1d5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88109b1858dadb1a5cdd195960621b60448201526064016107d4565b6013544211610905576001600160a01b0383166000908152600f602052604090205460ff1680611b6557506001600160a01b0382166000908152600f602052604090205460ff165b611bb15760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c697374656400000000000000000060448201526064016107d4565b6001600160a01b0382166000908152600f602052604090205460ff168015611be757506005546001600160a01b03838116911614155b15610905576011546001600160a01b038316600090815260106020526040902054611c13908390612171565b1115611c615760405162461bcd60e51b815260206004820152601a60248201527f4d6178696d756d2062757920616d6f756e74207265616368656400000000000060448201526064016107d4565b6001600160a01b03821660009081526010602052604081208054839290611c89908490612171565b9091555050505050565b6060611ca28484600085611caa565b949350505050565b606082471015611d0b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107d4565b600080866001600160a01b03168587604051611d2791906123dd565b60006040518083038185875af1925050503d8060008114611d64576040519150601f19603f3d011682016040523d82523d6000602084013e611d69565b606091505b5091509150611d7a87838387611d85565b979650505050505050565b60608315611df1578251611dea576001600160a01b0385163b611dea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107d4565b5081611ca2565b611ca28383815115611e065781518083602001fd5b8060405162461bcd60e51b81526004016107d49190611ec4565b828054828255906000526020600020908101928215611e73579160200282015b82811115611e735781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611e40565b50611e7f929150611e83565b5090565b5b80821115611e7f5760008155600101611e84565b60005b83811015611eb3578181015183820152602001611e9b565b8381111561165d5750506000910152565b6020815260008251806020840152611ee3816040850160208701611e98565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114611f0e57600080fd5b919050565b60008060408385031215611f2657600080fd5b611f2f83611ef7565b946020939093013593505050565b600060208284031215611f4f57600080fd5b611f5882611ef7565b9392505050565b60008060208385031215611f7257600080fd5b823567ffffffffffffffff80821115611f8a57600080fd5b818501915085601f830112611f9e57600080fd5b813581811115611fad57600080fd5b8660208260051b8501011115611fc257600080fd5b60209290920196919550909350505050565b600080600060608486031215611fe957600080fd5b611ff284611ef7565b925061200060208501611ef7565b9150604084013590509250925092565b60006020828403121561202257600080fd5b5035919050565b6000806040838503121561203c57600080fd5b61204583611ef7565b915061205360208401611ef7565b90509250929050565b8015158114610d2057600080fd5b60006020828403121561207c57600080fd5b8135611f588161205c565b600181811c9082168061209b57607f821691505b602082108114156120bc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156120d457600080fd5b5051919050565b6020808252600e908201526d416d6f756e7420746f6f206c6f7760901b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561213357612133612103565b500290565b60008261215557634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561216c5761216c612103565b500390565b6000821982111561218457612184612103565b500190565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b818110156121de5784546001600160a01b0316835260019485019492840192016121b9565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561223b5761223b6121ff565b6040525050565b6000602080838503121561225557600080fd5b825167ffffffffffffffff8082111561226d57600080fd5b818501915085601f83011261228157600080fd5b815181811115612293576122936121ff565b8060051b91506040516122a885840182612215565b818152918301840191848101888411156122c157600080fd5b938501935b838510156122dd57845181529385019385016122c6565b50979650505050505050565b634e487b7160e01b600052603260045260246000fd5b600060001982141561231357612313612103565b5060010190565b600060033d11156123335760046000803e5060005160e01c5b90565b600060443d10156123445790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561237457505050505090565b828501915081518181111561238c5750505050505090565b843d87010160208285010111156123a65750505050505090565b6123b560208286010187612215565b509095945050505050565b6000602082840312156123d257600080fd5b8151611f588161205c565b600082516123ef818460208701611e98565b919091019291505056fea2646970667358221220c6bfe9c29efb7703f3dce7318f350ec92366e84851ead8bb5c823ad41e63e2f264736f6c63430008090033e463fa6bdecb16f96f58191d902152633214e760ea443684105a7eef1ad16b9d000000000000000000000000c562963807792f589f039090dd3d34e504f9ec1d0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000002625a00

Deployed Bytecode

0x6080604052600436106102295760003560e01c80637dc4b9cc11610123578063b7bda68f116100ab578063dd62ed3e1161006f578063dd62ed3e146106cc578063e01af92c146106ec578063eb91e6511461070c578063f2fde38b1461072c578063fe575a871461074c57600080fd5b8063b7bda68f14610639578063cc1776d314610657578063d0385b5e1461066c578063d914cd4b1461068c578063dc1052e2146106ac57600080fd5b806395d89b41116100f257806395d89b41146105a45780639cfe42da146105b9578063a457c2d7146105d9578063a9059cbb146105f9578063b72692611461061957600080fd5b80637dc4b9cc1461051d5780638cd09d501461053d5780638da5cb5b1461055d57806395607ced1461058f57600080fd5b8063313ce567116101b15780634f7041a5116101755780634f7041a5146104655780635b16ebb71461047a5780636ddd1713146104b357806370a08231146104d2578063715018a61461050857600080fd5b8063313ce567146103bb57806339509351146103d75780633af32abf146103f75780633b7d0946146104305780633e9ffbea1461045057600080fd5b806318160ddd116101f857806318160ddd1461031c5780631ed1fd4c1461033b57806323b872dd1461035b578063277ecee41461037b578063291d95491461039b57600080fd5b806306fdde0314610281578063095ea7b3146102ac57806310154bad146102dc57806312ddadbc146102fc57600080fd5b3661027c57610236610785565b6005546040516001600160a01b03909116904780156108fc02916000818181858888f1935050505015801561026f573d6000803e3d6000fd5b5061027a6001600655565b005b600080fd5b34801561028d57600080fd5b506102966107e4565b6040516102a39190611ec4565b60405180910390f35b3480156102b857600080fd5b506102cc6102c7366004611f13565b610876565b60405190151581526020016102a3565b3480156102e857600080fd5b5061027a6102f7366004611f3d565b61088e565b34801561030857600080fd5b5061027a610317366004611f5f565b6108f1565b34801561032857600080fd5b506002545b6040519081526020016102a3565b34801561034757600080fd5b5061027a610356366004611f3d565b61090a565b34801561036757600080fd5b506102cc610376366004611fd4565b6109a4565b34801561038757600080fd5b5061027a610396366004612010565b610b0f565b3480156103a757600080fd5b5061027a6103b6366004611f3d565b610b7c565b3480156103c757600080fd5b50604051601281526020016102a3565b3480156103e357600080fd5b506102cc6103f2366004611f13565b610bd5565b34801561040357600080fd5b506102cc610412366004611f3d565b6001600160a01b031660009081526007602052604090205460ff1690565b34801561043c57600080fd5b5061027a61044b366004611f3d565b610bf7565b34801561045c57600080fd5b5061027a610c50565b34801561047157600080fd5b5060095461032d565b34801561048657600080fd5b506102cc610495366004611f3d565b6001600160a01b03166000908152600d602052604090205460ff1690565b3480156104bf57600080fd5b50600b54600160a01b900460ff166102cc565b3480156104de57600080fd5b5061032d6104ed366004611f3d565b6001600160a01b031660009081526020819052604090205490565b34801561051457600080fd5b5061027a610d23565b34801561052957600080fd5b5061027a610538366004611f3d565b610d37565b34801561054957600080fd5b5061027a610558366004612010565b610d61565b34801561056957600080fd5b506005546001600160a01b03165b6040516001600160a01b0390911681526020016102a3565b34801561059b57600080fd5b5061027a610e0a565b3480156105b057600080fd5b50610296610e38565b3480156105c557600080fd5b5061027a6105d4366004611f3d565b610e47565b3480156105e557600080fd5b506102cc6105f4366004611f13565b610ea3565b34801561060557600080fd5b506102cc610614366004611f13565b610f1e565b34801561062557600080fd5b5061027a610634366004611f5f565b61106a565b34801561064557600080fd5b506008546001600160a01b0316610577565b34801561066357600080fd5b50600a5461032d565b34801561067857600080fd5b5061027a610687366004611f3d565b6110e4565b34801561069857600080fd5b5061027a6106a7366004611f3d565b6111f4565b3480156106b857600080fd5b5061027a6106c7366004612010565b611250565b3480156106d857600080fd5b5061032d6106e7366004612029565b6112f9565b3480156106f857600080fd5b5061027a61070736600461206a565b611324565b34801561071857600080fd5b5061027a610727366004611f3d565b61134a565b34801561073857600080fd5b5061027a610747366004611f3d565b6113a3565b34801561075857600080fd5b506102cc610767366004611f3d565b6001600160a01b03166000908152600e602052604090205460ff1690565b600260065414156107dd5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600655565b6060600380546107f390612087565b80601f016020809104026020016040519081016040528092919081815260200182805461081f90612087565b801561086c5780601f106108415761010080835404028352916020019161086c565b820191906000526020600020905b81548152906001019060200180831161084f57829003601f168201915b5050505050905090565b600033610884818585611419565b5060019392505050565b61089661153d565b6001600160a01b038116600081815260076020908152604091829020805460ff1916600117905590519182527fe463fa6bdecb16f96f58191d902152633214e760ea443684105a7eef1ad16b9d91015b60405180910390a150565b6108f961153d565b610905600c8383611e20565b505050565b61091261153d565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a082319060240160206040518083038186803b15801561095657600080fd5b505afa15801561096a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061098e91906120c2565b90506109056001600160a01b0383163383611597565b6000336109b28582856115e9565b6001600160a01b03851660009081526007602052604090205460ff16806109f157506001600160a01b03841660009081526007602052604090205460ff165b156109fb57610af9565b6001600160a01b0385166000908152600d602052604090205460ff1615610a7957612710831015610a3e5760405162461bcd60e51b81526004016107d4906120db565b6000606484600954610a509190612119565b610a5a9190612138565b9050610a66818561215a565b9350610a73863083611663565b50610af9565b6001600160a01b0384166000908152600d602052604090205460ff1615610af957612710831015610abc5760405162461bcd60e51b81526004016107d4906120db565b6000606484600a54610ace9190612119565b610ad89190612138565b9050610ae4818561215a565b9350610af1863083611663565b610a73611812565b610b04858585611663565b506001949350505050565b610b1761153d565b6013544210610b5a5760405162461bcd60e51b815260206004820152600f60248201526e109b1bd8dadd1a5b5948195b991959608a1b60448201526064016107d4565b42601255610b6981603c612119565b601254610b769190612171565b60135550565b610b8461153d565b6001600160a01b038116600081815260076020908152604091829020805460ff1916905590519182527fa6667e187c57c5b0fa4e1122a695ed0754287513bcb4901fa6c1f44ba22c018791016108e6565b600033610884818585610be883836112f9565b610bf29190612171565b611419565b610bff61153d565b6001600160a01b0381166000818152600d6020908152604091829020805460ff1916905590519182527fdd70381b60b785acf30dbbb2f2ef58e218cf6553b5e45f3454ef5717490e5d8791016108e6565b610c5861153d565b30600090815260208190526040902054612710811115610d2057600b54610c8a9030906001600160a01b031683611419565b600b546008546040516338ed173960e01b81526001600160a01b03928316926338ed173992610cc8928692600092600c929116904290600401612189565b600060405180830381600087803b158015610ce257600080fd5b505af1158015610cf6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610d1e9190810190612242565b505b50565b610d2b61153d565b610d35600061193b565b565b610d3f61153d565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b610d6961153d565b7f0000000000000000000000000000000000000000000000000000000000000014811115610dd55760405162461bcd60e51b81526020600482015260196024820152780a8c2f040c2dadeeadce840caf0c6cacac8e640dac2f0a8c2f603b1b60448201526064016107d4565b600a8190556040518181527fa6255338a5f732d64ceba7f4c18182567f9d1067eb984b46d478b37d72a52d11906020016108e6565b610e1261153d565b60085430600081815260208190526040902054610d35926001600160a01b031690611663565b6060600480546107f390612087565b610e4f61153d565b6001600160a01b0381166000818152600e6020908152604091829020805460ff1916600117905590519182527f7e239e822fa537514cc6b38d8350bde5ce06a8f9282c77161b926fc077a8102691016108e6565b60003381610eb182866112f9565b905083811015610f115760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016107d4565b610b048286868403611419565b3360008181526007602052604081205490919060ff1680610f5757506001600160a01b03841660009081526007602052604090205460ff165b15610f615761105f565b6001600160a01b0381166000908152600d602052604090205460ff1615610fdf57612710831015610fa45760405162461bcd60e51b81526004016107d4906120db565b6000606484600954610fb69190612119565b610fc09190612138565b9050610fcc818561215a565b9350610fd9823083611663565b5061105f565b6001600160a01b0384166000908152600d602052604090205460ff161561105f576127108310156110225760405162461bcd60e51b81526004016107d4906120db565b6000606484600a546110349190612119565b61103e9190612138565b905061104a818561215a565b9350611057823083611663565b610fd9611812565b610884818585611663565b61107261153d565b60005b81811015610905576001600f6000858585818110611095576110956122e9565b90506020020160208101906110aa9190611f3d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806110dc816122ff565b915050611075565b6110ec61153d565b6001600160a01b0381166111505760405162461bcd60e51b815260206004820152602560248201527f7461784163636f756e745f2063616e277420626520746865207a65726f206164604482015264647265737360d81b60648201526084016107d4565b600880546001600160a01b0319166001600160a01b038316908117909155600081815260076020908152604091829020805460ff1916600117905590519182527ffa575a2937f4d8860715335c80a51e975f276f15a8717f4ad9d5ad153d3011ce910160405180910390a16040516001600160a01b03821681527fe463fa6bdecb16f96f58191d902152633214e760ea443684105a7eef1ad16b9d906020016108e6565b6111fc61153d565b6001600160a01b0381166000818152600d6020908152604091829020805460ff1916600117905590519182527fa6962d82409e82f161f3074698fd98d9f3777134745cb5f86a0ec938fceb696491016108e6565b61125861153d565b7f00000000000000000000000000000000000000000000000000000000000000148111156112c45760405162461bcd60e51b81526020600482015260196024820152780a8c2f040c2dadeeadce840caf0c6cacac8e640dac2f0a8c2f603b1b60448201526064016107d4565b60098190556040518181527f7a758dc8e99047b028278b3e2ff1416d8493a7aacee7a5dc30b6bf93270eccce906020016108e6565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61132c61153d565b600b8054911515600160a01b0260ff60a01b19909216919091179055565b61135261153d565b6001600160a01b0381166000818152600e6020908152604091829020805460ff1916905590519182527f54646b2d47b5332deb93b310542f2c11bc9351e59950cdfb3ba518af28f13d2991016108e6565b6113ab61153d565b6001600160a01b0381166114105760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107d4565b610d208161193b565b6001600160a01b03831661147b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107d4565b6001600160a01b0382166114dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107d4565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610d355760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107d4565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261090590849061198d565b60006115f584846112f9565b9050600019811461165d57818110156116505760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016107d4565b61165d8484848403611419565b50505050565b6001600160a01b0383166116c75760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016107d4565b6001600160a01b0382166117295760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016107d4565b611734838383611a5f565b6001600160a01b038316600090815260208190526040902054818110156117ac5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107d4565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361165d565b600b54600160a01b900460ff1615610d355730600090815260208190526040902054612710811115610d2057600b546118569030906001600160a01b031683611419565b600b546008546040516338ed173960e01b81526001600160a01b03928316926338ed173992611894928692600092600c929116904290600401612189565b600060405180830381600087803b1580156118ae57600080fd5b505af19250505080156118e357506040513d6000823e601f3d908101601f191682016040526118e09190810190612242565b60015b610d1e576118ef61231a565b806308c379a0141561190f5750611904612336565b80610d1e5750611911565b505b3d808015610905576040519150601f19603f3d011682016040523d82523d6000602084013e505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006119e2826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c939092919063ffffffff16565b8051909150156109055780806020019051810190611a0091906123c0565b6109055760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016107d4565b6001600160a01b0383166000908152600e602052604090205460ff1615611abd5760405162461bcd60e51b815260206004820152601260248201527114d95b99195c88109b1858dadb1a5cdd195960721b60448201526064016107d4565b6001600160a01b0382166000908152600e602052604090205460ff1615611b1d5760405162461bcd60e51b8152602060048201526014602482015273149958d95a5d995c88109b1858dadb1a5cdd195960621b60448201526064016107d4565b6013544211610905576001600160a01b0383166000908152600f602052604090205460ff1680611b6557506001600160a01b0382166000908152600f602052604090205460ff165b611bb15760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c697374656400000000000000000060448201526064016107d4565b6001600160a01b0382166000908152600f602052604090205460ff168015611be757506005546001600160a01b03838116911614155b15610905576011546001600160a01b038316600090815260106020526040902054611c13908390612171565b1115611c615760405162461bcd60e51b815260206004820152601a60248201527f4d6178696d756d2062757920616d6f756e74207265616368656400000000000060448201526064016107d4565b6001600160a01b03821660009081526010602052604081208054839290611c89908490612171565b9091555050505050565b6060611ca28484600085611caa565b949350505050565b606082471015611d0b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016107d4565b600080866001600160a01b03168587604051611d2791906123dd565b60006040518083038185875af1925050503d8060008114611d64576040519150601f19603f3d011682016040523d82523d6000602084013e611d69565b606091505b5091509150611d7a87838387611d85565b979650505050505050565b60608315611df1578251611dea576001600160a01b0385163b611dea5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016107d4565b5081611ca2565b611ca28383815115611e065781518083602001fd5b8060405162461bcd60e51b81526004016107d49190611ec4565b828054828255906000526020600020908101928215611e73579160200282015b82811115611e735781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190611e40565b50611e7f929150611e83565b5090565b5b80821115611e7f5760008155600101611e84565b60005b83811015611eb3578181015183820152602001611e9b565b8381111561165d5750506000910152565b6020815260008251806020840152611ee3816040850160208701611e98565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114611f0e57600080fd5b919050565b60008060408385031215611f2657600080fd5b611f2f83611ef7565b946020939093013593505050565b600060208284031215611f4f57600080fd5b611f5882611ef7565b9392505050565b60008060208385031215611f7257600080fd5b823567ffffffffffffffff80821115611f8a57600080fd5b818501915085601f830112611f9e57600080fd5b813581811115611fad57600080fd5b8660208260051b8501011115611fc257600080fd5b60209290920196919550909350505050565b600080600060608486031215611fe957600080fd5b611ff284611ef7565b925061200060208501611ef7565b9150604084013590509250925092565b60006020828403121561202257600080fd5b5035919050565b6000806040838503121561203c57600080fd5b61204583611ef7565b915061205360208401611ef7565b90509250929050565b8015158114610d2057600080fd5b60006020828403121561207c57600080fd5b8135611f588161205c565b600181811c9082168061209b57607f821691505b602082108114156120bc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000602082840312156120d457600080fd5b5051919050565b6020808252600e908201526d416d6f756e7420746f6f206c6f7760901b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561213357612133612103565b500290565b60008261215557634e487b7160e01b600052601260045260246000fd5b500490565b60008282101561216c5761216c612103565b500390565b6000821982111561218457612184612103565b500190565b600060a082018783526020878185015260a0604085015281875480845260c0860191508860005282600020935060005b818110156121de5784546001600160a01b0316835260019485019492840192016121b9565b50506001600160a01b03969096166060850152505050608001529392505050565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561223b5761223b6121ff565b6040525050565b6000602080838503121561225557600080fd5b825167ffffffffffffffff8082111561226d57600080fd5b818501915085601f83011261228157600080fd5b815181811115612293576122936121ff565b8060051b91506040516122a885840182612215565b818152918301840191848101888411156122c157600080fd5b938501935b838510156122dd57845181529385019385016122c6565b50979650505050505050565b634e487b7160e01b600052603260045260246000fd5b600060001982141561231357612313612103565b5060010190565b600060033d11156123335760046000803e5060005160e01c5b90565b600060443d10156123445790565b6040516003193d81016004833e81513d67ffffffffffffffff816024840111818411171561237457505050505090565b828501915081518181111561238c5750505050505090565b843d87010160208285010111156123a65750505050505090565b6123b560208286010187612215565b509095945050505050565b6000602082840312156123d257600080fd5b8151611f588161205c565b600082516123ef818460208701611e98565b919091019291505056fea2646970667358221220c6bfe9c29efb7703f3dce7318f350ec92366e84851ead8bb5c823ad41e63e2f264736f6c63430008090033

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

000000000000000000000000c562963807792f589f039090dd3d34e504f9ec1d0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d000000000000000000000000000000000000000000000000000000e8d4a510000000000000000000000000000000000000000000000000000000000002625a00

-----Decoded View---------------
Arg [0] : taxAccount (address): 0xC562963807792F589F039090dd3D34E504F9Ec1D
Arg [1] : maxTaxAmount (uint256): 20
Arg [2] : buyTaxAmount (uint256): 10
Arg [3] : sellTaxAmount (uint256): 10
Arg [4] : swapRouter (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [5] : preMint (uint256): 1000000000000
Arg [6] : maxBuyAmount (uint256): 40000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000c562963807792f589f039090dd3d34e504f9ec1d
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [5] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [6] : 0000000000000000000000000000000000000000000000000000000002625a00


Deployed Bytecode Sourcemap

40360:10104:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2378:21;:19;:21::i;:::-;16973:6;;42931:48:::1;::::0;-1:-1:-1;;;;;16973:6:0;;;;42957:21:::1;42931:48:::0;::::1;;;::::0;::::1;::::0;;;42957:21;16973:6;42931:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2422:20:::0;1816:1;2942:7;:22;2759:213;2422:20;40360:10104;;;;;28627:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30978:201;;;;;;;;;;-1:-1:-1;30978:201:0;;;;;:::i;:::-;;:::i;:::-;;;1267:14:1;;1260:22;1242:41;;1230:2;1215:18;30978:201:0;1102:187:1;45104:155:0;;;;;;;;;;-1:-1:-1;45104:155:0;;;;;:::i;:::-;;:::i;43256:108::-;;;;;;;;;;-1:-1:-1;43256:108:0;;;;;:::i;:::-;;:::i;29747:::-;;;;;;;;;;-1:-1:-1;29835:12:0;;29747:108;;;2251:25:1;;;2239:2;2224:18;29747:108:0;2105:177:1;42995:253:0;;;;;;;;;;-1:-1:-1;42995:253:0;;;;;:::i;:::-;;:::i;47846:1126::-;;;;;;;;;;-1:-1:-1;47846:1126:0;;;;;:::i;:::-;;:::i;42409:247::-;;;;;;;;;;-1:-1:-1;42409:247:0;;;;;:::i;:::-;;:::i;45267:161::-;;;;;;;;;;-1:-1:-1;45267:161:0;;;;;:::i;:::-;;:::i;29589:93::-;;;;;;;;;;-1:-1:-1;29589:93:0;;29672:2;2947:36:1;;2935:2;2920:18;29589:93:0;2805:184:1;32463:238:0;;;;;;;;;;-1:-1:-1;32463:238:0;;;;;:::i;:::-;;:::i;46507:122::-;;;;;;;;;;-1:-1:-1;46507:122:0;;;;;:::i;:::-;-1:-1:-1;;;;;46598:23:0;46574:4;46598:23;;;:10;:23;;;;;;;;;46507:122;44137:153;;;;;;;;;;-1:-1:-1;44137:153:0;;;;;:::i;:::-;;:::i;45548:318::-;;;;;;;;;;;;;:::i;46222:82::-;;;;;;;;;;-1:-1:-1;46289:7:0;;46222:82;;46006:111;;;;;;;;;;-1:-1:-1;46006:111:0;;;;;:::i;:::-;-1:-1:-1;;;;;46089:20:0;46065:4;46089:20;;;:7;:20;;;;;;;;;46006:111;46125:89;;;;;;;;;;-1:-1:-1;46194:12:0;;-1:-1:-1;;;46194:12:0;;;;46125:89;;29918:127;;;;;;;;;;-1:-1:-1;29918:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;30019:18:0;29992:7;30019:18;;;;;;;;;;;;29918:127;17548:103;;;;;;;;;;;;;:::i;43372:106::-;;;;;;;;;;-1:-1:-1;43372:106:0;;;;;:::i;:::-;;:::i;44538:235::-;;;;;;;;;;-1:-1:-1;44538:235:0;;;;;:::i;:::-;;:::i;16900:87::-;;;;;;;;;;-1:-1:-1;16973:6:0;;-1:-1:-1;;;;;16973:6:0;16900:87;;;-1:-1:-1;;;;;3158:32:1;;;3140:51;;3128:2;3113:18;16900:87:0;2994:203:1;45874:124:0;;;;;;;;;;;;;:::i;28846:104::-;;;;;;;;;;;;;:::i;43486:167::-;;;;;;;;;;-1:-1:-1;43486:167:0;;;;;:::i;:::-;;:::i;33204:436::-;;;;;;;;;;-1:-1:-1;33204:436:0;;;;;:::i;:::-;;:::i;48980:1036::-;;;;;;;;;;-1:-1:-1;48980:1036:0;;;;;:::i;:::-;;:::i;42664:208::-;;;;;;;;;;-1:-1:-1;42664:208:0;;;;;:::i;:::-;;:::i;46404:91::-;;;;;;;;;;-1:-1:-1;46476:11:0;;-1:-1:-1;;;;;46476:11:0;46404:91;;46312:84;;;;;;;;;;-1:-1:-1;46380:8:0;;46312:84;;44781:315;;;;;;;;;;-1:-1:-1;44781:315:0;;;;;:::i;:::-;;:::i;43983:146::-;;;;;;;;;;-1:-1:-1;43983:146:0;;;;;:::i;:::-;;:::i;44298:232::-;;;;;;;;;;-1:-1:-1;44298:232:0;;;;;:::i;:::-;;:::i;30507:151::-;;;;;;;;;;-1:-1:-1;30507:151:0;;;;;:::i;:::-;;:::i;45436:104::-;;;;;;;;;;-1:-1:-1;45436:104:0;;;;;:::i;:::-;;:::i;43661:174::-;;;;;;;;;;-1:-1:-1;43661:174:0;;;;;:::i;:::-;;:::i;17806:201::-;;;;;;;;;;-1:-1:-1;17806:201:0;;;;;:::i;:::-;;:::i;43843:132::-;;;;;;;;;;-1:-1:-1;43843:132:0;;;;;:::i;:::-;-1:-1:-1;;;;;43938:28:0;43914:4;43938:28;;;:10;:28;;;;;;;;;43843:132;2458:293;1860:1;2592:7;;:19;;2584:63;;;;-1:-1:-1;;;2584:63:0;;4038:2:1;2584:63:0;;;4020:21:1;4077:2;4057:18;;;4050:30;4116:33;4096:18;;;4089:61;4167:18;;2584:63:0;;;;;;;;;1860:1;2725:7;:18;2458:293::o;28627:100::-;28681:13;28714:5;28707:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28627:100;:::o;30978:201::-;31061:4;15531:10;31117:32;15531:10;31133:7;31142:6;31117:8;:32::i;:::-;-1:-1:-1;31167:4:0;;30978:201;-1:-1:-1;;;30978:201:0:o;45104:155::-;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;45180:23:0;::::1;;::::0;;;:10:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;45180:30:0::1;45206:4;45180:30;::::0;;45226:25;;3140:51:1;;;45226:25:0::1;::::0;3113:18:1;45226:25:0::1;;;;;;;;45104:155:::0;:::o;43256:108::-;16786:13;:11;:13::i;:::-;43336:20:::1;:9;43348:8:::0;;43336:20:::1;:::i;:::-;;43256:108:::0;;:::o;42995:253::-;16786:13;:11;:13::i;:::-;43134:38:::1;::::0;-1:-1:-1;;;43134:38:0;;43166:4:::1;43134:38;::::0;::::1;3140:51:1::0;43091:5:0;;43061:20:::1;::::0;-1:-1:-1;;;;;43134:23:0;::::1;::::0;::::1;::::0;3113:18:1;;43134:38:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;43108:64:::0;-1:-1:-1;43183:57:0::1;-1:-1:-1::0;;;;;43183:26:0;::::1;15531:10:::0;43108:64;43183:26:::1;:57::i;47846:1126::-:0;47977:4;15531:10;48035:38;48051:4;15531:10;48066:6;48035:15;:38::i;:::-;-1:-1:-1;;;;;48089:16:0;;;;;;:10;:16;;;;;;;;;:34;;-1:-1:-1;;;;;;48109:14:0;;;;;;:10;:14;;;;;;;;48089:34;48086:817;;;;;;-1:-1:-1;;;;;48222:13:0;;;;;;:7;:13;;;;;;;;48219:673;;;48304:5;48294:6;:15;;48286:42;;;;-1:-1:-1;;;48286:42:0;;;;;;;:::i;:::-;48347:17;48388:3;48378:6;48368:7;;:16;;;;:::i;:::-;48367:24;;;;:::i;:::-;48347:44;-1:-1:-1;48419:18:0;48347:44;48419:6;:18;:::i;:::-;48410:27;;48456:42;48466:4;48481;48488:9;48456;:42::i;:::-;48237:277;48219:673;;;-1:-1:-1;;;;;48536:11:0;;;;;;:7;:11;;;;;;;;48533:359;;;48617:5;48607:6;:15;;48599:42;;;;-1:-1:-1;;;48599:42:0;;;;;;;:::i;:::-;48660:17;48702:3;48692:6;48681:8;;:17;;;;:::i;:::-;48680:25;;;;:::i;:::-;48660:45;-1:-1:-1;48733:18:0;48660:45;48733:6;:18;:::i;:::-;48724:27;;48770:42;48780:4;48795;48802:9;48770;:42::i;:::-;48831:9;:7;:9::i;48533:359::-;48915:27;48925:4;48931:2;48935:6;48915:9;:27::i;:::-;-1:-1:-1;48960:4:0;;47846:1126;-1:-1:-1;;;;47846:1126:0:o;42409:247::-;16786:13;:11;:13::i;:::-;42504::::1;;42486:15;:31;42478:59;;;::::0;-1:-1:-1;;;42478:59:0;;5972:2:1;42478:59:0::1;::::0;::::1;5954:21:1::0;6011:2;5991:18;;;5984:30;-1:-1:-1;;;6030:18:1;;;6023:45;6085:18;;42478:59:0::1;5770:339:1::0;42478:59:0::1;42566:15;42548;:33:::0;42629:18:::1;:4:::0;42637:9:::1;42629:18;:::i;:::-;42608:15;;:40;;;;:::i;:::-;42592:13;:56:::0;-1:-1:-1;42409:247:0:o;45267:161::-;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;45345:23:0;::::1;45371:5;45345:23:::0;;;:10:::1;:23;::::0;;;;;;;;:31;;-1:-1:-1;;45345:31:0::1;::::0;;45392:28;;3140:51:1;;;45392:28:0::1;::::0;3113:18:1;45392:28:0::1;2994:203:1::0;32463:238:0;32551:4;15531:10;32607:64;15531:10;32623:7;32660:10;32632:25;15531:10;32623:7;32632:9;:25::i;:::-;:38;;;;:::i;:::-;32607:8;:64::i;44137:153::-;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;44208:20:0;::::1;44231:5;44208:20:::0;;;:7:::1;:20;::::0;;;;;;;;:28;;-1:-1:-1;;44208:28:0::1;::::0;;44252:30;;3140:51:1;;;44252:30:0::1;::::0;3113:18:1;44252:30:0::1;2994:203:1::0;45548:318:0;16786:13;:11;:13::i;:::-;45633:4:::1;45597:15;30019:18:::0;;;;;;;;;;;45663:5:::1;45653:15:::0;::::1;45650:209;;;45709:11;::::0;45685:45:::1;::::0;45702:4:::1;::::0;-1:-1:-1;;;;;45709:11:0::1;45722:7:::0;45685:8:::1;:45::i;:::-;45757:11;::::0;45818::::1;::::0;45745:102:::1;::::0;-1:-1:-1;;;45745:102:0;;-1:-1:-1;;;;;45757:11:0;;::::1;::::0;45745:49:::1;::::0;:102:::1;::::0;45795:7;;45757:11:::1;::::0;45807:9:::1;::::0;45818:11;::::1;::::0;45831:15:::1;::::0;45745:102:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;::::0;;::::1;-1:-1:-1::0;;45745:102:0::1;::::0;::::1;;::::0;::::1;::::0;;;::::1;::::0;::::1;:::i;:::-;;45650:209;45586:280;45548:318::o:0;17548:103::-;16786:13;:11;:13::i;:::-;17613:30:::1;17640:1;17613:18;:30::i;:::-;17548:103::o:0;43372:106::-;16786:13;:11;:13::i;:::-;43446:11:::1;:24:::0;;-1:-1:-1;;;;;;43446:24:0::1;-1:-1:-1::0;;;;;43446:24:0;;;::::1;::::0;;;::::1;::::0;;43372:106::o;44538:235::-;16786:13;:11;:13::i;:::-;44642:7:::1;44622:16;:27;;44614:65;;;::::0;-1:-1:-1;;;44614:65:0;;8825:2:1;44614:65:0::1;::::0;::::1;8807:21:1::0;8864:2;8844:18;;;8837:30;-1:-1:-1;;;8883:18:1;;;8876:55;8948:18;;44614:65:0::1;8623:349:1::0;44614:65:0::1;44690:8;:27:::0;;;44733:32:::1;::::0;2251:25:1;;;44733:32:0::1;::::0;2239:2:1;2224:18;44733:32:0::1;2105:177:1::0;45874:124:0;16786:13;:11;:13::i;:::-;45952:11:::1;::::0;45945:4:::1;29992:7:::0;30019:18;;;;;;;;;;;45927:63:::1;::::0;-1:-1:-1;;;;;45952:11:0::1;::::0;45927:9:::1;:63::i;28846:104::-:0;28902:13;28935:7;28928:14;;;;;:::i;43486:167::-;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;43564:28:0;::::1;;::::0;;;:10:::1;:28;::::0;;;;;;;;:35;;-1:-1:-1;;43564:35:0::1;43595:4;43564:35;::::0;;43615:30;;3140:51:1;;;43615:30:0::1;::::0;3113:18:1;43615:30:0::1;2994:203:1::0;33204:436:0;33297:4;15531:10;33297:4;33380:25;15531:10;33397:7;33380:9;:25::i;:::-;33353:52;;33444:15;33424:16;:35;;33416:85;;;;-1:-1:-1;;;33416:85:0;;9179:2:1;33416:85:0;;;9161:21:1;9218:2;9198:18;;;9191:30;9257:34;9237:18;;;9230:62;-1:-1:-1;;;9308:18:1;;;9301:35;9353:19;;33416:85:0;8977:401:1;33416:85:0;33537:60;33546:5;33553:7;33581:15;33562:16;:34;33537:8;:60::i;48980:1036::-;15531:10;49059:4;49119:16;;;:10;:16;;;;;;49059:4;;15531:10;49119:16;;;:34;;-1:-1:-1;;;;;;49139:14:0;;;;;;:10;:14;;;;;;;;49119:34;49116:831;;;;;;-1:-1:-1;;;;;49252:13:0;;;;;;:7;:13;;;;;;;;49249:687;;;49334:5;49324:6;:15;;49316:42;;;;-1:-1:-1;;;49316:42:0;;;;;;;:::i;:::-;49377:17;49418:3;49408:6;49398:7;;:16;;;;:::i;:::-;49397:24;;;;:::i;:::-;49377:44;-1:-1:-1;49449:18:0;49377:44;49449:6;:18;:::i;:::-;49440:27;;49486:42;49496:4;49511;49518:9;49486;:42::i;:::-;49267:277;49249:687;;;-1:-1:-1;;;;;49580:11:0;;;;;;:7;:11;;;;;;;;49577:359;;;49661:5;49651:6;:15;;49643:42;;;;-1:-1:-1;;;49643:42:0;;;;;;;:::i;:::-;49704:17;49746:3;49736:6;49725:8;;:17;;;;:::i;:::-;49724:25;;;;:::i;:::-;49704:45;-1:-1:-1;49777:18:0;49704:45;49777:6;:18;:::i;:::-;49768:27;;49814:42;49824:4;49839;49846:9;49814;:42::i;:::-;49875:9;:7;:9::i;49577:359::-;49959:27;49969:4;49975:2;49979:6;49959:9;:27::i;42664:208::-;16786:13;:11;:13::i;:::-;42757:9:::1;42753:112;42770:23:::0;;::::1;42753:112;;;42849:4;42815:13;:31;42829:13;;42843:1;42829:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42815:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42815:31:0;:38;;-1:-1:-1;;42815:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;42795:3;::::1;::::0;::::1;:::i;:::-;;;;42753:112;;44781:315:::0;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;44862:24:0;::::1;44854:74;;;::::0;-1:-1:-1;;;44854:74:0;;9857:2:1;44854:74:0::1;::::0;::::1;9839:21:1::0;9896:2;9876:18;;;9869:30;9935:34;9915:18;;;9908:62;-1:-1:-1;;;9986:18:1;;;9979:35;10031:19;;44854:74:0::1;9655:401:1::0;44854:74:0::1;44939:11;:24:::0;;-1:-1:-1;;;;;;44939:24:0::1;-1:-1:-1::0;;;;;44939:24:0;::::1;::::0;;::::1;::::0;;;-1:-1:-1;44974:22:0;;;:10:::1;:22;::::0;;;;;;;;:29;;-1:-1:-1;;44974:29:0::1;-1:-1:-1::0;44974:29:0::1;::::0;;45019;;3140:51:1;;;45019:29:0::1;::::0;3113:18:1;45019:29:0::1;;;;;;;45064:24;::::0;-1:-1:-1;;;;;3158:32:1;;3140:51;;45064:24:0::1;::::0;3128:2:1;3113:18;45064:24:0::1;2994:203:1::0;43983:146:0;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;44051:20:0;::::1;;::::0;;;:7:::1;:20;::::0;;;;;;;;:27;;-1:-1:-1;;44051:27:0::1;44074:4;44051:27;::::0;;44094;;3140:51:1;;;44094:27:0::1;::::0;3113:18:1;44094:27:0::1;2994:203:1::0;44298:232:0;16786:13;:11;:13::i;:::-;44401:7:::1;44381:16;:27;;44373:65;;;::::0;-1:-1:-1;;;44373:65:0;;8825:2:1;44373:65:0::1;::::0;::::1;8807:21:1::0;8864:2;8844:18;;;8837:30;-1:-1:-1;;;8883:18:1;;;8876:55;8948:18;;44373:65:0::1;8623:349:1::0;44373:65:0::1;44449:7;:26:::0;;;44491:31:::1;::::0;2251:25:1;;;44491:31:0::1;::::0;2239:2:1;2224:18;44491:31:0::1;2105:177:1::0;30507:151:0;-1:-1:-1;;;;;30623:18:0;;;30596:7;30623:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30507:151::o;45436:104::-;16786:13;:11;:13::i;:::-;45507:12:::1;:25:::0;;;::::1;;-1:-1:-1::0;;;45507:25:0::1;-1:-1:-1::0;;;;45507:25:0;;::::1;::::0;;;::::1;::::0;;45436:104::o;43661:174::-;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;43742:28:0;::::1;43773:5;43742:28:::0;;;:10:::1;:28;::::0;;;;;;;;:36;;-1:-1:-1;;43742:36:0::1;::::0;;43794:33;;3140:51:1;;;43794:33:0::1;::::0;3113:18:1;43794:33:0::1;2994:203:1::0;17806:201:0;16786:13;:11;:13::i;:::-;-1:-1:-1;;;;;17895:22:0;::::1;17887:73;;;::::0;-1:-1:-1;;;17887:73:0;;10263:2:1;17887:73:0::1;::::0;::::1;10245:21:1::0;10302:2;10282:18;;;10275:30;10341:34;10321:18;;;10314:62;-1:-1:-1;;;10392:18:1;;;10385:36;10438:19;;17887:73:0::1;10061:402:1::0;17887:73:0::1;17971:28;17990:8;17971:18;:28::i;37231:380::-:0;-1:-1:-1;;;;;37367:19:0;;37359:68;;;;-1:-1:-1;;;37359:68:0;;10670:2:1;37359:68:0;;;10652:21:1;10709:2;10689:18;;;10682:30;10748:34;10728:18;;;10721:62;-1:-1:-1;;;10799:18:1;;;10792:34;10843:19;;37359:68:0;10468:400:1;37359:68:0;-1:-1:-1;;;;;37446:21:0;;37438:68;;;;-1:-1:-1;;;37438:68:0;;11075:2:1;37438:68:0;;;11057:21:1;11114:2;11094:18;;;11087:30;11153:34;11133:18;;;11126:62;-1:-1:-1;;;11204:18:1;;;11197:32;11246:19;;37438:68:0;10873:398:1;37438:68:0;-1:-1:-1;;;;;37519:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;37571:32;;2251:25:1;;;37571:32:0;;2224:18:1;37571:32:0;;;;;;;37231:380;;;:::o;17065:132::-;16973:6;;-1:-1:-1;;;;;16973:6:0;15531:10;17129:23;17121:68;;;;-1:-1:-1;;;17121:68:0;;11478:2:1;17121:68:0;;;11460:21:1;;;11497:18;;;11490:30;11556:34;11536:18;;;11529:62;11608:18;;17121:68:0;11276:356:1;21958:211:0;22102:58;;;-1:-1:-1;;;;;11829:32:1;;22102:58:0;;;11811:51:1;11878:18;;;;11871:34;;;22102:58:0;;;;;;;;;;11784:18:1;;;;22102:58:0;;;;;;;;-1:-1:-1;;;;;22102:58:0;-1:-1:-1;;;22102:58:0;;;22075:86;;22095:5;;22075:19;:86::i;37902:453::-;38037:24;38064:25;38074:5;38081:7;38064:9;:25::i;:::-;38037:52;;-1:-1:-1;;38104:16:0;:37;38100:248;;38186:6;38166:16;:26;;38158:68;;;;-1:-1:-1;;;38158:68:0;;12118:2:1;38158:68:0;;;12100:21:1;12157:2;12137:18;;;12130:30;12196:31;12176:18;;;12169:59;12245:18;;38158:68:0;11916:353:1;38158:68:0;38270:51;38279:5;38286:7;38314:6;38295:16;:25;38270:8;:51::i;:::-;38026:329;37902:453;;;:::o;34110:840::-;-1:-1:-1;;;;;34241:18:0;;34233:68;;;;-1:-1:-1;;;34233:68:0;;12476:2:1;34233:68:0;;;12458:21:1;12515:2;12495:18;;;12488:30;12554:34;12534:18;;;12527:62;-1:-1:-1;;;12605:18:1;;;12598:35;12650:19;;34233:68:0;12274:401:1;34233:68:0;-1:-1:-1;;;;;34320:16:0;;34312:64;;;;-1:-1:-1;;;34312:64:0;;12882:2:1;34312:64:0;;;12864:21:1;12921:2;12901:18;;;12894:30;12960:34;12940:18;;;12933:62;-1:-1:-1;;;13011:18:1;;;13004:33;13054:19;;34312:64:0;12680:399:1;34312:64:0;34389:38;34410:4;34416:2;34420:6;34389:20;:38::i;:::-;-1:-1:-1;;;;;34462:15:0;;34440:19;34462:15;;;;;;;;;;;34496:21;;;;34488:72;;;;-1:-1:-1;;;34488:72:0;;13286:2:1;34488:72:0;;;13268:21:1;13325:2;13305:18;;;13298:30;13364:34;13344:18;;;13337:62;-1:-1:-1;;;13415:18:1;;;13408:36;13461:19;;34488:72:0;13084:402:1;34488:72:0;-1:-1:-1;;;;;34596:15:0;;;:9;:15;;;;;;;;;;;34614:20;;;34596:38;;34814:13;;;;;;;;;;:23;;;;;;34866:26;;2251:25:1;;;34814:13:0;;34866:26;;2224:18:1;34866:26:0;;;;;;;34905:37;43256:108;47297:541;47339:12;;-1:-1:-1;;;47339:12:0;;;;47336:495;;;47403:4;47367:15;30019:18;;;;;;;;;;;47437:5;47427:15;;47424:396;;;47487:11;;47463:45;;47480:4;;-1:-1:-1;;;;;47487:11:0;47500:7;47463:8;:45::i;:::-;47543:11;;47604;;47531:102;;-1:-1:-1;;;47531:102:0;;-1:-1:-1;;;;;47543:11:0;;;;47531:49;;:102;;47581:7;;47543:11;;47593:9;;47604:11;;;47617:15;;47531:102;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47531:102:0;;;;;;;;;;;;:::i;:::-;;;47527:278;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43336:20:::1;43256:108:::0;;:::o;18167:191::-;18260:6;;;-1:-1:-1;;;;;18277:17:0;;;-1:-1:-1;;;;;;18277:17:0;;;;;;;18310:40;;18260:6;;;18277:17;18260:6;;18310:40;;18241:16;;18310:40;18230:128;18167:191;:::o;25025:716::-;25449:23;25475:69;25503:4;25475:69;;;;;;;;;;;;;;;;;25483:5;-1:-1:-1;;;;;25475:27:0;;;:69;;;;;:::i;:::-;25559:17;;25449:95;;-1:-1:-1;25559:21:0;25555:179;;25656:10;25645:30;;;;;;;;;;;;:::i;:::-;25637:85;;;;-1:-1:-1;;;25637:85:0;;14803:2:1;25637:85:0;;;14785:21:1;14842:2;14822:18;;;14815:30;14881:34;14861:18;;;14854:62;-1:-1:-1;;;14932:18:1;;;14925:40;14982:19;;25637:85:0;14601:406:1;46637:652:0;-1:-1:-1;;;;;46770:16:0;;;;;;:10;:16;;;;;;;;46769:17;46761:48;;;;-1:-1:-1;;;46761:48:0;;15214:2:1;46761:48:0;;;15196:21:1;15253:2;15233:18;;;15226:30;-1:-1:-1;;;15272:18:1;;;15265:48;15330:18;;46761:48:0;15012:342:1;46761:48:0;-1:-1:-1;;;;;46829:14:0;;;;;;:10;:14;;;;;;;;46828:15;46820:48;;;;-1:-1:-1;;;46820:48:0;;15561:2:1;46820:48:0;;;15543:21:1;15600:2;15580:18;;;15573:30;-1:-1:-1;;;15619:18:1;;;15612:50;15679:18;;46820:48:0;15359:344:1;46820:48:0;46903:13;;46884:15;:32;46881:344;;-1:-1:-1;;;;;46941:19:0;;;;;;:13;:19;;;;;;;;;:40;;-1:-1:-1;;;;;;46964:17:0;;;;;;:13;:17;;;;;;;;46941:40;46933:76;;;;-1:-1:-1;;;46933:76:0;;15910:2:1;46933:76:0;;;15892:21:1;15949:2;15929:18;;;15922:30;15988:25;15968:18;;;15961:53;16031:18;;46933:76:0;15708:347:1;46933:76:0;-1:-1:-1;;;;;47027:17:0;;;;;;:13;:17;;;;;;;;:34;;;;-1:-1:-1;16973:6:0;;-1:-1:-1;;;;;47048:13:0;;;16973:6;;47048:13;;47027:34;47024:190;;;47117:7;;-1:-1:-1;;;;;47090:14:0;;;;;;:10;:14;;;;;;:23;;47107:6;;47090:23;:::i;:::-;:34;;47082:73;;;;-1:-1:-1;;;47082:73:0;;16262:2:1;47082:73:0;;;16244:21:1;16301:2;16281:18;;;16274:30;16340:28;16320:18;;;16313:56;16386:18;;47082:73:0;16060:350:1;47082:73:0;-1:-1:-1;;;;;47174:14:0;;;;;;:10;:14;;;;;:24;;47192:6;;47174:14;:24;;47192:6;;47174:24;:::i;:::-;;;;-1:-1:-1;;43336:20:0::1;43256:108:::0;;:::o;6969:229::-;7106:12;7138:52;7160:6;7168:4;7174:1;7177:12;7138:21;:52::i;:::-;7131:59;6969:229;-1:-1:-1;;;;6969:229:0:o;8089:455::-;8259:12;8317:5;8292:21;:30;;8284:81;;;;-1:-1:-1;;;8284:81:0;;16617:2:1;8284:81:0;;;16599:21:1;16656:2;16636:18;;;16629:30;16695:34;16675:18;;;16668:62;-1:-1:-1;;;16746:18:1;;;16739:36;16792:19;;8284:81:0;16415:402:1;8284:81:0;8377:12;8391:23;8418:6;-1:-1:-1;;;;;8418:11:0;8437:5;8444:4;8418:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8376:73;;;;8467:69;8494:6;8502:7;8511:10;8523:12;8467:26;:69::i;:::-;8460:76;8089:455;-1:-1:-1;;;;;;;8089:455:0:o;10662:644::-;10847:12;10876:7;10872:427;;;10904:17;;10900:290;;-1:-1:-1;;;;;4507:19:0;;;11114:60;;;;-1:-1:-1;;;11114:60:0;;17303:2:1;11114:60:0;;;17285:21:1;17342:2;17322:18;;;17315:30;17381:31;17361:18;;;17354:59;17430:18;;11114:60:0;17101:353:1;11114:60:0;-1:-1:-1;11211:10:0;11204:17;;10872:427;11254:33;11262:10;11274:12;12009:17;;:21;12005:388;;12241:10;12235:17;12298:15;12285:10;12281:2;12277:19;12270:44;12005:388;12368:12;12361:20;;-1:-1:-1;;;12361:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:258:1;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:1;244:16;;237:27;14:258::o;277:383::-;426:2;415:9;408:21;389:4;458:6;452:13;501:6;496:2;485:9;481:18;474:34;517:66;576:6;571:2;560:9;556:18;551:2;543:6;539:15;517:66;:::i;:::-;644:2;623:15;-1:-1:-1;;619:29:1;604:45;;;;651:2;600:54;;277:383;-1:-1:-1;;277:383:1:o;665:173::-;733:20;;-1:-1:-1;;;;;782:31:1;;772:42;;762:70;;828:1;825;818:12;762:70;665:173;;;:::o;843:254::-;911:6;919;972:2;960:9;951:7;947:23;943:32;940:52;;;988:1;985;978:12;940:52;1011:29;1030:9;1011:29;:::i;:::-;1001:39;1087:2;1072:18;;;;1059:32;;-1:-1:-1;;;843:254:1:o;1294:186::-;1353:6;1406:2;1394:9;1385:7;1381:23;1377:32;1374:52;;;1422:1;1419;1412:12;1374:52;1445:29;1464:9;1445:29;:::i;:::-;1435:39;1294:186;-1:-1:-1;;;1294:186:1:o;1485:615::-;1571:6;1579;1632:2;1620:9;1611:7;1607:23;1603:32;1600:52;;;1648:1;1645;1638:12;1600:52;1688:9;1675:23;1717:18;1758:2;1750:6;1747:14;1744:34;;;1774:1;1771;1764:12;1744:34;1812:6;1801:9;1797:22;1787:32;;1857:7;1850:4;1846:2;1842:13;1838:27;1828:55;;1879:1;1876;1869:12;1828:55;1919:2;1906:16;1945:2;1937:6;1934:14;1931:34;;;1961:1;1958;1951:12;1931:34;2014:7;2009:2;1999:6;1996:1;1992:14;1988:2;1984:23;1980:32;1977:45;1974:65;;;2035:1;2032;2025:12;1974:65;2066:2;2058:11;;;;;2088:6;;-1:-1:-1;1485:615:1;;-1:-1:-1;;;;1485:615:1:o;2287:328::-;2364:6;2372;2380;2433:2;2421:9;2412:7;2408:23;2404:32;2401:52;;;2449:1;2446;2439:12;2401:52;2472:29;2491:9;2472:29;:::i;:::-;2462:39;;2520:38;2554:2;2543:9;2539:18;2520:38;:::i;:::-;2510:48;;2605:2;2594:9;2590:18;2577:32;2567:42;;2287:328;;;;;:::o;2620:180::-;2679:6;2732:2;2720:9;2711:7;2707:23;2703:32;2700:52;;;2748:1;2745;2738:12;2700:52;-1:-1:-1;2771:23:1;;2620:180;-1:-1:-1;2620:180:1:o;3202:260::-;3270:6;3278;3331:2;3319:9;3310:7;3306:23;3302:32;3299:52;;;3347:1;3344;3337:12;3299:52;3370:29;3389:9;3370:29;:::i;:::-;3360:39;;3418:38;3452:2;3441:9;3437:18;3418:38;:::i;:::-;3408:48;;3202:260;;;;;:::o;3467:118::-;3553:5;3546:13;3539:21;3532:5;3529:32;3519:60;;3575:1;3572;3565:12;3590:241;3646:6;3699:2;3687:9;3678:7;3674:23;3670:32;3667:52;;;3715:1;3712;3705:12;3667:52;3754:9;3741:23;3773:28;3795:5;3773:28;:::i;4196:380::-;4275:1;4271:12;;;;4318;;;4339:61;;4393:4;4385:6;4381:17;4371:27;;4339:61;4446:2;4438:6;4435:14;4415:18;4412:38;4409:161;;;4492:10;4487:3;4483:20;4480:1;4473:31;4527:4;4524:1;4517:15;4555:4;4552:1;4545:15;4409:161;;4196:380;;;:::o;4581:184::-;4651:6;4704:2;4692:9;4683:7;4679:23;4675:32;4672:52;;;4720:1;4717;4710:12;4672:52;-1:-1:-1;4743:16:1;;4581:184;-1:-1:-1;4581:184:1:o;4770:338::-;4972:2;4954:21;;;5011:2;4991:18;;;4984:30;-1:-1:-1;;;5045:2:1;5030:18;;5023:44;5099:2;5084:18;;4770:338::o;5113:127::-;5174:10;5169:3;5165:20;5162:1;5155:31;5205:4;5202:1;5195:15;5229:4;5226:1;5219:15;5245:168;5285:7;5351:1;5347;5343:6;5339:14;5336:1;5333:21;5328:1;5321:9;5314:17;5310:45;5307:71;;;5358:18;;:::i;:::-;-1:-1:-1;5398:9:1;;5245:168::o;5418:217::-;5458:1;5484;5474:132;;5528:10;5523:3;5519:20;5516:1;5509:31;5563:4;5560:1;5553:15;5591:4;5588:1;5581:15;5474:132;-1:-1:-1;5620:9:1;;5418:217::o;5640:125::-;5680:4;5708:1;5705;5702:8;5699:34;;;5713:18;;:::i;:::-;-1:-1:-1;5750:9:1;;5640:125::o;6114:128::-;6154:3;6185:1;6181:6;6178:1;6175:13;6172:39;;;6191:18;;:::i;:::-;-1:-1:-1;6227:9:1;;6114:128::o;6247:1003::-;6506:4;6554:3;6543:9;6539:19;6585:6;6574:9;6567:25;6611:2;6649:6;6644:2;6633:9;6629:18;6622:34;6692:3;6687:2;6676:9;6672:18;6665:31;6716:6;6751;6745:13;6782:6;6774;6767:22;6820:3;6809:9;6805:19;6798:26;;6843:6;6840:1;6833:17;6886:2;6883:1;6873:16;6859:30;;6907:1;6917:194;6931:6;6928:1;6925:13;6917:194;;;6996:13;;-1:-1:-1;;;;;6992:39:1;6980:52;;7028:1;7087:14;;;;7052:12;;;;6946:9;6917:194;;;-1:-1:-1;;;;;;;7167:32:1;;;;7162:2;7147:18;;7140:60;-1:-1:-1;;;7231:3:1;7216:19;7209:35;7128:3;6247:1003;-1:-1:-1;;;6247:1003:1:o;7255:127::-;7316:10;7311:3;7307:20;7304:1;7297:31;7347:4;7344:1;7337:15;7371:4;7368:1;7361:15;7387:249;7497:2;7478:13;;-1:-1:-1;;7474:27:1;7462:40;;7532:18;7517:34;;7553:22;;;7514:62;7511:88;;;7579:18;;:::i;:::-;7615:2;7608:22;-1:-1:-1;;7387:249:1:o;7641:977::-;7736:6;7767:2;7810;7798:9;7789:7;7785:23;7781:32;7778:52;;;7826:1;7823;7816:12;7778:52;7859:9;7853:16;7888:18;7929:2;7921:6;7918:14;7915:34;;;7945:1;7942;7935:12;7915:34;7983:6;7972:9;7968:22;7958:32;;8028:7;8021:4;8017:2;8013:13;8009:27;7999:55;;8050:1;8047;8040:12;7999:55;8079:2;8073:9;8101:2;8097;8094:10;8091:36;;;8107:18;;:::i;:::-;8153:2;8150:1;8146:10;8136:20;;8185:2;8179:9;8197:40;8233:2;8229;8225:11;8217:6;8197:40;:::i;:::-;8272:18;;;8348:11;;;8344:20;;;8306:15;;;8376:19;;;8373:39;;;8408:1;8405;8398:12;8373:39;8432:11;;;;8452:135;8468:6;8463:3;8460:15;8452:135;;;8534:10;;8522:23;;8485:12;;;;8565;;8452:135;;;-1:-1:-1;8606:6:1;7641:977;-1:-1:-1;;;;;;;7641:977:1:o;9383:127::-;9444:10;9439:3;9435:20;9432:1;9425:31;9475:4;9472:1;9465:15;9499:4;9496:1;9489:15;9515:135;9554:3;-1:-1:-1;;9575:17:1;;9572:43;;;9595:18;;:::i;:::-;-1:-1:-1;9642:1:1;9631:13;;9515:135::o;13491:179::-;13526:3;13568:1;13550:16;13547:23;13544:120;;;13614:1;13611;13608;13593:23;-1:-1:-1;13651:1:1;13645:8;13640:3;13636:18;13544:120;13491:179;:::o;13675:671::-;13714:3;13756:4;13738:16;13735:26;13732:39;;;13675:671;:::o;13732:39::-;13798:2;13792:9;-1:-1:-1;;13863:16:1;13859:25;;13856:1;13792:9;13835:50;13914:4;13908:11;13938:16;13973:18;14044:2;14037:4;14029:6;14025:17;14022:25;14017:2;14009:6;14006:14;14003:45;14000:58;;;14051:5;;;;;13675:671;:::o;14000:58::-;14088:6;14082:4;14078:17;14067:28;;14124:3;14118:10;14151:2;14143:6;14140:14;14137:27;;;14157:5;;;;;;13675:671;:::o;14137:27::-;14241:2;14222:16;14216:4;14212:27;14208:36;14201:4;14192:6;14187:3;14183:16;14179:27;14176:69;14173:82;;;14248:5;;;;;;13675:671;:::o;14173:82::-;14264:57;14315:4;14306:6;14298;14294:19;14290:30;14284:4;14264:57;:::i;:::-;-1:-1:-1;14337:3:1;;13675:671;-1:-1:-1;;;;;13675:671:1:o;14351:245::-;14418:6;14471:2;14459:9;14450:7;14446:23;14442:32;14439:52;;;14487:1;14484;14477:12;14439:52;14519:9;14513:16;14538:28;14560:5;14538:28;:::i;16822:274::-;16951:3;16989:6;16983:13;17005:53;17051:6;17046:3;17039:4;17031:6;17027:17;17005:53;:::i;:::-;17074:16;;;;;16822:274;-1:-1:-1;;16822:274:1:o

Swarm Source

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