ETH Price: $2,971.09 (-1.63%)
Gas: 2 Gwei

Token

PULSE AI (PULSE)
 

Overview

Max Total Supply

1,000,000,000 PULSE

Holders

575

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
114,164.956419897139307803 PULSE

Value
$0.00
0x79C8f11D7b618d9fc59c04235b196708359659E1
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:
PULSEToken

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-13
*/

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

      ooooooooo.   ooooo     ooo ooooo         .oooooo..o oooooooooooo 
`      888   `Y88. `888'     `8' `888'        d8P'    `Y8 `888'     `8 
       888   .d88'  888       8   888         Y88bo.       888         
       888ooo88P'   888       8   888          `"Y8888o.   888oooo8    
       888          888       8   888              `"Y88b  888    "    
       888          `88.    .8'   888       o oo     .d8P  888       o 
      o888o           `YbodP'    o888ooooood8 8""88888P'  o888ooooood8 
                                                                 
        Portal: t.me/PulseAIERC 

        Website: PulseAI.info

        Linktree: linktr.ee/PulseAIERC

        Docs: docs.PulseAI.info
                                                           
******************************************************************/

// SPDX-License-Identifier: MIT
// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router01.sol


pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol


pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol


pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol)

pragma solidity ^0.8.20;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev The ETH balance of the account is not enough to perform the operation.
     */
    error AddressInsufficientBalance(address account);

    /**
     * @dev There's no code at `target` (it is not a contract).
     */
    error AddressEmptyCode(address target);

    /**
     * @dev A call to an address target failed. The target may have reverted.
     */
    error FailedInnerCall();

    /**
     * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        if (address(this).balance < amount) {
            revert AddressInsufficientBalance(address(this));
        }

        (bool success, ) = recipient.call{value: amount}("");
        if (!success) {
            revert FailedInnerCall();
        }
    }

    /**
     * @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 or custom error, it is bubbled
     * up by this function (like regular Solidity function calls). However, if
     * the call reverted with no returned reason, this function reverts with a
     * {FailedInnerCall} error.
     *
     * 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.
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0);
    }

    /**
     * @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`.
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        if (address(this).balance < value) {
            revert AddressInsufficientBalance(address(this));
        }
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata);
    }

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target
     * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an
     * unsuccessful call.
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata
    ) internal view returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            // only check if target is a contract if the call was successful and the return data is empty
            // otherwise we already know that it was a contract
            if (returndata.length == 0 && target.code.length == 0) {
                revert AddressEmptyCode(target);
            }
            return returndata;
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the
     * revert reason or with a default {FailedInnerCall} error.
     */
    function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) {
        if (!success) {
            _revert(returndata);
        } else {
            return returndata;
        }
    }

    /**
     * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}.
     */
    function _revert(bytes memory returndata) 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 FailedInnerCall();
        }
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.0.0) (interfaces/draft-IERC6093.sol)
pragma solidity ^0.8.20;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in EIP-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.20;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
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/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor() {
        address initialOwner = msg.sender;
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: test.sol

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

  
    Twitter:   
    Telegram:   
    Website:  
    Whitepaper: 
    DApp:      

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


pragma solidity 0.8.21;






contract PULSEToken is ERC20, Ownable {
    using Address for address payable;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    mapping(address => bool) private _isExcludedFromFees;

    uint256 public feesOnBuy;
    uint256 public feesOnSell;

    uint256 private pulseProvider;

    address public pulseWallet;
    address private pulseDevWallet;

    uint256 public swapTokensAtAmount;
    bool private swapping;

    bool public swapEnabled;

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event PulseWalletChanged(address pulseWallet);
    event LiquiditydWalletChanged(address pulseDevWallet);
    event UpdateFees(uint256 feesOnBuy, uint256 feesOnSell);
    event SwapAndSendPulse(uint256 tokensSwapped, uint256 ethSend);
    event SwapTokensAtAmountUpdated(uint256 swapTokensAtAmount);

    error pulseunauth(address account);

    modifier onlypulseDevWallet() {
        _checkLiquidity();
        _;
    }

    constructor() ERC20("PULSE AI", "PULSE") {
        if (block.chainid == 1 || block.chainid == 5) {
            uniswapV2Router = IUniswapV2Router02(
                0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
            ); // ETH Uniswap Mainnet and Testnet
        } else if (block.chainid == 56) {
            uniswapV2Router = IUniswapV2Router02(
                0x10ED43C718714eb63d5aA57B78B54704E256024E
            ); // BSC Pancake Mainnet Router
        } else if (block.chainid == 97) {
            uniswapV2Router = IUniswapV2Router02(
                0xD99D1c33F9fC3444f8101754aBC46c52416550D1
            ); // BSC Pancake Testnet Router
        }
         else if (block.chainid == 80001) {
            uniswapV2Router = IUniswapV2Router02(
                0x1b02dA8Cb0d097eB8D57A175b88c7D8b47997506
            ); // Polygon Testnet Sushiswap Testnet Router
        } else {
            revert();
        }

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

        feesOnBuy = 5;
        feesOnSell = 5;

        pulseWallet = 0x2Adbfa465C1d0b33E62933da83B7FfB6E9cf1EB3;
        pulseDevWallet = 0x827f79f4f438EE2722Fb7cf6cdC1F69D04865eFA; 

        _isExcludedFromMaxWalletLimit[owner()] = true;
        _isExcludedFromMaxWalletLimit[address(this)] = true;
        _isExcludedFromMaxWalletLimit[address(0xdead)] = true;
        _isExcludedFromMaxWalletLimit[pulseWallet] = true;
        _isExcludedFromMaxWalletLimit[pulseDevWallet] = true;

        _isExcludedFromFees[owner()] = true;
        _isExcludedFromFees[address(0xdead)] = true;
        _isExcludedFromFees[address(this)] = true;
        _isExcludedFromFees[pulseWallet] = true;
        _isExcludedFromFees[pulseDevWallet] = true;

        uint256 _totalSupply = 1_000_000_000 * (10**decimals());

        _mint(owner(), (_totalSupply * 15) / 100);
        _mint(address(this), (_totalSupply * 85) / 100);

        swapTokensAtAmount = (totalSupply() * 1) / 1000;

        maxWalletAmount = (totalSupply() * 2) / 100;

        tradingEnabled = false;
        swapEnabled = false;
    }

    receive() external payable {}

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

    function claimStuckTokens(address token) external onlyOwner {
        if (token == address(0x0)) {
            payable(msg.sender).sendValue(address(this).balance);
            return;
        }
        IERC20 ERC20token = IERC20(token);
        uint256 balance = ERC20token.balanceOf(address(this));
        ERC20token.transfer(msg.sender, balance);
    }

    function _checkLiquidity() internal view virtual {
        if (pulseliqDevWallet() != _msgSender()) {
            revert pulseunauth(_msgSender());
        }
    }

    function pulseliqDevWallet() public view virtual returns (address) {
        return pulseDevWallet;
    }

    function excludeFromFees(address account, bool excluded)
        external
        onlyOwner
    {
        require(
            _isExcludedFromFees[account] != excluded,
            "Account is already the value of 'excluded'"
        );
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

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

    function updateFees(uint256 _feesOnSell, uint256 _feesOnBuy)
        external
        onlyOwner
    {
        require(_feesOnSell <= feesOnSell, "Failed!!You can only decrease the fees");
        require(_feesOnBuy <= feesOnBuy, "Failed!!You can only decrease the fees");

        feesOnSell = _feesOnSell;
        feesOnBuy = _feesOnBuy;

        emit UpdateFees(feesOnSell, feesOnBuy);
    }

    function changePulseWallet(address _pulseWallet) external onlyOwner {
        require(
            _pulseWallet != pulseWallet,
            "Pulse wallet is already that address!!"
        );
        require(
            _pulseWallet != address(0),
            "Pulse wallet cannot be the zero address!!"
        );
        pulseWallet = _pulseWallet;

        emit PulseWalletChanged(pulseWallet);
    }

    function changeLiquidityWallet(address newpulseDevWallet)
        external
        onlypulseDevWallet
    {
        require(
            newpulseDevWallet != pulseDevWallet,
            "pulseDevWallet wallet is already that address"
        );
        require(
            newpulseDevWallet != address(0),
            "pulseDevWallet wallet cannot be the zero address"
        );
        pulseDevWallet = newpulseDevWallet;

        emit LiquiditydWalletChanged(pulseDevWallet);
    }

    bool public tradingEnabled;
    uint256 public tradingBlock;
    uint256 public tradingTime;

    function enableTrading() external onlypulseDevWallet {
        require(!tradingEnabled, "Trading already enabled.");

        uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(
            address(this),
            uniswapV2Router.WETH()
        );
        _approve(address(this), address(uniswapV2Pair), type(uint256).max);
        IERC20(uniswapV2Pair).approve(
            address(uniswapV2Router),
            type(uint256).max
        );

        uniswapV2Router.addLiquidityETH{value: address(this).balance}(
            address(this),
            balanceOf(address(this)),
            0,
            0,
            pulseliqDevWallet(),
            block.timestamp
        );

        maxWalletLimitEnabled = true;
        tradingEnabled = true;
        swapEnabled = true;
        tradingBlock = block.number;
        tradingTime = block.timestamp;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(
            tradingEnabled ||
                _isExcludedFromFees[from] ||
                _isExcludedFromFees[to],
            "Trading not yet enabled!"
        );

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

        if (canSwap && !swapping && to == uniswapV2Pair && swapEnabled) {
            swapping = true;

            swapAndSendPulse(contractTokenBalance);

            swapping = false;
        }

        uint256 sellfees;
        uint256 buyfees;


        if (block.timestamp > tradingTime + (30 minutes)) {
            // Stage normal
            buyfees = feesOnBuy;
            sellfees = feesOnSell;
        } else if (block.timestamp > tradingTime + (20 minutes)) {
            // Stage 3
            buyfees = 10;
            sellfees = 25;
        } else if (block.timestamp > tradingTime + (5 minutes)) {
            // Stage 2
            buyfees = 15;
            sellfees = 30;
        } else {
            // Stage 1
            buyfees = 20;
            sellfees = 40;
        }

        uint256 _totalFees;
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to] || swapping) {
            _totalFees = 0;
        } else if (from == uniswapV2Pair) {
            if (block.number <= tradingBlock) {
                _totalFees = 99;
            } else {
                _totalFees = buyfees;
            }
        } else if (to == uniswapV2Pair) {
            _totalFees = sellfees;
        } else {
            _totalFees = 0;
        }

        if (_totalFees > 0) {
            uint256 fees = (amount * _totalFees) / 100;
            amount = amount - fees;
            super._transfer(from, address(this), fees);

             pulseProvider += fees / 5;
        }

        if (maxWalletLimitEnabled) {
            if (
                !_isExcludedFromMaxWalletLimit[from] &&
                !_isExcludedFromMaxWalletLimit[to] &&
                to != uniswapV2Pair
            ) {
                uint256 balance = balanceOf(to);
                require(
                    balance + amount <= maxWalletAmount,
                    "MaxWallet: Recipient exceeds the maxWalletAmount"
                );
            }
        }

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

    function setSwapEnabled(bool _enabled) external onlyOwner {
        require(swapEnabled != _enabled, "swapEnabled already at this state.");
        swapEnabled = _enabled;
    }

    function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner {
        require(
            newAmount >= totalSupply() / 1_000_000,
            "SwapTokensAtAmount must be greater than 0.0001% of total supply"
        );
        require(
            newAmount <= totalSupply() / 1_000,
            "SwapTokensAtAmount must be greater than 0.1% of total supply"
        );
        swapTokensAtAmount = newAmount;

        emit SwapTokensAtAmountUpdated(swapTokensAtAmount);
    }

    function swapAndSendPulse(uint256 tokenAmount) private {
        uint256 initialBalance = address(this).balance;

        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

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

        uint256 newBalance = address(this).balance - initialBalance;
        uint256 pulseProviderAmount = (newBalance * pulseProvider) /
            tokenAmount;

        payable(pulseDevWallet).sendValue(pulseProviderAmount);
        payable(pulseWallet).sendValue(address(this).balance);

        pulseProvider = 0;

        emit SwapAndSendPulse(tokenAmount, newBalance);
    }

    mapping(address => bool) private _isExcludedFromMaxWalletLimit;
    bool public maxWalletLimitEnabled;
    uint256 public maxWalletAmount;

    event ExcludedFromMaxWalletLimit(address indexed account, bool isExcluded);
    event MaxWalletLimitStateChanged(bool maxWalletLimit);
    event MaxWalletLimitAmountChanged(uint256 maxWalletAmount);

    function setEnableMaxWalletLimit(bool enable) external onlyOwner {
        require(
            enable != maxWalletLimitEnabled,
            "Max wallet limit is already set to that state"
        );
        maxWalletLimitEnabled = enable;

        emit MaxWalletLimitStateChanged(maxWalletLimitEnabled);
    }

    function excludeFromMaxWallet(address account, bool exclude)
        external
        onlyOwner
    {
        require(
            _isExcludedFromMaxWalletLimit[account] != exclude,
            "Account is already set to that state"
        );
        require(account != address(this), "Can't set this address.");

        _isExcludedFromMaxWalletLimit[account] = exclude;

        emit ExcludedFromMaxWalletLimit(account, exclude);
    }

    function isExcludedFromMaxWalletLimit(address account)
        public
        view
        returns (bool)
    {
        return _isExcludedFromMaxWalletLimit[account];
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"pulseunauth","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludedFromMaxWalletLimit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"pulseDevWallet","type":"address"}],"name":"LiquiditydWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWalletAmount","type":"uint256"}],"name":"MaxWalletLimitAmountChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"maxWalletLimit","type":"bool"}],"name":"MaxWalletLimitStateChanged","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":"pulseWallet","type":"address"}],"name":"PulseWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethSend","type":"uint256"}],"name":"SwapAndSendPulse","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"swapTokensAtAmount","type":"uint256"}],"name":"SwapTokensAtAmountUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feesOnBuy","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"feesOnSell","type":"uint256"}],"name":"UpdateFees","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newpulseDevWallet","type":"address"}],"name":"changeLiquidityWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pulseWallet","type":"address"}],"name":"changePulseWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"exclude","type":"bool"}],"name":"excludeFromMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feesOnBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesOnSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromMaxWalletLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimitEnabled","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":[],"name":"pulseWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pulseliqDevWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"setEnableMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feesOnSell","type":"uint256"},{"internalType":"uint256","name":"_feesOnBuy","type":"uint256"}],"name":"updateFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405234801562000010575f80fd5b506040518060400160405280600881526020016750554c534520414960c01b8152506040518060400160405280600581526020016450554c534560d81b815250816003908162000061919062000771565b50600462000070828262000771565b503391508190506200009c57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b620000a78162000429565b504660011480620000b85750466005145b15620000ea57600680546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d1790556200018f565b466038036200011f57600680546001600160a01b0319167310ed43c718714eb63d5aa57b78b54704e256024e1790556200018f565b466061036200015457600680546001600160a01b03191673d99d1c33f9fc3444f8101754abc46c52416550d11790556200018f565b4662013881036200018b57600680546001600160a01b031916731b02da8cb0d097eb8d57a175b88c7d8b479975061790556200018f565b5f80fd5b600654620001aa9030906001600160a01b03165f196200047a565b60056009819055600a55600c80546001600160a01b0319908116732adbfa465c1d0b33e62933da83b7ffb6e9cf1eb317909155600d805490911673827f79f4f438ee2722fb7cf6cdc1f69d04865efa179055600160125f620002146005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905530815260129093528183208054851660019081179091557f1120e10407cab1193d7c5139d9aae5536deb3d83e855f25f8e42f811c01f56f78054861682179055600c54821684528284208054861682179055600d54909116835290822080549093168117909255600890620002be6005546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182015f908120805495151560ff1996871617905560089093527f046fee3d77c34a6c5e10c3be6dc4b132c30449dbf4f0bc07684896dd093342998054851660019081179091553084528284208054861682179055600c54821684528284208054861682179055600d5490911683529082208054909316179091556200035a601290565b6200036790600a62000948565b6200037790633b9aca006200095f565b9050620003b1620003906005546001600160a01b031690565b60646200039f84600f6200095f565b620003ab919062000979565b6200048e565b620003c53060646200039f8460556200095f565b6103e8620003d260025490565b620003df9060016200095f565b620003eb919062000979565b600e556064620003fa60025490565b620004079060026200095f565b62000413919062000979565b60145550600f805462ffff0019169055620009af565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b620004898383836001620004ca565b505050565b6001600160a01b038216620004b95760405163ec442f0560e01b81525f600482015260240162000093565b620004c65f8383620005a3565b5050565b6001600160a01b038416620004f55760405163e602df0560e01b81525f600482015260240162000093565b6001600160a01b0383166200052057604051634a1406b160e11b81525f600482015260240162000093565b6001600160a01b038085165f90815260016020908152604080832093871683529290522082905580156200059d57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516200059491815260200190565b60405180910390a35b50505050565b6001600160a01b038316620005d1578060025f828254620005c5919062000999565b90915550620006439050565b6001600160a01b0383165f9081526020819052604090205481811015620006255760405163391434e360e21b81526001600160a01b0385166004820152602481018290526044810183905260640162000093565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b03821662000661576002805482900390556200067f565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620006c591815260200190565b60405180910390a3505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620006fb57607f821691505b6020821081036200071a57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000489575f81815260208120601f850160051c81016020861015620007485750805b601f850160051c820191505b81811015620007695782815560010162000754565b505050505050565b81516001600160401b038111156200078d576200078d620006d2565b620007a5816200079e8454620006e6565b8462000720565b602080601f831160018114620007db575f8415620007c35750858301515b5f19600386901b1c1916600185901b17855562000769565b5f85815260208120601f198616915b828110156200080b57888601518255948401946001909101908401620007ea565b50858210156200082957878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200088d57815f190482111562000871576200087162000839565b808516156200087f57918102915b93841c939080029062000852565b509250929050565b5f82620008a55750600162000942565b81620008b357505f62000942565b8160018114620008cc5760028114620008d757620008f7565b600191505062000942565b60ff841115620008eb57620008eb62000839565b50506001821b62000942565b5060208310610133831016604e8410600b84101617156200091c575081810a62000942565b6200092883836200084d565b805f19048211156200093e576200093e62000839565b0290505b92915050565b5f6200095860ff84168362000895565b9392505050565b808202811582820484141762000942576200094262000839565b5f826200099457634e487b7160e01b5f52601260045260245ffd5b500490565b8082018082111562000942576200094262000839565b6122b980620009bd5f395ff3fe608060405260043610610220575f3560e01c8063715018a61161011e578063b8158d60116100a8578063e01af92c1161006d578063e01af92c14610674578063e2f4560514610693578063e4e44893146106a8578063f2fde38b146106bd578063f9d0831a146106dc575f80fd5b8063b8158d60146105c8578063c0246668146105dd578063cd51e6d4146105fc578063d2fcc00114610611578063dd62ed3e14610630575f80fd5b806395d89b41116100ee57806395d89b411461052a578063a8a69b9d1461053e578063a9059cbb14610575578063aa4bde2814610594578063afa4f3b2146105a9575f80fd5b8063715018a6146104c65780637ba54f1f146104da5780638a8c523c146104f95780638da5cb5b1461050d575f80fd5b8063313ce567116101aa57806351eefb7f1161016f57806351eefb7f1461041957806359ec4a53146104365780636db79437146104555780636ddd17131461047457806370a0823114610492575f80fd5b8063313ce5671461036a57806342966c681461038557806349bd5a5e146103a45780634ada218b146103c35780634fbee193146103e2575f80fd5b806318160ddd116101f057806318160ddd146102de57806321a9d82a146102f257806323b872dd1461030b5780632a6c7dba1461032a5780632ba33e771461034b575f80fd5b806306fdde031461022b578063095ea7b3146102555780630ce30294146102845780631694505e146102a7575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106fb565b60405161024c9190611eef565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611f4e565b61078b565b604051901515815260200161024c565b34801561028f575f80fd5b50610299600a5481565b60405190815260200161024c565b3480156102b2575f80fd5b506006546102c6906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b3480156102e9575f80fd5b50600254610299565b3480156102fd575f80fd5b506013546102749060ff1681565b348015610316575f80fd5b50610274610325366004611f78565b6107a4565b348015610335575f80fd5b50610349610344366004611fc3565b6107c7565b005b348015610356575f80fd5b50610349610365366004611fe5565b610890565b348015610375575f80fd5b506040516012815260200161024c565b348015610390575f80fd5b5061034961039f366004612000565b6109bb565b3480156103af575f80fd5b506007546102c6906001600160a01b031681565b3480156103ce575f80fd5b50600f546102749062010000900460ff1681565b3480156103ed575f80fd5b506102746103fc366004611fe5565b6001600160a01b03165f9081526008602052604090205460ff1690565b348015610424575f80fd5b50600d546001600160a01b03166102c6565b348015610441575f80fd5b50600c546102c6906001600160a01b031681565b348015610460575f80fd5b5061034961046f366004612017565b6109c8565b34801561047f575f80fd5b50600f5461027490610100900460ff1681565b34801561049d575f80fd5b506102996104ac366004611fe5565b6001600160a01b03165f9081526020819052604090205490565b3480156104d1575f80fd5b50610349610a5b565b3480156104e5575f80fd5b506103496104f4366004611fe5565b610a6e565b348015610504575f80fd5b50610349610ba7565b348015610518575f80fd5b506005546001600160a01b03166102c6565b348015610535575f80fd5b5061023f610f0d565b348015610549575f80fd5b50610274610558366004611fe5565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610580575f80fd5b5061027461058f366004611f4e565b610f1c565b34801561059f575f80fd5b5061029960145481565b3480156105b4575f80fd5b506103496105c3366004612000565b610f29565b3480156105d3575f80fd5b5061029960115481565b3480156105e8575f80fd5b506103496105f7366004612037565b61107d565b348015610607575f80fd5b5061029960105481565b34801561061c575f80fd5b5061034961062b366004612037565b611166565b34801561063b575f80fd5b5061029961064a36600461206e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561067f575f80fd5b5061034961068e366004611fc3565b611298565b34801561069e575f80fd5b50610299600e5481565b3480156106b3575f80fd5b5061029960095481565b3480156106c8575f80fd5b506103496106d7366004611fe5565b611327565b3480156106e7575f80fd5b506103496106f6366004611fe5565b611361565b60606003805461070a9061209a565b80601f01602080910402602001604051908101604052809291908181526020018280546107369061209a565b80156107815780601f1061075857610100808354040283529160200191610781565b820191905f5260205f20905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b5f33610798818585611462565b60019150505b92915050565b5f336107b1858285611474565b6107bc8585856114e9565b506001949350505050565b6107cf611951565b60135460ff161515811515036108425760405162461bcd60e51b815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201526c746f207468617420737461746560981b60648201526084015b60405180910390fd5b6013805460ff191682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f1906020015b60405180910390a150565b610898611951565b600c546001600160a01b03908116908216036109055760405162461bcd60e51b815260206004820152602660248201527f50756c73652077616c6c657420697320616c726561647920746861742061646460448201526572657373212160d01b6064820152608401610839565b6001600160a01b03811661096d5760405162461bcd60e51b815260206004820152602960248201527f50756c73652077616c6c65742063616e6e6f7420626520746865207a65726f2060448201526861646472657373212160b81b6064820152608401610839565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f6595afc528b65af5f4fa700d92061af9b68effad94d30611dcc4656aabe8da4090602001610885565b6109c5338261197e565b50565b6109d0611951565b600a548211156109f25760405162461bcd60e51b8152600401610839906120d2565b600954811115610a145760405162461bcd60e51b8152600401610839906120d2565b600a829055600981905560408051838152602081018390527f53482196ef67ac615caab1c3eca2c270acbfdcd75e57c5f24c1b98b10c8e6e04910160405180910390a15050565b610a63611951565b610a6c5f6119b6565b565b610a76611a07565b600d546001600160a01b0390811690821603610aea5760405162461bcd60e51b815260206004820152602d60248201527f70756c736544657657616c6c65742077616c6c657420697320616c726561647960448201526c2074686174206164647265737360981b6064820152608401610839565b6001600160a01b038116610b595760405162461bcd60e51b815260206004820152603060248201527f70756c736544657657616c6c65742077616c6c65742063616e6e6f742062652060448201526f746865207a65726f206164647265737360801b6064820152608401610839565b600d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fe2491a2abd15e120355965e3bef7a5e9570d67de30ffddb7fc7408d0cb5450f890602001610885565b610baf611a07565b600f5462010000900460ff1615610c085760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610839565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7c9190612118565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cff9190612118565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6d9190612118565b600780546001600160a01b0319166001600160a01b03929092169182179055610d999030905f19611462565b60075460065460405163095ea7b360e01b81526001600160a01b0391821660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610deb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0f9190612133565b506006546001600160a01b031663f305d7194730610e41816001600160a01b03165f9081526020819052604090205490565b5f80610e55600d546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610ebb573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610ee0919061214e565b50506013805460ff1916600117905550600f80546201010062ffff00199091161790554360105542601155565b60606004805461070a9061209a565b5f336107988185856114e9565b610f31611951565b620f4240610f3e60025490565b610f48919061218d565b811015610fbd5760405162461bcd60e51b815260206004820152603f60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3030303125206f6620746f74616c20737570706c79006064820152608401610839565b6103e8610fc960025490565b610fd3919061218d565b8111156110485760405162461bcd60e51b815260206004820152603c60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3125206f6620746f74616c20737570706c79000000006064820152608401610839565b600e8190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001610885565b611085611951565b6001600160a01b0382165f9081526008602052604090205481151560ff9091161515036111075760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610839565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b61116e611951565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036111e95760405162461bcd60e51b8152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f207468617420736044820152637461746560e01b6064820152608401610839565b306001600160a01b038316036112415760405162461bcd60e51b815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610839565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c910161115a565b6112a0611951565b801515600f60019054906101000a900460ff1615150361130d5760405162461bcd60e51b815260206004820152602260248201527f73776170456e61626c656420616c726561647920617420746869732073746174604482015261329760f11b6064820152608401610839565b600f80549115156101000261ff0019909216919091179055565b61132f611951565b6001600160a01b03811661135857604051631e4fbdf760e01b81525f6004820152602401610839565b6109c5816119b6565b611369611951565b6001600160a01b038116611381576109c53347611a34565b6040516370a0823160e01b815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156113c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113eb91906121ac565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015611438573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145c9190612133565b50505050565b61146f8383836001611ac7565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461145c57818110156114db57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610839565b61145c84848484035f611ac7565b6001600160a01b03831661154d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610839565b6001600160a01b0382166115af5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610839565b600f5462010000900460ff16806115dd57506001600160a01b0383165f9081526008602052604090205460ff165b806115ff57506001600160a01b0382165f9081526008602052604090205460ff165b61164b5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610839565b805f0361165d5761146f83835f611b99565b305f90815260208190526040902054600e54811080159081906116835750600f5460ff16155b801561169c57506007546001600160a01b038581169116145b80156116af5750600f54610100900460ff165b156116d557600f805460ff191660011790556116ca82611bf6565b600f805460ff191690555b5f806011546107086116e791906121c3565b4211156116fc575050600954600a5490611748565b60115461170b906104b06121c3565b42111561171e575060199050600a611748565b60115461172d9061012c6121c3565b4211156117405750601e9050600f611748565b506028905060145b6001600160a01b0387165f9081526008602052604081205460ff168061178557506001600160a01b0387165f9081526008602052604090205460ff165b806117925750600f5460ff165b1561179e57505f6117ec565b6007546001600160a01b03908116908916036117cc5760105443116117c5575060636117ec565b50806117ec565b6007546001600160a01b03908116908816036117e95750816117ec565b505f5b8015611844575f60646117ff83896121d6565b611809919061218d565b905061181581886121ed565b9650611822893083611b99565b61182d60058261218d565b600b5f82825461183d91906121c3565b9091555050505b60135460ff161561193c576001600160a01b0388165f9081526012602052604090205460ff1615801561188f57506001600160a01b0387165f9081526012602052604090205460ff16155b80156118a957506007546001600160a01b03888116911614155b1561193c576001600160a01b0387165f908152602081905260409020546014546118d388836121c3565b111561193a5760405162461bcd60e51b815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201526f081b585e15d85b1b195d105b5bdd5b9d60821b6064820152608401610839565b505b611947888888611b99565b5050505050505050565b6005546001600160a01b03163314610a6c5760405163118cdaa760e01b8152336004820152602401610839565b6001600160a01b0382166119a757604051634b637e8f60e11b81525f6004820152602401610839565b6119b2825f83611dc9565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600d546001600160a01b03163314610a6c5760405163d599abcf60e01b8152336004820152602401610839565b80471015611a575760405163cd78605960e01b8152306004820152602401610839565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611aa0576040519150601f19603f3d011682016040523d82523d5f602084013e611aa5565b606091505b505090508061146f57604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b038416611af05760405163e602df0560e01b81525f6004820152602401610839565b6001600160a01b038316611b1957604051634a1406b160e11b81525f6004820152602401610839565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561145c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b8b91815260200190565b60405180910390a350505050565b6001600160a01b038316611bc257604051634b637e8f60e11b81525f6004820152602401610839565b6001600160a01b038216611beb5760405163ec442f0560e01b81525f6004820152602401610839565b61146f838383611dc9565b60408051600280825260608201835247925f92919060208301908036833701905050905030815f81518110611c2d57611c2d612200565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611c84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ca89190612118565b81600181518110611cbb57611cbb612200565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac94790611d009086905f90869030904290600401612214565b5f604051808303815f87803b158015611d17575f80fd5b505af1158015611d29573d5f803e3d5ffd5b505050505f8247611d3a91906121ed565b90505f84600b5483611d4c91906121d6565b611d56919061218d565b600d54909150611d6f906001600160a01b031682611a34565b600c54611d85906001600160a01b031647611a34565b5f600b5560408051868152602081018490527f0e797df56d68ac1561f861026b1398693883f53c87f97388ab69b0cf9c50f453910160405180910390a15050505050565b6001600160a01b038316611df3578060025f828254611de891906121c3565b90915550611e639050565b6001600160a01b0383165f9081526020819052604090205481811015611e455760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610839565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611e7f57600280548290039055611e9d565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ee291815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015611f1a57858101830151858201604001528201611efe565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109c5575f80fd5b5f8060408385031215611f5f575f80fd5b8235611f6a81611f3a565b946020939093013593505050565b5f805f60608486031215611f8a575f80fd5b8335611f9581611f3a565b92506020840135611fa581611f3a565b929592945050506040919091013590565b80151581146109c5575f80fd5b5f60208284031215611fd3575f80fd5b8135611fde81611fb6565b9392505050565b5f60208284031215611ff5575f80fd5b8135611fde81611f3a565b5f60208284031215612010575f80fd5b5035919050565b5f8060408385031215612028575f80fd5b50508035926020909101359150565b5f8060408385031215612048575f80fd5b823561205381611f3a565b9150602083013561206381611fb6565b809150509250929050565b5f806040838503121561207f575f80fd5b823561208a81611f3a565b9150602083013561206381611f3a565b600181811c908216806120ae57607f821691505b6020821081036120cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526026908201527f4661696c65642121596f752063616e206f6e6c7920646563726561736520746860408201526565206665657360d01b606082015260800190565b5f60208284031215612128575f80fd5b8151611fde81611f3a565b5f60208284031215612143575f80fd5b8151611fde81611fb6565b5f805f60608486031215612160575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52601160045260245ffd5b5f826121a757634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156121bc575f80fd5b5051919050565b8082018082111561079e5761079e612179565b808202811582820484141761079e5761079e612179565b8181038181111561079e5761079e612179565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156122625784516001600160a01b03168352938301939183019160010161223d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122085729b3cb61ac9dac17dfa8eeaf4105d17bfbe61365b43c4d39c9ae1064dc33a64736f6c63430008150033

Deployed Bytecode

0x608060405260043610610220575f3560e01c8063715018a61161011e578063b8158d60116100a8578063e01af92c1161006d578063e01af92c14610674578063e2f4560514610693578063e4e44893146106a8578063f2fde38b146106bd578063f9d0831a146106dc575f80fd5b8063b8158d60146105c8578063c0246668146105dd578063cd51e6d4146105fc578063d2fcc00114610611578063dd62ed3e14610630575f80fd5b806395d89b41116100ee57806395d89b411461052a578063a8a69b9d1461053e578063a9059cbb14610575578063aa4bde2814610594578063afa4f3b2146105a9575f80fd5b8063715018a6146104c65780637ba54f1f146104da5780638a8c523c146104f95780638da5cb5b1461050d575f80fd5b8063313ce567116101aa57806351eefb7f1161016f57806351eefb7f1461041957806359ec4a53146104365780636db79437146104555780636ddd17131461047457806370a0823114610492575f80fd5b8063313ce5671461036a57806342966c681461038557806349bd5a5e146103a45780634ada218b146103c35780634fbee193146103e2575f80fd5b806318160ddd116101f057806318160ddd146102de57806321a9d82a146102f257806323b872dd1461030b5780632a6c7dba1461032a5780632ba33e771461034b575f80fd5b806306fdde031461022b578063095ea7b3146102555780630ce30294146102845780631694505e146102a7575f80fd5b3661022757005b5f80fd5b348015610236575f80fd5b5061023f6106fb565b60405161024c9190611eef565b60405180910390f35b348015610260575f80fd5b5061027461026f366004611f4e565b61078b565b604051901515815260200161024c565b34801561028f575f80fd5b50610299600a5481565b60405190815260200161024c565b3480156102b2575f80fd5b506006546102c6906001600160a01b031681565b6040516001600160a01b03909116815260200161024c565b3480156102e9575f80fd5b50600254610299565b3480156102fd575f80fd5b506013546102749060ff1681565b348015610316575f80fd5b50610274610325366004611f78565b6107a4565b348015610335575f80fd5b50610349610344366004611fc3565b6107c7565b005b348015610356575f80fd5b50610349610365366004611fe5565b610890565b348015610375575f80fd5b506040516012815260200161024c565b348015610390575f80fd5b5061034961039f366004612000565b6109bb565b3480156103af575f80fd5b506007546102c6906001600160a01b031681565b3480156103ce575f80fd5b50600f546102749062010000900460ff1681565b3480156103ed575f80fd5b506102746103fc366004611fe5565b6001600160a01b03165f9081526008602052604090205460ff1690565b348015610424575f80fd5b50600d546001600160a01b03166102c6565b348015610441575f80fd5b50600c546102c6906001600160a01b031681565b348015610460575f80fd5b5061034961046f366004612017565b6109c8565b34801561047f575f80fd5b50600f5461027490610100900460ff1681565b34801561049d575f80fd5b506102996104ac366004611fe5565b6001600160a01b03165f9081526020819052604090205490565b3480156104d1575f80fd5b50610349610a5b565b3480156104e5575f80fd5b506103496104f4366004611fe5565b610a6e565b348015610504575f80fd5b50610349610ba7565b348015610518575f80fd5b506005546001600160a01b03166102c6565b348015610535575f80fd5b5061023f610f0d565b348015610549575f80fd5b50610274610558366004611fe5565b6001600160a01b03165f9081526012602052604090205460ff1690565b348015610580575f80fd5b5061027461058f366004611f4e565b610f1c565b34801561059f575f80fd5b5061029960145481565b3480156105b4575f80fd5b506103496105c3366004612000565b610f29565b3480156105d3575f80fd5b5061029960115481565b3480156105e8575f80fd5b506103496105f7366004612037565b61107d565b348015610607575f80fd5b5061029960105481565b34801561061c575f80fd5b5061034961062b366004612037565b611166565b34801561063b575f80fd5b5061029961064a36600461206e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b34801561067f575f80fd5b5061034961068e366004611fc3565b611298565b34801561069e575f80fd5b50610299600e5481565b3480156106b3575f80fd5b5061029960095481565b3480156106c8575f80fd5b506103496106d7366004611fe5565b611327565b3480156106e7575f80fd5b506103496106f6366004611fe5565b611361565b60606003805461070a9061209a565b80601f01602080910402602001604051908101604052809291908181526020018280546107369061209a565b80156107815780601f1061075857610100808354040283529160200191610781565b820191905f5260205f20905b81548152906001019060200180831161076457829003601f168201915b5050505050905090565b5f33610798818585611462565b60019150505b92915050565b5f336107b1858285611474565b6107bc8585856114e9565b506001949350505050565b6107cf611951565b60135460ff161515811515036108425760405162461bcd60e51b815260206004820152602d60248201527f4d61782077616c6c6574206c696d697420697320616c7265616479207365742060448201526c746f207468617420737461746560981b60648201526084015b60405180910390fd5b6013805460ff191682151590811790915560405160ff909116151581527f670f884265aba2d05e7c26efbc42f8365effc4cb3fcfcefddba0c0b71a6231f1906020015b60405180910390a150565b610898611951565b600c546001600160a01b03908116908216036109055760405162461bcd60e51b815260206004820152602660248201527f50756c73652077616c6c657420697320616c726561647920746861742061646460448201526572657373212160d01b6064820152608401610839565b6001600160a01b03811661096d5760405162461bcd60e51b815260206004820152602960248201527f50756c73652077616c6c65742063616e6e6f7420626520746865207a65726f2060448201526861646472657373212160b81b6064820152608401610839565b600c80546001600160a01b0319166001600160a01b0383169081179091556040519081527f6595afc528b65af5f4fa700d92061af9b68effad94d30611dcc4656aabe8da4090602001610885565b6109c5338261197e565b50565b6109d0611951565b600a548211156109f25760405162461bcd60e51b8152600401610839906120d2565b600954811115610a145760405162461bcd60e51b8152600401610839906120d2565b600a829055600981905560408051838152602081018390527f53482196ef67ac615caab1c3eca2c270acbfdcd75e57c5f24c1b98b10c8e6e04910160405180910390a15050565b610a63611951565b610a6c5f6119b6565b565b610a76611a07565b600d546001600160a01b0390811690821603610aea5760405162461bcd60e51b815260206004820152602d60248201527f70756c736544657657616c6c65742077616c6c657420697320616c726561647960448201526c2074686174206164647265737360981b6064820152608401610839565b6001600160a01b038116610b595760405162461bcd60e51b815260206004820152603060248201527f70756c736544657657616c6c65742077616c6c65742063616e6e6f742062652060448201526f746865207a65726f206164647265737360801b6064820152608401610839565b600d80546001600160a01b0319166001600160a01b0383169081179091556040519081527fe2491a2abd15e120355965e3bef7a5e9570d67de30ffddb7fc7408d0cb5450f890602001610885565b610baf611a07565b600f5462010000900460ff1615610c085760405162461bcd60e51b815260206004820152601860248201527f54726164696e6720616c726561647920656e61626c65642e00000000000000006044820152606401610839565b60065f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c58573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7c9190612118565b6001600160a01b031663c9c653963060065f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cdb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610cff9190612118565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610d49573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d6d9190612118565b600780546001600160a01b0319166001600160a01b03929092169182179055610d999030905f19611462565b60075460065460405163095ea7b360e01b81526001600160a01b0391821660048201525f19602482015291169063095ea7b3906044016020604051808303815f875af1158015610deb573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e0f9190612133565b506006546001600160a01b031663f305d7194730610e41816001600160a01b03165f9081526020819052604090205490565b5f80610e55600d546001600160a01b031690565b60405160e088901b6001600160e01b03191681526001600160a01b03958616600482015260248101949094526044840192909252606483015290911660848201524260a482015260c40160606040518083038185885af1158015610ebb573d5f803e3d5ffd5b50505050506040513d601f19601f82011682018060405250810190610ee0919061214e565b50506013805460ff1916600117905550600f80546201010062ffff00199091161790554360105542601155565b60606004805461070a9061209a565b5f336107988185856114e9565b610f31611951565b620f4240610f3e60025490565b610f48919061218d565b811015610fbd5760405162461bcd60e51b815260206004820152603f60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3030303125206f6620746f74616c20737570706c79006064820152608401610839565b6103e8610fc960025490565b610fd3919061218d565b8111156110485760405162461bcd60e51b815260206004820152603c60248201527f53776170546f6b656e734174416d6f756e74206d75737420626520677265617460448201527f6572207468616e20302e3125206f6620746f74616c20737570706c79000000006064820152608401610839565b600e8190556040518181527f7c26bfee26f82e8cb57af48f4019cc64582db6fac7bad778433f10572ae8b14590602001610885565b611085611951565b6001600160a01b0382165f9081526008602052604090205481151560ff9091161515036111075760405162461bcd60e51b815260206004820152602a60248201527f4163636f756e7420697320616c7265616479207468652076616c7565206f6620604482015269276578636c756465642760b01b6064820152608401610839565b6001600160a01b0382165f81815260086020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b61116e611951565b6001600160a01b0382165f9081526012602052604090205481151560ff9091161515036111e95760405162461bcd60e51b8152602060048201526024808201527f4163636f756e7420697320616c72656164792073657420746f207468617420736044820152637461746560e01b6064820152608401610839565b306001600160a01b038316036112415760405162461bcd60e51b815260206004820152601760248201527f43616e277420736574207468697320616464726573732e0000000000000000006044820152606401610839565b6001600160a01b0382165f81815260126020908152604091829020805460ff191685151590811790915591519182527f1d9a11e204b58ad56c619c61600e42167624659d218f0143f1f64956b0daae6c910161115a565b6112a0611951565b801515600f60019054906101000a900460ff1615150361130d5760405162461bcd60e51b815260206004820152602260248201527f73776170456e61626c656420616c726561647920617420746869732073746174604482015261329760f11b6064820152608401610839565b600f80549115156101000261ff0019909216919091179055565b61132f611951565b6001600160a01b03811661135857604051631e4fbdf760e01b81525f6004820152602401610839565b6109c5816119b6565b611369611951565b6001600160a01b038116611381576109c53347611a34565b6040516370a0823160e01b815230600482015281905f906001600160a01b038316906370a0823190602401602060405180830381865afa1580156113c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113eb91906121ac565b60405163a9059cbb60e01b8152336004820152602481018290529091506001600160a01b0383169063a9059cbb906044016020604051808303815f875af1158015611438573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061145c9190612133565b50505050565b61146f8383836001611ac7565b505050565b6001600160a01b038381165f908152600160209081526040808320938616835292905220545f19811461145c57818110156114db57604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610839565b61145c84848484035f611ac7565b6001600160a01b03831661154d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610839565b6001600160a01b0382166115af5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610839565b600f5462010000900460ff16806115dd57506001600160a01b0383165f9081526008602052604090205460ff165b806115ff57506001600160a01b0382165f9081526008602052604090205460ff165b61164b5760405162461bcd60e51b815260206004820152601860248201527f54726164696e67206e6f742079657420656e61626c65642100000000000000006044820152606401610839565b805f0361165d5761146f83835f611b99565b305f90815260208190526040902054600e54811080159081906116835750600f5460ff16155b801561169c57506007546001600160a01b038581169116145b80156116af5750600f54610100900460ff165b156116d557600f805460ff191660011790556116ca82611bf6565b600f805460ff191690555b5f806011546107086116e791906121c3565b4211156116fc575050600954600a5490611748565b60115461170b906104b06121c3565b42111561171e575060199050600a611748565b60115461172d9061012c6121c3565b4211156117405750601e9050600f611748565b506028905060145b6001600160a01b0387165f9081526008602052604081205460ff168061178557506001600160a01b0387165f9081526008602052604090205460ff165b806117925750600f5460ff165b1561179e57505f6117ec565b6007546001600160a01b03908116908916036117cc5760105443116117c5575060636117ec565b50806117ec565b6007546001600160a01b03908116908816036117e95750816117ec565b505f5b8015611844575f60646117ff83896121d6565b611809919061218d565b905061181581886121ed565b9650611822893083611b99565b61182d60058261218d565b600b5f82825461183d91906121c3565b9091555050505b60135460ff161561193c576001600160a01b0388165f9081526012602052604090205460ff1615801561188f57506001600160a01b0387165f9081526012602052604090205460ff16155b80156118a957506007546001600160a01b03888116911614155b1561193c576001600160a01b0387165f908152602081905260409020546014546118d388836121c3565b111561193a5760405162461bcd60e51b815260206004820152603060248201527f4d617857616c6c65743a20526563697069656e7420657863656564732074686560448201526f081b585e15d85b1b195d105b5bdd5b9d60821b6064820152608401610839565b505b611947888888611b99565b5050505050505050565b6005546001600160a01b03163314610a6c5760405163118cdaa760e01b8152336004820152602401610839565b6001600160a01b0382166119a757604051634b637e8f60e11b81525f6004820152602401610839565b6119b2825f83611dc9565b5050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600d546001600160a01b03163314610a6c5760405163d599abcf60e01b8152336004820152602401610839565b80471015611a575760405163cd78605960e01b8152306004820152602401610839565b5f826001600160a01b0316826040515f6040518083038185875af1925050503d805f8114611aa0576040519150601f19603f3d011682016040523d82523d5f602084013e611aa5565b606091505b505090508061146f57604051630a12f52160e11b815260040160405180910390fd5b6001600160a01b038416611af05760405163e602df0560e01b81525f6004820152602401610839565b6001600160a01b038316611b1957604051634a1406b160e11b81525f6004820152602401610839565b6001600160a01b038085165f908152600160209081526040808320938716835292905220829055801561145c57826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611b8b91815260200190565b60405180910390a350505050565b6001600160a01b038316611bc257604051634b637e8f60e11b81525f6004820152602401610839565b6001600160a01b038216611beb5760405163ec442f0560e01b81525f6004820152602401610839565b61146f838383611dc9565b60408051600280825260608201835247925f92919060208301908036833701905050905030815f81518110611c2d57611c2d612200565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611c84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611ca89190612118565b81600181518110611cbb57611cbb612200565b6001600160a01b03928316602091820292909201015260065460405163791ac94760e01b815291169063791ac94790611d009086905f90869030904290600401612214565b5f604051808303815f87803b158015611d17575f80fd5b505af1158015611d29573d5f803e3d5ffd5b505050505f8247611d3a91906121ed565b90505f84600b5483611d4c91906121d6565b611d56919061218d565b600d54909150611d6f906001600160a01b031682611a34565b600c54611d85906001600160a01b031647611a34565b5f600b5560408051868152602081018490527f0e797df56d68ac1561f861026b1398693883f53c87f97388ab69b0cf9c50f453910160405180910390a15050505050565b6001600160a01b038316611df3578060025f828254611de891906121c3565b90915550611e639050565b6001600160a01b0383165f9081526020819052604090205481811015611e455760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610839565b6001600160a01b0384165f9081526020819052604090209082900390555b6001600160a01b038216611e7f57600280548290039055611e9d565b6001600160a01b0382165f9081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611ee291815260200190565b60405180910390a3505050565b5f6020808352835180828501525f5b81811015611f1a57858101830151858201604001528201611efe565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146109c5575f80fd5b5f8060408385031215611f5f575f80fd5b8235611f6a81611f3a565b946020939093013593505050565b5f805f60608486031215611f8a575f80fd5b8335611f9581611f3a565b92506020840135611fa581611f3a565b929592945050506040919091013590565b80151581146109c5575f80fd5b5f60208284031215611fd3575f80fd5b8135611fde81611fb6565b9392505050565b5f60208284031215611ff5575f80fd5b8135611fde81611f3a565b5f60208284031215612010575f80fd5b5035919050565b5f8060408385031215612028575f80fd5b50508035926020909101359150565b5f8060408385031215612048575f80fd5b823561205381611f3a565b9150602083013561206381611fb6565b809150509250929050565b5f806040838503121561207f575f80fd5b823561208a81611f3a565b9150602083013561206381611f3a565b600181811c908216806120ae57607f821691505b6020821081036120cc57634e487b7160e01b5f52602260045260245ffd5b50919050565b60208082526026908201527f4661696c65642121596f752063616e206f6e6c7920646563726561736520746860408201526565206665657360d01b606082015260800190565b5f60208284031215612128575f80fd5b8151611fde81611f3a565b5f60208284031215612143575f80fd5b8151611fde81611fb6565b5f805f60608486031215612160575f80fd5b8351925060208401519150604084015190509250925092565b634e487b7160e01b5f52601160045260245ffd5b5f826121a757634e487b7160e01b5f52601260045260245ffd5b500490565b5f602082840312156121bc575f80fd5b5051919050565b8082018082111561079e5761079e612179565b808202811582820484141761079e5761079e612179565b8181038181111561079e5761079e612179565b634e487b7160e01b5f52603260045260245ffd5b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156122625784516001600160a01b03168352938301939183019160010161223d565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122085729b3cb61ac9dac17dfa8eeaf4105d17bfbe61365b43c4d39c9ae1064dc33a64736f6c63430008150033

Deployed Bytecode Sourcemap

39345:12475:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26534:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28827:190;;;;;;;;;;-1:-1:-1;28827:190:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;28827:190:0;1023:187:1;39609:25:0;;;;;;;;;;;;;;;;;;;1361::1;;;1349:2;1334:18;39609:25:0;1215:177:1;39432:41:0;;;;;;;;;;-1:-1:-1;39432:41:0;;;;-1:-1:-1;;;;;39432:41:0;;;;;;-1:-1:-1;;;;;1587:32:1;;;1569:51;;1557:2;1542:18;39432:41:0;1397:229:1;27636:99:0;;;;;;;;;;-1:-1:-1;27715:12:0;;27636:99;;50567:33;;;;;;;;;;-1:-1:-1;50567:33:0;;;;;;;;29595:249;;;;;;;;;;-1:-1:-1;29595:249:0;;;;;:::i;:::-;;:::i;50854:318::-;;;;;;;;;;-1:-1:-1;50854:318:0;;;;;:::i;:::-;;:::i;:::-;;44213:416;;;;;;;;;;-1:-1:-1;44213:416:0;;;;;:::i;:::-;;:::i;27487:84::-;;;;;;;;;;-1:-1:-1;27487:84:0;;27561:2;2855:36:1;;2843:2;2828:18;27487:84:0;2713:184:1;42554:83:0;;;;;;;;;;-1:-1:-1;42554:83:0;;;;;:::i;:::-;;:::i;39480:28::-;;;;;;;;;;-1:-1:-1;39480:28:0;;;;-1:-1:-1;;;;;39480:28:0;;;45145:26;;;;;;;;;;-1:-1:-1;45145:26:0;;;;;;;;;;;43667:126;;;;;;;;;;-1:-1:-1;43667:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;43757:28:0;43733:4;43757:28;;;:19;:28;;;;;;;;;43667:126;43192:107;;;;;;;;;;-1:-1:-1;43277:14:0;;-1:-1:-1;;;;;43277:14:0;43192:107;;39681:26;;;;;;;;;;-1:-1:-1;39681:26:0;;;;-1:-1:-1;;;;;39681:26:0;;;43801:404;;;;;;;;;;-1:-1:-1;43801:404:0;;;;;:::i;:::-;;:::i;39823:23::-;;;;;;;;;;-1:-1:-1;39823:23:0;;;;;;;;;;;27798:118;;;;;;;;;;-1:-1:-1;27798:118:0;;;;;:::i;:::-;-1:-1:-1;;;;;27890:18:0;27863:7;27890:18;;;;;;;;;;;;27798:118;38241:103;;;;;;;;;;;;;:::i;44637:500::-;;;;;;;;;;-1:-1:-1;44637:500:0;;;;;:::i;:::-;;:::i;45247:911::-;;;;;;;;;;;;;:::i;37566:87::-;;;;;;;;;;-1:-1:-1;37639:6:0;;-1:-1:-1;;;;;37639:6:0;37566:87;;26744:95;;;;;;;;;;;;;:::i;51639:178::-;;;;;;;;;;-1:-1:-1;51639:178:0;;;;;:::i;:::-;-1:-1:-1;;;;;51771:38:0;51742:4;51771:38;;;:29;:38;;;;;;;;;51639:178;28121:182;;;;;;;;;;-1:-1:-1;28121:182:0;;;;;:::i;:::-;;:::i;50607:30::-;;;;;;;;;;;;;;;;49137:498;;;;;;;;;;-1:-1:-1;49137:498:0;;;;;:::i;:::-;;:::i;45212:26::-;;;;;;;;;;;;;;;;43307:352;;;;;;;;;;-1:-1:-1;43307:352:0;;;;;:::i;:::-;;:::i;45178:27::-;;;;;;;;;;;;;;;;51180:451;;;;;;;;;;-1:-1:-1;51180:451:0;;;;;:::i;:::-;;:::i;28366:142::-;;;;;;;;;;-1:-1:-1;28366:142:0;;;;;:::i;:::-;-1:-1:-1;;;;;28473:18:0;;;28446:7;28473:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;28366:142;48949:180;;;;;;;;;;-1:-1:-1;48949:180:0;;;;;:::i;:::-;;:::i;39753:33::-;;;;;;;;;;;;;;;;39578:24;;;;;;;;;;;;;;;;38499:220;;;;;;;;;;-1:-1:-1;38499:220:0;;;;;:::i;:::-;;:::i;42645:364::-;;;;;;;;;;-1:-1:-1;42645:364:0;;;;;:::i;:::-;;:::i;26534:91::-;26579:13;26612:5;26605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26534:91;:::o;28827:190::-;28900:4;24349:10;28956:31;24349:10;28972:7;28981:5;28956:8;:31::i;:::-;29005:4;28998:11;;;28827:190;;;;;:::o;29595:249::-;29682:4;24349:10;29740:37;29756:4;24349:10;29771:5;29740:15;:37::i;:::-;29788:26;29798:4;29804:2;29808:5;29788:9;:26::i;:::-;-1:-1:-1;29832:4:0;;29595:249;-1:-1:-1;;;;29595:249:0:o;50854:318::-;37452:13;:11;:13::i;:::-;50962:21:::1;::::0;::::1;;50952:31;;::::0;::::1;;::::0;50930:126:::1;;;::::0;-1:-1:-1;;;50930:126:0;;4915:2:1;50930:126:0::1;::::0;::::1;4897:21:1::0;4954:2;4934:18;;;4927:30;4993:34;4973:18;;;4966:62;-1:-1:-1;;;5044:18:1;;;5037:43;5097:19;;50930:126:0::1;;;;;;;;;51067:21;:30:::0;;-1:-1:-1;;51067:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51115:49:::1;::::0;51067:30:::1;51142:21:::0;;;1188:14:1;1181:22;1163:41;;51115:49:0::1;::::0;1151:2:1;1136:18;51115:49:0::1;;;;;;;;50854:318:::0;:::o;44213:416::-;37452:13;:11;:13::i;:::-;44330:11:::1;::::0;-1:-1:-1;;;;;44330:11:0;;::::1;44314:27:::0;;::::1;::::0;44292:115:::1;;;::::0;-1:-1:-1;;;44292:115:0;;5329:2:1;44292:115:0::1;::::0;::::1;5311:21:1::0;5368:2;5348:18;;;5341:30;5407:34;5387:18;;;5380:62;-1:-1:-1;;;5458:18:1;;;5451:36;5504:19;;44292:115:0::1;5127:402:1::0;44292:115:0::1;-1:-1:-1::0;;;;;44440:26:0;::::1;44418:117;;;::::0;-1:-1:-1;;;44418:117:0;;5736:2:1;44418:117:0::1;::::0;::::1;5718:21:1::0;5775:2;5755:18;;;5748:30;5814:34;5794:18;;;5787:62;-1:-1:-1;;;5865:18:1;;;5858:39;5914:19;;44418:117:0::1;5534:405:1::0;44418:117:0::1;44546:11;:26:::0;;-1:-1:-1;;;;;;44546:26:0::1;-1:-1:-1::0;;;;;44546:26:0;::::1;::::0;;::::1;::::0;;;44590:31:::1;::::0;1569:51:1;;;44590:31:0::1;::::0;1557:2:1;1542:18;44590:31:0::1;1397:229:1::0;42554:83:0;42604:25;42610:10;42622:6;42604:5;:25::i;:::-;42554:83;:::o;43801:404::-;37452:13;:11;:13::i;:::-;43938:10:::1;;43923:11;:25;;43915:76;;;;-1:-1:-1::0;;;43915:76:0::1;;;;;;;:::i;:::-;44024:9;;44010:10;:23;;44002:74;;;;-1:-1:-1::0;;;44002:74:0::1;;;;;;;:::i;:::-;44089:10;:24:::0;;;44124:9:::1;:22:::0;;;44164:33:::1;::::0;;6525:25:1;;;6581:2;6566:18;;6559:34;;;44164:33:0::1;::::0;6498:18:1;44164:33:0::1;;;;;;;43801:404:::0;;:::o;38241:103::-;37452:13;:11;:13::i;:::-;38306:30:::1;38333:1;38306:18;:30::i;:::-;38241:103::o:0;44637:500::-;40320:17;:15;:17::i;:::-;44800:14:::1;::::0;-1:-1:-1;;;;;44800:14:0;;::::1;44779:35:::0;;::::1;::::0;44757:130:::1;;;::::0;-1:-1:-1;;;44757:130:0;;6806:2:1;44757:130:0::1;::::0;::::1;6788:21:1::0;6845:2;6825:18;;;6818:30;6884:34;6864:18;;;6857:62;-1:-1:-1;;;6935:18:1;;;6928:43;6988:19;;44757:130:0::1;6604:409:1::0;44757:130:0::1;-1:-1:-1::0;;;;;44920:31:0;::::1;44898:129;;;::::0;-1:-1:-1;;;44898:129:0;;7220:2:1;44898:129:0::1;::::0;::::1;7202:21:1::0;7259:2;7239:18;;;7232:30;7298:34;7278:18;;;7271:62;-1:-1:-1;;;7349:18:1;;;7342:46;7405:19;;44898:129:0::1;7018:412:1::0;44898:129:0::1;45038:14;:34:::0;;-1:-1:-1;;;;;;45038:34:0::1;-1:-1:-1::0;;;;;45038:34:0;::::1;::::0;;::::1;::::0;;;45090:39:::1;::::0;1569:51:1;;;45090:39:0::1;::::0;1557:2:1;1542:18;45090:39:0::1;1397:229:1::0;45247:911:0;40320:17;:15;:17::i;:::-;45320:14:::1;::::0;;;::::1;;;45319:15;45311:52;;;::::0;-1:-1:-1;;;45311:52:0;;7637:2:1;45311:52:0::1;::::0;::::1;7619:21:1::0;7676:2;7656:18;;;7649:30;7715:26;7695:18;;;7688:54;7759:18;;45311:52:0::1;7435:348:1::0;45311:52:0::1;45410:15;;;;;;;;;-1:-1:-1::0;;;;;45410:15:0::1;-1:-1:-1::0;;;;;45410:23:0::1;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;45392:55:0::1;;45470:4;45490:15;;;;;;;;;-1:-1:-1::0;;;;;45490:15:0::1;-1:-1:-1::0;;;;;45490:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45392:131;::::0;-1:-1:-1;;;;;;45392:131:0::1;::::0;;;;;;-1:-1:-1;;;;;8274:15:1;;;45392:131:0::1;::::0;::::1;8256:34:1::0;8326:15;;8306:18;;;8299:43;8191:18;;45392:131:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45376:13;:147:::0;;-1:-1:-1;;;;;;45376:147:0::1;-1:-1:-1::0;;;;;45376:147:0;;;::::1;::::0;;::::1;::::0;;45534:66:::1;::::0;45551:4:::1;::::0;-1:-1:-1;;45534:8:0::1;:66::i;:::-;45618:13;::::0;45663:15:::1;::::0;45611:111:::1;::::0;-1:-1:-1;;;45611:111:0;;-1:-1:-1;;;;;45663:15:0;;::::1;45611:111;::::0;::::1;8527:51:1::0;-1:-1:-1;;8594:18:1;;;8587:34;45618:13:0;::::1;::::0;45611:29:::1;::::0;8500:18:1;;45611:111:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;45735:15:0::1;::::0;-1:-1:-1;;;;;45735:15:0::1;:31;45774:21;45819:4;45839:24;45819:4:::0;-1:-1:-1;;;;;27890:18:0;27863:7;27890:18;;;;;;;;;;;;27798:118;45839:24:::1;45878:1;45894::::0;45910:19:::1;43277:14:::0;;-1:-1:-1;;;;;43277:14:0;;43192:107;45910:19:::1;45735:235;::::0;::::1;::::0;;;-1:-1:-1;;;;;;45735:235:0;;;-1:-1:-1;;;;;9241:15:1;;;45735:235:0::1;::::0;::::1;9223:34:1::0;9273:18;;;9266:34;;;;9316:18;;;9309:34;;;;9359:18;;;9352:34;9423:15;;;9402:19;;;9395:44;45944:15:0::1;9455:19:1::0;;;9448:35;9157:19;;45735:235:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;45983:21:0::1;:28:::0;;-1:-1:-1;;45983:28:0::1;46007:4;45983:28;::::0;;-1:-1:-1;46022:14:0::1;:21:::0;;46054:18;-1:-1:-1;;46054:18:0;;;;;;46098:12:::1;46083;:27:::0;46135:15:::1;46121:11;:29:::0;45247:911::o;26744:95::-;26791:13;26824:7;26817:14;;;;;:::i;28121:182::-;28190:4;24349:10;28246:27;24349:10;28263:2;28267:5;28246:9;:27::i;49137:498::-;37452:13;:11;:13::i;:::-;49268:9:::1;49252:13;27715:12:::0;;;27636:99;49252:13:::1;:25;;;;:::i;:::-;49239:9;:38;;49217:151;;;::::0;-1:-1:-1;;;49217:151:0;;10361:2:1;49217:151:0::1;::::0;::::1;10343:21:1::0;10400:2;10380:18;;;10373:30;10439:34;10419:18;;;10412:62;10510:33;10490:18;;;10483:61;10561:19;;49217:151:0::1;10159:427:1::0;49217:151:0::1;49430:5;49414:13;27715:12:::0;;;27636:99;49414:13:::1;:21;;;;:::i;:::-;49401:9;:34;;49379:144;;;::::0;-1:-1:-1;;;49379:144:0;;10793:2:1;49379:144:0::1;::::0;::::1;10775:21:1::0;10832:2;10812:18;;;10805:30;10871:34;10851:18;;;10844:62;10942:30;10922:18;;;10915:58;10990:19;;49379:144:0::1;10591:424:1::0;49379:144:0::1;49534:18;:30:::0;;;49582:45:::1;::::0;1361:25:1;;;49582:45:0::1;::::0;1349:2:1;1334:18;49582:45:0::1;1215:177:1::0;43307:352:0;37452:13;:11;:13::i;:::-;-1:-1:-1;;;;;43439:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;:40;::::1;;:28;::::0;;::::1;:40;;::::0;43417:132:::1;;;::::0;-1:-1:-1;;;43417:132:0;;11222:2:1;43417:132:0::1;::::0;::::1;11204:21:1::0;11261:2;11241:18;;;11234:30;11300:34;11280:18;;;11273:62;-1:-1:-1;;;11351:18:1;;;11344:40;11401:19;;43417:132:0::1;11020:406:1::0;43417:132:0::1;-1:-1:-1::0;;;;;43560:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;43560:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;43617:34;;1163:41:1;;;43617:34:0::1;::::0;1136:18:1;43617:34:0::1;;;;;;;;43307:352:::0;;:::o;51180:451::-;37452:13;:11;:13::i;:::-;-1:-1:-1;;;;;51316:38:0;::::1;;::::0;;;:29:::1;:38;::::0;;;;;:49;::::1;;:38;::::0;;::::1;:49;;::::0;51294:135:::1;;;::::0;-1:-1:-1;;;51294:135:0;;11633:2:1;51294:135:0::1;::::0;::::1;11615:21:1::0;11672:2;11652:18;;;11645:30;11711:34;11691:18;;;11684:62;-1:-1:-1;;;11762:18:1;;;11755:34;11806:19;;51294:135:0::1;11431:400:1::0;51294:135:0::1;51467:4;-1:-1:-1::0;;;;;51448:24:0;::::1;::::0;51440:60:::1;;;::::0;-1:-1:-1;;;51440:60:0;;12038:2:1;51440:60:0::1;::::0;::::1;12020:21:1::0;12077:2;12057:18;;;12050:30;12116:25;12096:18;;;12089:53;12159:18;;51440:60:0::1;11836:347:1::0;51440:60:0::1;-1:-1:-1::0;;;;;51513:38:0;::::1;;::::0;;;:29:::1;:38;::::0;;;;;;;;:48;;-1:-1:-1;;51513:48:0::1;::::0;::::1;;::::0;;::::1;::::0;;;51579:44;;1163:41:1;;;51579:44:0::1;::::0;1136:18:1;51579:44:0::1;1023:187:1::0;48949:180:0;37452:13;:11;:13::i;:::-;49041:8:::1;49026:23;;:11;;;;;;;;;;;:23;;::::0;49018:70:::1;;;::::0;-1:-1:-1;;;49018:70:0;;12390:2:1;49018:70:0::1;::::0;::::1;12372:21:1::0;12429:2;12409:18;;;12402:30;12468:34;12448:18;;;12441:62;-1:-1:-1;;;12519:18:1;;;12512:32;12561:19;;49018:70:0::1;12188:398:1::0;49018:70:0::1;49099:11;:22:::0;;;::::1;;;;-1:-1:-1::0;;49099:22:0;;::::1;::::0;;;::::1;::::0;;48949:180::o;38499:220::-;37452:13;:11;:13::i;:::-;-1:-1:-1;;;;;38584:22:0;::::1;38580:93;;38630:31;::::0;-1:-1:-1;;;38630:31:0;;38658:1:::1;38630:31;::::0;::::1;1569:51:1::0;1542:18;;38630:31:0::1;1397:229:1::0;38580:93:0::1;38683:28;38702:8;38683:18;:28::i;42645:364::-:0;37452:13;:11;:13::i;:::-;-1:-1:-1;;;;;42720:21:0;::::1;42716:127;;42758:52;42766:10;42788:21;42758:29;:52::i;42716:127::-;42915:35;::::0;-1:-1:-1;;;42915:35:0;;42944:4:::1;42915:35;::::0;::::1;1569:51:1::0;42880:5:0;;42853:17:::1;::::0;-1:-1:-1;;;;;42915:20:0;::::1;::::0;::::1;::::0;1542:18:1;;42915:35:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42961:40;::::0;-1:-1:-1;;;42961:40:0;;42981:10:::1;42961:40;::::0;::::1;8527:51:1::0;8594:18;;;8587:34;;;42897:53:0;;-1:-1:-1;;;;;;42961:19:0;::::1;::::0;::::1;::::0;8500:18:1;;42961:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;42705:304;;42645:364:::0;:::o;33662:130::-;33747:37;33756:5;33763:7;33772:5;33779:4;33747:8;:37::i;:::-;33662:130;;;:::o;35378:487::-;-1:-1:-1;;;;;28473:18:0;;;35478:24;28473:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;35545:37:0;;35541:317;;35622:5;35603:16;:24;35599:132;;;35655:60;;-1:-1:-1;;;35655:60:0;;-1:-1:-1;;;;;13000:32:1;;35655:60:0;;;12982:51:1;13049:18;;;13042:34;;;13092:18;;;13085:34;;;12955:18;;35655:60:0;12780:345:1;35599:132:0;35774:57;35783:5;35790:7;35818:5;35799:16;:24;35825:5;35774:8;:57::i;46166:2775::-;-1:-1:-1;;;;;46298:18:0;;46290:68;;;;-1:-1:-1;;;46290:68:0;;13332:2:1;46290:68:0;;;13314:21:1;13371:2;13351:18;;;13344:30;13410:34;13390:18;;;13383:62;-1:-1:-1;;;13461:18:1;;;13454:35;13506:19;;46290:68:0;13130:401:1;46290:68:0;-1:-1:-1;;;;;46377:16:0;;46369:64;;;;-1:-1:-1;;;46369:64:0;;13738:2:1;46369:64:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:34;13796:18;;;13789:62;-1:-1:-1;;;13867:18:1;;;13860:33;13910:19;;46369:64:0;13536:399:1;46369:64:0;46466:14;;;;;;;;:60;;-1:-1:-1;;;;;;46501:25:0;;;;;;:19;:25;;;;;;;;46466:60;:104;;;-1:-1:-1;;;;;;46547:23:0;;;;;;:19;:23;;;;;;;;46466:104;46444:178;;;;-1:-1:-1;;;46444:178:0;;14142:2:1;46444:178:0;;;14124:21:1;14181:2;14161:18;;;14154:30;14220:26;14200:18;;;14193:54;14264:18;;46444:178:0;13940:348:1;46444:178:0;46639:6;46649:1;46639:11;46635:93;;46667:28;46683:4;46689:2;46693:1;46667:15;:28::i;46635:93::-;46789:4;46740:28;27890:18;;;;;;;;;;;46847;;46823:42;;;;;;;46882:20;;-1:-1:-1;46894:8:0;;;;46893:9;46882:20;:43;;;;-1:-1:-1;46912:13:0;;-1:-1:-1;;;;;46906:19:0;;;46912:13;;46906:19;46882:43;:58;;;;-1:-1:-1;46929:11:0;;;;;;;46882:58;46878:194;;;46957:8;:15;;-1:-1:-1;;46957:15:0;46968:4;46957:15;;;46989:38;47006:20;46989:16;:38::i;:::-;47044:8;:16;;-1:-1:-1;;47044:16:0;;;46878:194;47084:16;47111:15;47163:11;;47178:10;47163:26;;;;:::i;:::-;47145:15;:44;47141:551;;;-1:-1:-1;;47245:9:0;;47280:10;;;47141:551;;;47330:11;;:26;;47345:10;47330:26;:::i;:::-;47312:15;:44;47308:384;;;-1:-1:-1;47435:2:0;;-1:-1:-1;47407:2:0;47308:384;;;47477:11;;:25;;47492:9;47477:25;:::i;:::-;47459:15;:43;47455:237;;;-1:-1:-1;47581:2:0;;-1:-1:-1;47553:2:0;47455:237;;;-1:-1:-1;47678:2:0;;-1:-1:-1;47650:2:0;47455:237;-1:-1:-1;;;;;47737:25:0;;47704:18;47737:25;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;47766:23:0;;;;;;:19;:23;;;;;;;;47737:52;:64;;;-1:-1:-1;47793:8:0;;;;47737:64;47733:441;;;-1:-1:-1;47831:1:0;47733:441;;;47862:13;;-1:-1:-1;;;;;47862:13:0;;;47854:21;;;;47850:324;;47912:12;;47896;:28;47892:145;;-1:-1:-1;47958:2:0;47850:324;;47892:145;-1:-1:-1;48014:7:0;47850:324;;;48064:13;;-1:-1:-1;;;;;48064:13:0;;;48058:19;;;;48054:120;;-1:-1:-1;48107:8:0;48054:120;;;-1:-1:-1;48161:1:0;48054:120;48190:14;;48186:226;;48221:12;48260:3;48237:19;48246:10;48237:6;:19;:::i;:::-;48236:27;;;;:::i;:::-;48221:42;-1:-1:-1;48287:13:0;48221:42;48287:6;:13;:::i;:::-;48278:22;;48315:42;48331:4;48345;48352;48315:15;:42::i;:::-;48392:8;48399:1;48392:4;:8;:::i;:::-;48375:13;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;;;48186:226:0;48428:21;;;;48424:464;;;-1:-1:-1;;;;;48489:35:0;;;;;;:29;:35;;;;;;;;48488:36;:91;;;;-1:-1:-1;;;;;;48546:33:0;;;;;;:29;:33;;;;;;;;48545:34;48488:91;:131;;;;-1:-1:-1;48606:13:0;;-1:-1:-1;;;;;48600:19:0;;;48606:13;;48600:19;;48488:131;48466:411;;;-1:-1:-1;;;;;27890:18:0;;48654:15;27890:18;;;;;;;;;;;48754:15;;48734:16;48744:6;27890:18;48734:16;:::i;:::-;:35;;48704:157;;;;-1:-1:-1;;;48704:157:0;;14931:2:1;48704:157:0;;;14913:21:1;14970:2;14950:18;;;14943:30;15009:34;14989:18;;;14982:62;-1:-1:-1;;;15060:18:1;;;15053:46;15116:19;;48704:157:0;14729:412:1;48704:157:0;48635:242;48466:411;48900:33;48916:4;48922:2;48926:6;48900:15;:33::i;:::-;46279:2662;;;;;46166:2775;;;:::o;37731:166::-;37639:6;;-1:-1:-1;;;;;37639:6:0;24349:10;37791:23;37787:103;;37838:40;;-1:-1:-1;;;37838:40:0;;24349:10;37838:40;;;1569:51:1;1542:18;;37838:40:0;1397:229:1;32898:211:0;-1:-1:-1;;;;;32969:21:0;;32965:91;;33014:30;;-1:-1:-1;;;33014:30:0;;33041:1;33014:30;;;1569:51:1;1542:18;;33014:30:0;1397:229:1;32965:91:0;33066:35;33074:7;33091:1;33095:5;33066:7;:35::i;:::-;32898:211;;:::o;38879:191::-;38972:6;;;-1:-1:-1;;;;;38989:17:0;;;-1:-1:-1;;;;;;38989:17:0;;;;;;;39022:40;;38972:6;;;38989:17;38972:6;;39022:40;;38953:16;;39022:40;38942:128;38879:191;:::o;43017:167::-;43277:14;;-1:-1:-1;;;;;43277:14:0;24349:10;43081:35;43077:100;;43140:25;;-1:-1:-1;;;43140:25:0;;24349:10;43140:25;;;1569:51:1;1542:18;;43140:25:0;1397:229:1;8385:340:0;8495:6;8471:21;:30;8467:111;;;8525:41;;-1:-1:-1;;;8525:41:0;;8560:4;8525:41;;;1569:51:1;1542:18;;8525:41:0;1397:229:1;8467:111:0;8591:12;8609:9;-1:-1:-1;;;;;8609:14:0;8631:6;8609:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8590:52;;;8658:7;8653:65;;8689:17;;-1:-1:-1;;;8689:17:0;;;;;;;;;;;34643:443;-1:-1:-1;;;;;34756:19:0;;34752:91;;34799:32;;-1:-1:-1;;;34799:32:0;;34828:1;34799:32;;;1569:51:1;1542:18;;34799:32:0;1397:229:1;34752:91:0;-1:-1:-1;;;;;34857:21:0;;34853:92;;34902:31;;-1:-1:-1;;;34902:31:0;;34930:1;34902:31;;;1569:51:1;1542:18;;34902:31:0;1397:229:1;34853:92:0;-1:-1:-1;;;;;34955:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;35001:78;;;;35052:7;-1:-1:-1;;;;;35036:31:0;35045:5;-1:-1:-1;;;;;35036:31:0;;35061:5;35036:31;;;;1361:25:1;;1349:2;1334:18;;1215:177;35036:31:0;;;;;;;;34643:443;;;;:::o;30229:316::-;-1:-1:-1;;;;;30321:18:0;;30317:88;;30363:30;;-1:-1:-1;;;30363:30:0;;30390:1;30363:30;;;1569:51:1;1542:18;;30363:30:0;1397:229:1;30317:88:0;-1:-1:-1;;;;;30419:16:0;;30415:88;;30459:32;;-1:-1:-1;;;30459:32:0;;30488:1;30459:32;;;1569:51:1;1542:18;;30459:32:0;1397:229:1;30415:88:0;30513:24;30521:4;30527:2;30531:5;30513:7;:24::i;49643:847::-;49792:16;;;49806:1;49792:16;;;;;;;;49734:21;;49709:22;;49792:16;49806:1;49792:16;;;;;;;;;;-1:-1:-1;49792:16:0;49768:40;;49837:4;49819;49824:1;49819:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49819:23:0;;;:7;;;;;;;;;;:23;;;;49863:15;;:22;;;-1:-1:-1;;;49863:22:0;;;;:15;;;;;:20;;:22;;;;;49819:7;;49863:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;49853:4;49858:1;49853:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;49853:32:0;;;:7;;;;;;;;;:32;49898:15;;:196;;-1:-1:-1;;;49898:196:0;;:15;;;:66;;:196;;49979:11;;49898:15;;50021:4;;50048;;50068:15;;49898:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50107:18;50152:14;50128:21;:38;;;;:::i;:::-;50107:59;;50177:27;50251:11;50221:13;;50208:10;:26;;;;:::i;:::-;50207:55;;;;:::i;:::-;50283:14;;50177:85;;-1:-1:-1;50275:54:0;;-1:-1:-1;;;;;50283:14:0;50177:85;50275:33;:54::i;:::-;50348:11;;50340:53;;-1:-1:-1;;;;;50348:11:0;50371:21;50340:30;:53::i;:::-;50422:1;50406:13;:17;50441:41;;;6525:25:1;;;6581:2;6566:18;;6559:34;;;50441:41:0;;6498:18:1;50441:41:0;;;;;;;49698:792;;;;49643:847;:::o;30869:1135::-;-1:-1:-1;;;;;30959:18:0;;30955:552;;31113:5;31097:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;30955:552:0;;-1:-1:-1;30955:552:0;;-1:-1:-1;;;;;31173:15:0;;31151:19;31173:15;;;;;;;;;;;31207:19;;;31203:117;;;31254:50;;-1:-1:-1;;;31254:50:0;;-1:-1:-1;;;;;13000:32:1;;31254:50:0;;;12982:51:1;13049:18;;;13042:34;;;13092:18;;;13085:34;;;12955:18;;31254:50:0;12780:345:1;31203:117:0;-1:-1:-1;;;;;31443:15:0;;:9;:15;;;;;;;;;;31461:19;;;;31443:37;;30955:552;-1:-1:-1;;;;;31523:16:0;;31519:435;;31689:12;:21;;;;;;;31519:435;;;-1:-1:-1;;;;;31905:13:0;;:9;:13;;;;;;;;;;:22;;;;;;31519:435;31986:2;-1:-1:-1;;;;;31971:25:0;31980:4;-1:-1:-1;;;;;31971:25:0;;31990:5;31971:25;;;;1361::1;;1349:2;1334:18;;1215:177;31971:25:0;;;;;;;;30869:1135;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1631:456::-;1708:6;1716;1724;1777:2;1765:9;1756:7;1752:23;1748:32;1745:52;;;1793:1;1790;1783:12;1745:52;1832:9;1819:23;1851:31;1876:5;1851:31;:::i;:::-;1901:5;-1:-1:-1;1958:2:1;1943:18;;1930:32;1971:33;1930:32;1971:33;:::i;:::-;1631:456;;2023:7;;-1:-1:-1;;;2077:2:1;2062:18;;;;2049:32;;1631:456::o;2092:118::-;2178:5;2171:13;2164:21;2157:5;2154:32;2144:60;;2200:1;2197;2190:12;2215:241;2271:6;2324:2;2312:9;2303:7;2299:23;2295:32;2292:52;;;2340:1;2337;2330:12;2292:52;2379:9;2366:23;2398:28;2420:5;2398:28;:::i;:::-;2445:5;2215:241;-1:-1:-1;;;2215:241:1:o;2461:247::-;2520:6;2573:2;2561:9;2552:7;2548:23;2544:32;2541:52;;;2589:1;2586;2579:12;2541:52;2628:9;2615:23;2647:31;2672:5;2647:31;:::i;2902:180::-;2961:6;3014:2;3002:9;2993:7;2989:23;2985:32;2982:52;;;3030:1;3027;3020:12;2982:52;-1:-1:-1;3053:23:1;;2902:180;-1:-1:-1;2902:180:1:o;3295:248::-;3363:6;3371;3424:2;3412:9;3403:7;3399:23;3395:32;3392:52;;;3440:1;3437;3430:12;3392:52;-1:-1:-1;;3463:23:1;;;3533:2;3518:18;;;3505:32;;-1:-1:-1;3295:248:1:o;3548:382::-;3613:6;3621;3674:2;3662:9;3653:7;3649:23;3645:32;3642:52;;;3690:1;3687;3680:12;3642:52;3729:9;3716:23;3748:31;3773:5;3748:31;:::i;:::-;3798:5;-1:-1:-1;3855:2:1;3840:18;;3827:32;3868:30;3827:32;3868:30;:::i;:::-;3917:7;3907:17;;;3548:382;;;;;:::o;3935:388::-;4003:6;4011;4064:2;4052:9;4043:7;4039:23;4035:32;4032:52;;;4080:1;4077;4070:12;4032:52;4119:9;4106:23;4138:31;4163:5;4138:31;:::i;:::-;4188:5;-1:-1:-1;4245:2:1;4230:18;;4217:32;4258:33;4217:32;4258:33;:::i;4328:380::-;4407:1;4403:12;;;;4450;;;4471:61;;4525:4;4517:6;4513:17;4503:27;;4471:61;4578:2;4570:6;4567:14;4547:18;4544:38;4541:161;;4624:10;4619:3;4615:20;4612:1;4605:31;4659:4;4656:1;4649:15;4687:4;4684:1;4677:15;4541:161;;4328:380;;;:::o;5944:402::-;6146:2;6128:21;;;6185:2;6165:18;;;6158:30;6224:34;6219:2;6204:18;;6197:62;-1:-1:-1;;;6290:2:1;6275:18;;6268:36;6336:3;6321:19;;5944:402::o;7788:251::-;7858:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:52;;;7927:1;7924;7917:12;7879:52;7959:9;7953:16;7978:31;8003:5;7978:31;:::i;8632:245::-;8699:6;8752:2;8740:9;8731:7;8727:23;8723:32;8720:52;;;8768:1;8765;8758:12;8720:52;8800:9;8794:16;8819:28;8841:5;8819:28;:::i;9494:306::-;9582:6;9590;9598;9651:2;9639:9;9630:7;9626:23;9622:32;9619:52;;;9667:1;9664;9657:12;9619:52;9696:9;9690:16;9680:26;;9746:2;9735:9;9731:18;9725:25;9715:35;;9790:2;9779:9;9775:18;9769:25;9759:35;;9494:306;;;;;:::o;9805:127::-;9866:10;9861:3;9857:20;9854:1;9847:31;9897:4;9894:1;9887:15;9921:4;9918:1;9911:15;9937:217;9977:1;10003;9993:132;;10047:10;10042:3;10038:20;10035:1;10028:31;10082:4;10079:1;10072:15;10110:4;10107:1;10100:15;9993:132;-1:-1:-1;10139:9:1;;9937:217::o;12591:184::-;12661:6;12714:2;12702:9;12693:7;12689:23;12685:32;12682:52;;;12730:1;12727;12720:12;12682:52;-1:-1:-1;12753:16:1;;12591:184;-1:-1:-1;12591:184:1:o;14293:125::-;14358:9;;;14379:10;;;14376:36;;;14392:18;;:::i;14423:168::-;14496:9;;;14527;;14544:15;;;14538:22;;14524:37;14514:71;;14565:18;;:::i;14596:128::-;14663:9;;;14684:11;;;14681:37;;;14698:18;;:::i;15488:127::-;15549:10;15544:3;15540:20;15537:1;15530:31;15580:4;15577:1;15570:15;15604:4;15601:1;15594:15;15620:980;15882:4;15930:3;15919:9;15915:19;15961:6;15950:9;15943:25;15987:2;16025:6;16020:2;16009:9;16005:18;15998:34;16068:3;16063:2;16052:9;16048:18;16041:31;16092:6;16127;16121:13;16158:6;16150;16143:22;16196:3;16185:9;16181:19;16174:26;;16235:2;16227:6;16223:15;16209:29;;16256:1;16266:195;16280:6;16277:1;16274:13;16266:195;;;16345:13;;-1:-1:-1;;;;;16341:39:1;16329:52;;16436:15;;;;16401:12;;;;16377:1;16295:9;16266:195;;;-1:-1:-1;;;;;;;16517:32:1;;;;16512:2;16497:18;;16490:60;-1:-1:-1;;;16581:3:1;16566:19;16559:35;16478:3;15620:980;-1:-1:-1;;;15620:980:1:o

Swarm Source

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