ETH Price: $2,835.72 (-7.14%)
Gas: 8 Gwei

Token

SeptembersMonsters (SEP)
 

Overview

Max Total Supply

1,000 SEP

Holders

486

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 SEP
0x2a8f1C9d50e7647A30b2694e676fBC508D9241F9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

September's Monsters, a generative collab between September Mourning and The Monster Rehab, are 1000 Human/ Reaper Hybrid Warriors fighting for the souls of the living against the dark forces of the dead.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SeptembersMonsters

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-18
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(
        address indexed owner,
        address indexed approved,
        uint256 indexed tokenId
    );

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId)
        external
        view
        returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721.balanceOf(owner),
            "ERC721Enumerable: owner index out of bounds"
        );
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            index < ERC721Enumerable.totalSupply(),
            "ERC721Enumerable: global index out of bounds"
        );
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId)
        private
    {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

contract SeptembersMonsters is ERC721, Ownable {
    bool public saleActive = false;
    bool public presaleActive = false;

    string internal baseTokenURI = "https://nftmediabox.com/api/septembers-monsters/";

    uint256 public price = 0.03 ether;
    uint256 public presaleTotalSupply = 1000;
    uint256 public totalSupply = 3000;
    uint256 public nonce = 0;
    uint256 public maxTx = 20;

    address public a1 = 0x7D58e81CeCf7F1B0071580CAB07d53EDE7858B17;
    address public a2 = 0x70184259C8CbF0B85C96e2A84ad74EB097759aeE;
    address public a3 = 0xdeF4274dA60CEF85402731F0013E5C67fC3D5c2e;
    address public a4 = 0x4f95219f13dC43641645B5ebE5259b040e38b281;
    address public a5 = 0x2027e0fE56278f671D174CbE4BCd7A42D25cc6a3;
    address public a6 = 0x57ccEFe8fDD9F2B17B9dD148061ae9a5f3a7e767;
    address public a7 = 0x80f039085f78fFF512a1edE6d25eC64927392888;
    address public a8 = 0x79B4cfA593B7794a7F9e54911731101E7F0afd5f;

    constructor() ERC721("SeptembersMonsters", "SEP") {}

    function setPrice(uint256 newPrice) external onlyOwner {
        price = newPrice;
    }

    function setBaseTokenURI(string calldata _uri) external onlyOwner {
        baseTokenURI = _uri;
    }

    function setTotalSupply(uint256 newSupply) external onlyOwner {
        totalSupply = newSupply;
    }

    function setPresaleTotalSupply(uint256 newSupply) external onlyOwner {
        presaleTotalSupply = newSupply;
    }

    function setPresaleActive(bool val) public onlyOwner {
        presaleActive = val;
    }

    function setSaleActive(bool val) public onlyOwner {
        saleActive = val;
    }

    function setMembersAddresses(address[] memory _a) public onlyOwner {
        a1 = _a[0];
        a2 = _a[1];
        a3 = _a[2];
        a4 = _a[3];
        a5 = _a[4];
        a6 = _a[5];
        a7 = _a[6];
        a8 = _a[7];
    }

    function setMaxTx(uint256 newMax) external onlyOwner {
        maxTx = newMax;
    }

    function _baseURI() internal view override returns (string memory) {
        return baseTokenURI;
    }

    function giveaway(address to, uint256 qty) external onlyOwner {
        require(qty + nonce <= totalSupply, "Value exceeds totalSupply");
        for (uint256 i = 0; i < qty; i++) {
            uint256 tokenId = nonce;
            _safeMint(to, tokenId);
            nonce++;
        }
    }

    function mint(uint256 qty) external payable {
        require(presaleActive || saleActive, "Neither sale is active");
        if (presaleActive) {
            require(nonce + qty <= presaleTotalSupply, "Minting too many for presale or presale is sold out");
        }
        require(qty <= maxTx && qty > 0, "Qty of mints not allowed");
        require(
            qty + nonce <= totalSupply,
            "Value exceeds totalSupply"
        );
        require(msg.value == price * qty, "Invalid value");
        for (uint256 i = 0; i < qty; i++) {
            uint256 tokenId = nonce;
            _safeMint(msg.sender, tokenId);
            nonce++;
        }
    }

    function withdrawTeam() public payable onlyOwner {
        uint256 balance = address(this).balance;
        require(payable(a1).send((balance * 25) / 1000));
        require(payable(a2).send((balance * 25) / 1000));
        require(payable(a3).send((balance * 25) / 1000));
        require(payable(a4).send((balance * 5) / 100));
        require(payable(a5).send((balance * 5) / 100));
        require(payable(a6).send((balance * 5) / 100));
        require(payable(a7).send((balance * 275) / 1000));
        require(payable(a8).send((balance * 50) / 100));
    }

    function withdrawOwner() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"a1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a7","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"a8","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nonce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMax","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_a","type":"address[]"}],"name":"setMembersAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setPresaleTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"payable","type":"function"}]

6006805461ffff60a01b1916905560e060405260306080818152906200296c60a0398051620000379160079160209091019062000245565b50666a94d74f4300006008556103e8600955610bb8600a556000600b556014600c819055600d80546001600160a01b0319908116737d58e81cecf7f1b0071580cab07d53ede7858b1717909155600e805482167370184259c8cbf0b85c96e2a84ad74eb097759aee179055600f8054821673def4274da60cef85402731f0013e5c67fc3d5c2e179055601080548216734f95219f13dc43641645b5ebe5259b040e38b281179055601180548216732027e0fe56278f671d174cbe4bcd7a42d25cc6a31790556012805482167357ccefe8fdd9f2b17b9dd148061ae9a5f3a7e7671790556013805482167380f039085f78fff512a1ede6d25ec649273928881790558154167379b4cfa593b7794a7f9e54911731101e7f0afd5f1790553480156200016057600080fd5b50604080518082018252601281527153657074656d626572734d6f6e737465727360701b60208083019182528351808501909452600384526205345560ec1b908401528151919291620001b69160009162000245565b508051620001cc90600190602084019062000245565b505050620001e9620001e3620001ef60201b60201c565b620001f3565b62000328565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200025390620002eb565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b600181811c908216806200030057607f821691505b602082108114156200032257634e487b7160e01b600052602260045260246000fd5b50919050565b61263480620003386000396000f3fe60806040526004361061025c5760003560e01c8063715018a611610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106d3578063e8cc00ad146106f3578063e985e9c514610708578063f2fde38b14610751578063f74ea41814610771578063f7ea7a3d1461079157600080fd5b8063a22cb46514610655578063affed0e014610675578063b88d4fde1461068b578063bb51f32d146106ab578063bc337182146106b357600080fd5b806391b7f5ed1161010857806391b7f5ed146105b75780639426eef8146105d757806395d89b41146105f7578063969e9d0c1461060c578063a035b1fe1461062c578063a0712d681461064257600080fd5b8063715018a6146105385780637437681e1461054d578063785db5f414610563578063841718a6146105795780638da5cb5b1461059957600080fd5b80633f8121a2116101dd5780635e048cc9116101a15780635e048cc914610477578063615db6e1146104975780636352211e146104b757806368428a1b146104d75780636ad847ff146104f857806370a082311461051857600080fd5b80633f8121a2146103d657806342842e0e146103f65780634397016114610416578063475053801461043657806353135ca01461045657600080fd5b8063119552a111610224578063119552a11461033257806318160ddd146103525780631c5c04b31461037657806323b872dd1461039657806330176e13146103b657600080fd5b806301ffc9a714610261578063050225ea1461029657806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461221f565b6107b1565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004612126565b610803565b005b3480156102c457600080fd5b506102cd6108d6565b60405161028d919061237c565b3480156102e657600080fd5b506102fa6102f53660046122cb565b610968565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612126565b6109fd565b34801561033e57600080fd5b50600d546102fa906001600160a01b031681565b34801561035e57600080fd5b50610368600a5481565b60405190815260200161028d565b34801561038257600080fd5b506102b66103913660046122cb565b610b0e565b3480156103a257600080fd5b506102b66103b1366004612000565b610b3d565b3480156103c257600080fd5b506102b66103d1366004612259565b610b6e565b3480156103e257600080fd5b506102b66103f1366004612204565b610ba4565b34801561040257600080fd5b506102b6610411366004612000565b610bec565b34801561042257600080fd5b506102b6610431366004612150565b610c07565b34801561044257600080fd5b506012546102fa906001600160a01b031681565b34801561046257600080fd5b5060065461028190600160a81b900460ff1681565b34801561048357600080fd5b506013546102fa906001600160a01b031681565b3480156104a357600080fd5b506011546102fa906001600160a01b031681565b3480156104c357600080fd5b506102fa6104d23660046122cb565b610e3c565b3480156104e357600080fd5b5060065461028190600160a01b900460ff1681565b34801561050457600080fd5b506014546102fa906001600160a01b031681565b34801561052457600080fd5b50610368610533366004611fb2565b610eb3565b34801561054457600080fd5b506102b6610f3a565b34801561055957600080fd5b50610368600c5481565b34801561056f57600080fd5b5061036860095481565b34801561058557600080fd5b506102b6610594366004612204565b610f70565b3480156105a557600080fd5b506006546001600160a01b03166102fa565b3480156105c357600080fd5b506102b66105d23660046122cb565b610fb8565b3480156105e357600080fd5b50600f546102fa906001600160a01b031681565b34801561060357600080fd5b506102cd610fe7565b34801561061857600080fd5b50600e546102fa906001600160a01b031681565b34801561063857600080fd5b5061036860085481565b6102b66106503660046122cb565b610ff6565b34801561066157600080fd5b506102b66106703660046120fc565b611232565b34801561068157600080fd5b50610368600b5481565b34801561069757600080fd5b506102b66106a636600461203c565b6112f7565b6102b661132f565b3480156106bf57600080fd5b506102b66106ce3660046122cb565b611593565b3480156106df57600080fd5b506102cd6106ee3660046122cb565b6115c2565b3480156106ff57600080fd5b506102b661169d565b34801561071457600080fd5b50610281610723366004611fcd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075d57600080fd5b506102b661076c366004611fb2565b6116f3565b34801561077d57600080fd5b506010546102fa906001600160a01b031681565b34801561079d57600080fd5b506102b66107ac3660046122cb565b61178b565b60006001600160e01b031982166380ac58cd60e01b14806107e257506001600160e01b03198216635b5e139f60e01b145b806107fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108365760405162461bcd60e51b815260040161082d906123e1565b60405180910390fd5b600a54600b546108469083612498565b11156108905760405162461bcd60e51b815260206004820152601960248201527856616c7565206578636565647320746f74616c537570706c7960381b604482015260640161082d565b60005b818110156108d157600b546108a884826117ba565b600b80549060006108b883612561565b91905055505080806108c990612561565b915050610893565b505050565b6060600080546108e590612526565b80601f016020809104026020016040519081016040528092919081815260200182805461091190612526565b801561095e5780601f106109335761010080835404028352916020019161095e565b820191906000526020600020905b81548152906001019060200180831161094157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082d565b506000908152600460205260409020546001600160a01b031690565b6000610a0882610e3c565b9050806001600160a01b0316836001600160a01b03161415610a765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082d565b336001600160a01b0382161480610a925750610a928133610723565b610b045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082d565b6108d183836117d4565b6006546001600160a01b03163314610b385760405162461bcd60e51b815260040161082d906123e1565b600955565b610b473382611842565b610b635760405162461bcd60e51b815260040161082d90612416565b6108d1838383611939565b6006546001600160a01b03163314610b985760405162461bcd60e51b815260040161082d906123e1565b6108d160078383611eed565b6006546001600160a01b03163314610bce5760405162461bcd60e51b815260040161082d906123e1565b60068054911515600160a81b0260ff60a81b19909216919091179055565b6108d1838383604051806020016040528060008152506112f7565b6006546001600160a01b03163314610c315760405162461bcd60e51b815260040161082d906123e1565b80600081518110610c4457610c446125bc565b6020026020010151600d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110610c8557610c856125bc565b6020026020010151600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600281518110610cc657610cc66125bc565b6020026020010151600f60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600381518110610d0757610d076125bc565b6020026020010151601060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600481518110610d4857610d486125bc565b6020026020010151601160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600581518110610d8957610d896125bc565b6020026020010151601260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600681518110610dca57610dca6125bc565b6020026020010151601360006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600781518110610e0b57610e0b6125bc565b6020026020010151601460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000818152600260205260408120546001600160a01b0316806107fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082d565b60006001600160a01b038216610f1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f645760405162461bcd60e51b815260040161082d906123e1565b610f6e6000611ad9565b565b6006546001600160a01b03163314610f9a5760405162461bcd60e51b815260040161082d906123e1565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6006546001600160a01b03163314610fe25760405162461bcd60e51b815260040161082d906123e1565b600855565b6060600180546108e590612526565b600654600160a81b900460ff16806110175750600654600160a01b900460ff165b61105c5760405162461bcd60e51b81526020600482015260166024820152754e6569746865722073616c652069732061637469766560501b604482015260640161082d565b600654600160a81b900460ff16156110e95760095481600b5461107f9190612498565b11156110e95760405162461bcd60e51b815260206004820152603360248201527f4d696e74696e6720746f6f206d616e7920666f722070726573616c65206f72206044820152721c1c995cd85b19481a5cc81cdbdb19081bdd5d606a1b606482015260840161082d565b600c5481111580156110fb5750600081115b6111475760405162461bcd60e51b815260206004820152601860248201527f517479206f66206d696e7473206e6f7420616c6c6f7765640000000000000000604482015260640161082d565b600a54600b546111579083612498565b11156111a15760405162461bcd60e51b815260206004820152601960248201527856616c7565206578636565647320746f74616c537570706c7960381b604482015260640161082d565b806008546111af91906124c4565b34146111ed5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b604482015260640161082d565b60005b8181101561122e57600b5461120533826117ba565b600b805490600061121583612561565b919050555050808061122690612561565b9150506111f0565b5050565b6001600160a01b03821633141561128b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113013383611842565b61131d5760405162461bcd60e51b815260040161082d90612416565b61132984848484611b2b565b50505050565b6006546001600160a01b031633146113595760405162461bcd60e51b815260040161082d906123e1565b600d5447906001600160a01b03166108fc6103e86113788460196124c4565b61138291906124b0565b6040518115909202916000818181858888f193505050506113a257600080fd5b600e546001600160a01b03166108fc6103e86113bf8460196124c4565b6113c991906124b0565b6040518115909202916000818181858888f193505050506113e957600080fd5b600f546001600160a01b03166108fc6103e86114068460196124c4565b61141091906124b0565b6040518115909202916000818181858888f1935050505061143057600080fd5b6010546001600160a01b03166108fc606461144c8460056124c4565b61145691906124b0565b6040518115909202916000818181858888f1935050505061147657600080fd5b6011546001600160a01b03166108fc60646114928460056124c4565b61149c91906124b0565b6040518115909202916000818181858888f193505050506114bc57600080fd5b6012546001600160a01b03166108fc60646114d88460056124c4565b6114e291906124b0565b6040518115909202916000818181858888f1935050505061150257600080fd5b6013546001600160a01b03166108fc6103e8611520846101136124c4565b61152a91906124b0565b6040518115909202916000818181858888f1935050505061154a57600080fd5b6014546001600160a01b03166108fc60646115668460326124c4565b61157091906124b0565b6040518115909202916000818181858888f1935050505061159057600080fd5b50565b6006546001600160a01b031633146115bd5760405162461bcd60e51b815260040161082d906123e1565b600c55565b6000818152600260205260409020546060906001600160a01b03166116415760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082d565b600061164b611b5e565b9050600081511161166b5760405180602001604052806000815250611696565b8061167584611b6d565b604051602001611686929190612310565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146116c75760405162461bcd60e51b815260040161082d906123e1565b60405133904780156108fc02916000818181858888f19350505050158015611590573d6000803e3d6000fd5b6006546001600160a01b0316331461171d5760405162461bcd60e51b815260040161082d906123e1565b6001600160a01b0381166117825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082d565b61159081611ad9565b6006546001600160a01b031633146117b55760405162461bcd60e51b815260040161082d906123e1565b600a55565b61122e828260405180602001604052806000815250611c6b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180982610e3c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082d565b60006118c683610e3c565b9050806001600160a01b0316846001600160a01b031614806119015750836001600160a01b03166118f684610968565b6001600160a01b0316145b8061193157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194c82610e3c565b6001600160a01b0316146119b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082d565b6001600160a01b038216611a165760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082d565b611a216000826117d4565b6001600160a01b0383166000908152600360205260408120805460019290611a4a9084906124e3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a78908490612498565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b36848484611939565b611b4284848484611c9e565b6113295760405162461bcd60e51b815260040161082d9061238f565b6060600780546108e590612526565b606081611b915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbb5780611ba581612561565b9150611bb49050600a836124b0565b9150611b95565b60008167ffffffffffffffff811115611bd657611bd66125d2565b6040519080825280601f01601f191660200182016040528015611c00576020820181803683370190505b5090505b841561193157611c156001836124e3565b9150611c22600a8661257c565b611c2d906030612498565b60f81b818381518110611c4257611c426125bc565b60200101906001600160f81b031916908160001a905350611c64600a866124b0565b9450611c04565b611c758383611dab565b611c826000848484611c9e565b6108d15760405162461bcd60e51b815260040161082d9061238f565b60006001600160a01b0384163b15611da057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ce290339089908890889060040161233f565b602060405180830381600087803b158015611cfc57600080fd5b505af1925050508015611d2c575060408051601f3d908101601f19168201909252611d299181019061223c565b60015b611d86573d808015611d5a576040519150601f19603f3d011682016040523d82523d6000602084013e611d5f565b606091505b508051611d7e5760405162461bcd60e51b815260040161082d9061238f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611931565b506001949350505050565b6001600160a01b038216611e015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082d565b6000818152600260205260409020546001600160a01b031615611e665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082d565b6001600160a01b0382166000908152600360205260408120805460019290611e8f908490612498565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef990612526565b90600052602060002090601f016020900481019282611f1b5760008555611f61565b82601f10611f345782800160ff19823516178555611f61565b82800160010185558215611f61579182015b82811115611f61578235825591602001919060010190611f46565b50611f6d929150611f71565b5090565b5b80821115611f6d5760008155600101611f72565b80356001600160a01b0381168114611f9d57600080fd5b919050565b80358015158114611f9d57600080fd5b600060208284031215611fc457600080fd5b61169682611f86565b60008060408385031215611fe057600080fd5b611fe983611f86565b9150611ff760208401611f86565b90509250929050565b60008060006060848603121561201557600080fd5b61201e84611f86565b925061202c60208501611f86565b9150604084013590509250925092565b6000806000806080858703121561205257600080fd5b61205b85611f86565b9350602061206a818701611f86565b935060408601359250606086013567ffffffffffffffff8082111561208e57600080fd5b818801915088601f8301126120a257600080fd5b8135818111156120b4576120b46125d2565b6120c6601f8201601f19168501612467565b915080825289848285010111156120dc57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561210f57600080fd5b61211883611f86565b9150611ff760208401611fa2565b6000806040838503121561213957600080fd5b61214283611f86565b946020939093013593505050565b6000602080838503121561216357600080fd5b823567ffffffffffffffff8082111561217b57600080fd5b818501915085601f83011261218f57600080fd5b8135818111156121a1576121a16125d2565b8060051b91506121b2848301612467565b8181528481019084860184860187018a10156121cd57600080fd5b600095505b838610156121f7576121e381611f86565b8352600195909501949186019186016121d2565b5098975050505050505050565b60006020828403121561221657600080fd5b61169682611fa2565b60006020828403121561223157600080fd5b8135611696816125e8565b60006020828403121561224e57600080fd5b8151611696816125e8565b6000806020838503121561226c57600080fd5b823567ffffffffffffffff8082111561228457600080fd5b818501915085601f83011261229857600080fd5b8135818111156122a757600080fd5b8660208285010111156122b957600080fd5b60209290920196919550909350505050565b6000602082840312156122dd57600080fd5b5035919050565b600081518084526122fc8160208601602086016124fa565b601f01601f19169290920160200192915050565b600083516123228184602088016124fa565b8351908301906123368183602088016124fa565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612372908301846122e4565b9695505050505050565b60208152600061169660208301846122e4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612490576124906125d2565b604052919050565b600082198211156124ab576124ab612590565b500190565b6000826124bf576124bf6125a6565b500490565b60008160001904831182151516156124de576124de612590565b500290565b6000828210156124f5576124f5612590565b500390565b60005b838110156125155781810151838201526020016124fd565b838111156113295750506000910152565b600181811c9082168061253a57607f821691505b6020821081141561255b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257557612575612590565b5060010190565b60008261258b5761258b6125a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461159057600080fdfea2646970667358221220c860c17e5d1890da4cd6f194e87c1a20ff55f1cbebd5b185ae35c8d4ebd61e9564736f6c6343000807003368747470733a2f2f6e66746d65646961626f782e636f6d2f6170692f73657074656d626572732d6d6f6e73746572732f

Deployed Bytecode

0x60806040526004361061025c5760003560e01c8063715018a611610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd146106d3578063e8cc00ad146106f3578063e985e9c514610708578063f2fde38b14610751578063f74ea41814610771578063f7ea7a3d1461079157600080fd5b8063a22cb46514610655578063affed0e014610675578063b88d4fde1461068b578063bb51f32d146106ab578063bc337182146106b357600080fd5b806391b7f5ed1161010857806391b7f5ed146105b75780639426eef8146105d757806395d89b41146105f7578063969e9d0c1461060c578063a035b1fe1461062c578063a0712d681461064257600080fd5b8063715018a6146105385780637437681e1461054d578063785db5f414610563578063841718a6146105795780638da5cb5b1461059957600080fd5b80633f8121a2116101dd5780635e048cc9116101a15780635e048cc914610477578063615db6e1146104975780636352211e146104b757806368428a1b146104d75780636ad847ff146104f857806370a082311461051857600080fd5b80633f8121a2146103d657806342842e0e146103f65780634397016114610416578063475053801461043657806353135ca01461045657600080fd5b8063119552a111610224578063119552a11461033257806318160ddd146103525780631c5c04b31461037657806323b872dd1461039657806330176e13146103b657600080fd5b806301ffc9a714610261578063050225ea1461029657806306fdde03146102b8578063081812fc146102da578063095ea7b314610312575b600080fd5b34801561026d57600080fd5b5061028161027c36600461221f565b6107b1565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b1366004612126565b610803565b005b3480156102c457600080fd5b506102cd6108d6565b60405161028d919061237c565b3480156102e657600080fd5b506102fa6102f53660046122cb565b610968565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102b661032d366004612126565b6109fd565b34801561033e57600080fd5b50600d546102fa906001600160a01b031681565b34801561035e57600080fd5b50610368600a5481565b60405190815260200161028d565b34801561038257600080fd5b506102b66103913660046122cb565b610b0e565b3480156103a257600080fd5b506102b66103b1366004612000565b610b3d565b3480156103c257600080fd5b506102b66103d1366004612259565b610b6e565b3480156103e257600080fd5b506102b66103f1366004612204565b610ba4565b34801561040257600080fd5b506102b6610411366004612000565b610bec565b34801561042257600080fd5b506102b6610431366004612150565b610c07565b34801561044257600080fd5b506012546102fa906001600160a01b031681565b34801561046257600080fd5b5060065461028190600160a81b900460ff1681565b34801561048357600080fd5b506013546102fa906001600160a01b031681565b3480156104a357600080fd5b506011546102fa906001600160a01b031681565b3480156104c357600080fd5b506102fa6104d23660046122cb565b610e3c565b3480156104e357600080fd5b5060065461028190600160a01b900460ff1681565b34801561050457600080fd5b506014546102fa906001600160a01b031681565b34801561052457600080fd5b50610368610533366004611fb2565b610eb3565b34801561054457600080fd5b506102b6610f3a565b34801561055957600080fd5b50610368600c5481565b34801561056f57600080fd5b5061036860095481565b34801561058557600080fd5b506102b6610594366004612204565b610f70565b3480156105a557600080fd5b506006546001600160a01b03166102fa565b3480156105c357600080fd5b506102b66105d23660046122cb565b610fb8565b3480156105e357600080fd5b50600f546102fa906001600160a01b031681565b34801561060357600080fd5b506102cd610fe7565b34801561061857600080fd5b50600e546102fa906001600160a01b031681565b34801561063857600080fd5b5061036860085481565b6102b66106503660046122cb565b610ff6565b34801561066157600080fd5b506102b66106703660046120fc565b611232565b34801561068157600080fd5b50610368600b5481565b34801561069757600080fd5b506102b66106a636600461203c565b6112f7565b6102b661132f565b3480156106bf57600080fd5b506102b66106ce3660046122cb565b611593565b3480156106df57600080fd5b506102cd6106ee3660046122cb565b6115c2565b3480156106ff57600080fd5b506102b661169d565b34801561071457600080fd5b50610281610723366004611fcd565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075d57600080fd5b506102b661076c366004611fb2565b6116f3565b34801561077d57600080fd5b506010546102fa906001600160a01b031681565b34801561079d57600080fd5b506102b66107ac3660046122cb565b61178b565b60006001600160e01b031982166380ac58cd60e01b14806107e257506001600160e01b03198216635b5e139f60e01b145b806107fd57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146108365760405162461bcd60e51b815260040161082d906123e1565b60405180910390fd5b600a54600b546108469083612498565b11156108905760405162461bcd60e51b815260206004820152601960248201527856616c7565206578636565647320746f74616c537570706c7960381b604482015260640161082d565b60005b818110156108d157600b546108a884826117ba565b600b80549060006108b883612561565b91905055505080806108c990612561565b915050610893565b505050565b6060600080546108e590612526565b80601f016020809104026020016040519081016040528092919081815260200182805461091190612526565b801561095e5780601f106109335761010080835404028352916020019161095e565b820191906000526020600020905b81548152906001019060200180831161094157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109e15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082d565b506000908152600460205260409020546001600160a01b031690565b6000610a0882610e3c565b9050806001600160a01b0316836001600160a01b03161415610a765760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082d565b336001600160a01b0382161480610a925750610a928133610723565b610b045760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082d565b6108d183836117d4565b6006546001600160a01b03163314610b385760405162461bcd60e51b815260040161082d906123e1565b600955565b610b473382611842565b610b635760405162461bcd60e51b815260040161082d90612416565b6108d1838383611939565b6006546001600160a01b03163314610b985760405162461bcd60e51b815260040161082d906123e1565b6108d160078383611eed565b6006546001600160a01b03163314610bce5760405162461bcd60e51b815260040161082d906123e1565b60068054911515600160a81b0260ff60a81b19909216919091179055565b6108d1838383604051806020016040528060008152506112f7565b6006546001600160a01b03163314610c315760405162461bcd60e51b815260040161082d906123e1565b80600081518110610c4457610c446125bc565b6020026020010151600d60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110610c8557610c856125bc565b6020026020010151600e60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600281518110610cc657610cc66125bc565b6020026020010151600f60006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600381518110610d0757610d076125bc565b6020026020010151601060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600481518110610d4857610d486125bc565b6020026020010151601160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600581518110610d8957610d896125bc565b6020026020010151601260006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600681518110610dca57610dca6125bc565b6020026020010151601360006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600781518110610e0b57610e0b6125bc565b6020026020010151601460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6000818152600260205260408120546001600160a01b0316806107fd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082d565b60006001600160a01b038216610f1e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082d565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610f645760405162461bcd60e51b815260040161082d906123e1565b610f6e6000611ad9565b565b6006546001600160a01b03163314610f9a5760405162461bcd60e51b815260040161082d906123e1565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6006546001600160a01b03163314610fe25760405162461bcd60e51b815260040161082d906123e1565b600855565b6060600180546108e590612526565b600654600160a81b900460ff16806110175750600654600160a01b900460ff165b61105c5760405162461bcd60e51b81526020600482015260166024820152754e6569746865722073616c652069732061637469766560501b604482015260640161082d565b600654600160a81b900460ff16156110e95760095481600b5461107f9190612498565b11156110e95760405162461bcd60e51b815260206004820152603360248201527f4d696e74696e6720746f6f206d616e7920666f722070726573616c65206f72206044820152721c1c995cd85b19481a5cc81cdbdb19081bdd5d606a1b606482015260840161082d565b600c5481111580156110fb5750600081115b6111475760405162461bcd60e51b815260206004820152601860248201527f517479206f66206d696e7473206e6f7420616c6c6f7765640000000000000000604482015260640161082d565b600a54600b546111579083612498565b11156111a15760405162461bcd60e51b815260206004820152601960248201527856616c7565206578636565647320746f74616c537570706c7960381b604482015260640161082d565b806008546111af91906124c4565b34146111ed5760405162461bcd60e51b815260206004820152600d60248201526c496e76616c69642076616c756560981b604482015260640161082d565b60005b8181101561122e57600b5461120533826117ba565b600b805490600061121583612561565b919050555050808061122690612561565b9150506111f0565b5050565b6001600160a01b03821633141561128b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113013383611842565b61131d5760405162461bcd60e51b815260040161082d90612416565b61132984848484611b2b565b50505050565b6006546001600160a01b031633146113595760405162461bcd60e51b815260040161082d906123e1565b600d5447906001600160a01b03166108fc6103e86113788460196124c4565b61138291906124b0565b6040518115909202916000818181858888f193505050506113a257600080fd5b600e546001600160a01b03166108fc6103e86113bf8460196124c4565b6113c991906124b0565b6040518115909202916000818181858888f193505050506113e957600080fd5b600f546001600160a01b03166108fc6103e86114068460196124c4565b61141091906124b0565b6040518115909202916000818181858888f1935050505061143057600080fd5b6010546001600160a01b03166108fc606461144c8460056124c4565b61145691906124b0565b6040518115909202916000818181858888f1935050505061147657600080fd5b6011546001600160a01b03166108fc60646114928460056124c4565b61149c91906124b0565b6040518115909202916000818181858888f193505050506114bc57600080fd5b6012546001600160a01b03166108fc60646114d88460056124c4565b6114e291906124b0565b6040518115909202916000818181858888f1935050505061150257600080fd5b6013546001600160a01b03166108fc6103e8611520846101136124c4565b61152a91906124b0565b6040518115909202916000818181858888f1935050505061154a57600080fd5b6014546001600160a01b03166108fc60646115668460326124c4565b61157091906124b0565b6040518115909202916000818181858888f1935050505061159057600080fd5b50565b6006546001600160a01b031633146115bd5760405162461bcd60e51b815260040161082d906123e1565b600c55565b6000818152600260205260409020546060906001600160a01b03166116415760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161082d565b600061164b611b5e565b9050600081511161166b5760405180602001604052806000815250611696565b8061167584611b6d565b604051602001611686929190612310565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146116c75760405162461bcd60e51b815260040161082d906123e1565b60405133904780156108fc02916000818181858888f19350505050158015611590573d6000803e3d6000fd5b6006546001600160a01b0316331461171d5760405162461bcd60e51b815260040161082d906123e1565b6001600160a01b0381166117825760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082d565b61159081611ad9565b6006546001600160a01b031633146117b55760405162461bcd60e51b815260040161082d906123e1565b600a55565b61122e828260405180602001604052806000815250611c6b565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180982610e3c565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118bb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082d565b60006118c683610e3c565b9050806001600160a01b0316846001600160a01b031614806119015750836001600160a01b03166118f684610968565b6001600160a01b0316145b8061193157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194c82610e3c565b6001600160a01b0316146119b45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082d565b6001600160a01b038216611a165760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082d565b611a216000826117d4565b6001600160a01b0383166000908152600360205260408120805460019290611a4a9084906124e3565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a78908490612498565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611b36848484611939565b611b4284848484611c9e565b6113295760405162461bcd60e51b815260040161082d9061238f565b6060600780546108e590612526565b606081611b915750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611bbb5780611ba581612561565b9150611bb49050600a836124b0565b9150611b95565b60008167ffffffffffffffff811115611bd657611bd66125d2565b6040519080825280601f01601f191660200182016040528015611c00576020820181803683370190505b5090505b841561193157611c156001836124e3565b9150611c22600a8661257c565b611c2d906030612498565b60f81b818381518110611c4257611c426125bc565b60200101906001600160f81b031916908160001a905350611c64600a866124b0565b9450611c04565b611c758383611dab565b611c826000848484611c9e565b6108d15760405162461bcd60e51b815260040161082d9061238f565b60006001600160a01b0384163b15611da057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611ce290339089908890889060040161233f565b602060405180830381600087803b158015611cfc57600080fd5b505af1925050508015611d2c575060408051601f3d908101601f19168201909252611d299181019061223c565b60015b611d86573d808015611d5a576040519150601f19603f3d011682016040523d82523d6000602084013e611d5f565b606091505b508051611d7e5760405162461bcd60e51b815260040161082d9061238f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611931565b506001949350505050565b6001600160a01b038216611e015760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082d565b6000818152600260205260409020546001600160a01b031615611e665760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082d565b6001600160a01b0382166000908152600360205260408120805460019290611e8f908490612498565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611ef990612526565b90600052602060002090601f016020900481019282611f1b5760008555611f61565b82601f10611f345782800160ff19823516178555611f61565b82800160010185558215611f61579182015b82811115611f61578235825591602001919060010190611f46565b50611f6d929150611f71565b5090565b5b80821115611f6d5760008155600101611f72565b80356001600160a01b0381168114611f9d57600080fd5b919050565b80358015158114611f9d57600080fd5b600060208284031215611fc457600080fd5b61169682611f86565b60008060408385031215611fe057600080fd5b611fe983611f86565b9150611ff760208401611f86565b90509250929050565b60008060006060848603121561201557600080fd5b61201e84611f86565b925061202c60208501611f86565b9150604084013590509250925092565b6000806000806080858703121561205257600080fd5b61205b85611f86565b9350602061206a818701611f86565b935060408601359250606086013567ffffffffffffffff8082111561208e57600080fd5b818801915088601f8301126120a257600080fd5b8135818111156120b4576120b46125d2565b6120c6601f8201601f19168501612467565b915080825289848285010111156120dc57600080fd5b808484018584013760008482840101525080935050505092959194509250565b6000806040838503121561210f57600080fd5b61211883611f86565b9150611ff760208401611fa2565b6000806040838503121561213957600080fd5b61214283611f86565b946020939093013593505050565b6000602080838503121561216357600080fd5b823567ffffffffffffffff8082111561217b57600080fd5b818501915085601f83011261218f57600080fd5b8135818111156121a1576121a16125d2565b8060051b91506121b2848301612467565b8181528481019084860184860187018a10156121cd57600080fd5b600095505b838610156121f7576121e381611f86565b8352600195909501949186019186016121d2565b5098975050505050505050565b60006020828403121561221657600080fd5b61169682611fa2565b60006020828403121561223157600080fd5b8135611696816125e8565b60006020828403121561224e57600080fd5b8151611696816125e8565b6000806020838503121561226c57600080fd5b823567ffffffffffffffff8082111561228457600080fd5b818501915085601f83011261229857600080fd5b8135818111156122a757600080fd5b8660208285010111156122b957600080fd5b60209290920196919550909350505050565b6000602082840312156122dd57600080fd5b5035919050565b600081518084526122fc8160208601602086016124fa565b601f01601f19169290920160200192915050565b600083516123228184602088016124fa565b8351908301906123368183602088016124fa565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612372908301846122e4565b9695505050505050565b60208152600061169660208301846122e4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612490576124906125d2565b604052919050565b600082198211156124ab576124ab612590565b500190565b6000826124bf576124bf6125a6565b500490565b60008160001904831182151516156124de576124de612590565b500290565b6000828210156124f5576124f5612590565b500390565b60005b838110156125155781810151838201526020016124fd565b838111156113295750506000910152565b600181811c9082168061253a57607f821691505b6020821081141561255b57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561257557612575612590565b5060010190565b60008261258b5761258b6125a6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461159057600080fdfea2646970667358221220c860c17e5d1890da4cd6f194e87c1a20ff55f1cbebd5b185ae35c8d4ebd61e9564736f6c63430008070033

Deployed Bytecode Sourcemap

44770:3822:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21003:355;;;;;;;;;;-1:-1:-1;21003:355:0;;;;;:::i;:::-;;:::i;:::-;;;6691:14:1;;6684:22;6666:41;;6654:2;6639:18;21003:355:0;;;;;;;;46897:298;;;;;;;;;;-1:-1:-1;46897:298:0;;;;;:::i;:::-;;:::i;:::-;;22172:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23865:308::-;;;;;;;;;;-1:-1:-1;23865:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5989:32:1;;;5971:51;;5959:2;5944:18;23865:308:0;5825:203:1;23388:411:0;;;;;;;;;;-1:-1:-1;23388:411:0;;;;;:::i;:::-;;:::i;45185:62::-;;;;;;;;;;-1:-1:-1;45185:62:0;;;;-1:-1:-1;;;;;45185:62:0;;;45080:33;;;;;;;;;;;;;;;;;;;15290:25:1;;;15278:2;15263:18;45080:33:0;15144:177:1;46121:118:0;;;;;;;;;;-1:-1:-1;46121:118:0;;;;;:::i;:::-;;:::i;24924:376::-;;;;;;;;;;-1:-1:-1;24924:376:0;;;;;:::i;:::-;;:::i;45897:104::-;;;;;;;;;;-1:-1:-1;45897:104:0;;;;;:::i;:::-;;:::i;46247:91::-;;;;;;;;;;-1:-1:-1;46247:91:0;;;;;:::i;:::-;;:::i;25371:185::-;;;;;;;;;;-1:-1:-1;25371:185:0;;;;;:::i;:::-;;:::i;46439:243::-;;;;;;;;;;-1:-1:-1;46439:243:0;;;;;:::i;:::-;;:::i;45530:62::-;;;;;;;;;;-1:-1:-1;45530:62:0;;;;-1:-1:-1;;;;;45530:62:0;;;44861:33;;;;;;;;;;-1:-1:-1;44861:33:0;;;;-1:-1:-1;;;44861:33:0;;;;;;45599:62;;;;;;;;;;-1:-1:-1;45599:62:0;;;;-1:-1:-1;;;;;45599:62:0;;;45461;;;;;;;;;;-1:-1:-1;45461:62:0;;;;-1:-1:-1;;;;;45461:62:0;;;21779:326;;;;;;;;;;-1:-1:-1;21779:326:0;;;;;:::i;:::-;;:::i;44824:30::-;;;;;;;;;;-1:-1:-1;44824:30:0;;;;-1:-1:-1;;;44824:30:0;;;;;;45668:62;;;;;;;;;;-1:-1:-1;45668:62:0;;;;-1:-1:-1;;;;;45668:62:0;;;21422:295;;;;;;;;;;-1:-1:-1;21422:295:0;;;;;:::i;:::-;;:::i;44104:94::-;;;;;;;;;;;;;:::i;45151:25::-;;;;;;;;;;;;;;;;45033:40;;;;;;;;;;;;;;;;46346:85;;;;;;;;;;-1:-1:-1;46346:85:0;;;;;:::i;:::-;;:::i;43453:87::-;;;;;;;;;;-1:-1:-1;43526:6:0;;-1:-1:-1;;;;;43526:6:0;43453:87;;45799:90;;;;;;;;;;-1:-1:-1;45799:90:0;;;;;:::i;:::-;;:::i;45323:62::-;;;;;;;;;;-1:-1:-1;45323:62:0;;;;-1:-1:-1;;;;;45323:62:0;;;22341:104;;;;;;;;;;;;;:::i;45254:62::-;;;;;;;;;;-1:-1:-1;45254:62:0;;;;-1:-1:-1;;;;;45254:62:0;;;44993:33;;;;;;;;;;;;;;;;47203:683;;;;;;:::i;:::-;;:::i;24245:327::-;;;;;;;;;;-1:-1:-1;24245:327:0;;;;;:::i;:::-;;:::i;45120:24::-;;;;;;;;;;;;;;;;25627:365;;;;;;;;;;-1:-1:-1;25627:365:0;;;;;:::i;:::-;;:::i;47894:573::-;;;:::i;46690:86::-;;;;;;;;;;-1:-1:-1;46690:86:0;;;;;:::i;:::-;;:::i;22516:468::-;;;;;;;;;;-1:-1:-1;22516:468:0;;;;;:::i;:::-;;:::i;48475:114::-;;;;;;;;;;;;;:::i;24643:214::-;;;;;;;;;;-1:-1:-1;24643:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;24814:25:0;;;24785:4;24814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24643:214;44353:229;;;;;;;;;;-1:-1:-1;44353:229:0;;;;;:::i;:::-;;:::i;45392:62::-;;;;;;;;;;-1:-1:-1;45392:62:0;;;;-1:-1:-1;;;;;45392:62:0;;;46009:104;;;;;;;;;;-1:-1:-1;46009:104:0;;;;;:::i;:::-;;:::i;21003:355::-;21150:4;-1:-1:-1;;;;;;21192:40:0;;-1:-1:-1;;;21192:40:0;;:105;;-1:-1:-1;;;;;;;21249:48:0;;-1:-1:-1;;;21249:48:0;21192:105;:158;;;-1:-1:-1;;;;;;;;;;19634:40:0;;;21314:36;21172:178;21003:355;-1:-1:-1;;21003:355:0:o;46897:298::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;;;;;;;;;46993:11:::1;::::0;46984:5:::1;::::0;46978:11:::1;::::0;:3;:11:::1;:::i;:::-;:26;;46970:64;;;::::0;-1:-1:-1;;;46970:64:0;;13401:2:1;46970:64:0::1;::::0;::::1;13383:21:1::0;13440:2;13420:18;;;13413:30;-1:-1:-1;;;13459:18:1;;;13452:55;13524:18;;46970:64:0::1;13199:349:1::0;46970:64:0::1;47050:9;47045:143;47069:3;47065:1;:7;47045:143;;;47112:5;::::0;47132:22:::1;47142:2:::0;47112:5;47132:9:::1;:22::i;:::-;47169:5;:7:::0;;;:5:::1;:7;::::0;::::1;:::i;:::-;;;;;;47079:109;47074:3;;;;;:::i;:::-;;;;47045:143;;;;46897:298:::0;;:::o;22172:100::-;22226:13;22259:5;22252:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22172:100;:::o;23865:308::-;23986:7;27628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27628:16:0;24011:110;;;;-1:-1:-1;;;24011:110:0;;11459:2:1;24011:110:0;;;11441:21:1;11498:2;11478:18;;;11471:30;11537:34;11517:18;;;11510:62;-1:-1:-1;;;11588:18:1;;;11581:42;11640:19;;24011:110:0;11257:408:1;24011:110:0;-1:-1:-1;24141:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24141:24:0;;23865:308::o;23388:411::-;23469:13;23485:23;23500:7;23485:14;:23::i;:::-;23469:39;;23533:5;-1:-1:-1;;;;;23527:11:0;:2;-1:-1:-1;;;;;23527:11:0;;;23519:57;;;;-1:-1:-1;;;23519:57:0;;13755:2:1;23519:57:0;;;13737:21:1;13794:2;13774:18;;;13767:30;13833:34;13813:18;;;13806:62;-1:-1:-1;;;13884:18:1;;;13877:31;13925:19;;23519:57:0;13553:397:1;23519:57:0;16451:10;-1:-1:-1;;;;;23611:21:0;;;;:62;;-1:-1:-1;23636:37:0;23653:5;16451:10;24643:214;:::i;23636:37::-;23589:168;;;;-1:-1:-1;;;23589:168:0;;9852:2:1;23589:168:0;;;9834:21:1;9891:2;9871:18;;;9864:30;9930:34;9910:18;;;9903:62;10001:26;9981:18;;;9974:54;10045:19;;23589:168:0;9650:420:1;23589:168:0;23770:21;23779:2;23783:7;23770:8;:21::i;46121:118::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;46201:18:::1;:30:::0;46121:118::o;24924:376::-;25133:41;16451:10;25166:7;25133:18;:41::i;:::-;25111:140;;;;-1:-1:-1;;;25111:140:0;;;;;;;:::i;:::-;25264:28;25274:4;25280:2;25284:7;25264:9;:28::i;45897:104::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;45974:19:::1;:12;45989:4:::0;;45974:19:::1;:::i;46247:91::-:0;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;46311:13:::1;:19:::0;;;::::1;;-1:-1:-1::0;;;46311:19:0::1;-1:-1:-1::0;;;;46311:19:0;;::::1;::::0;;;::::1;::::0;;46247:91::o;25371:185::-;25509:39;25526:4;25532:2;25536:7;25509:39;;;;;;;;;;;;:16;:39::i;46439:243::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;46522:2:::1;46525:1;46522:5;;;;;;;;:::i;:::-;;;;;;;46517:2;;:10;;;;;-1:-1:-1::0;;;;;46517:10:0::1;;;;;-1:-1:-1::0;;;;;46517:10:0::1;;;;;;46543:2;46546:1;46543:5;;;;;;;;:::i;:::-;;;;;;;46538:2;;:10;;;;;-1:-1:-1::0;;;;;46538:10:0::1;;;;;-1:-1:-1::0;;;;;46538:10:0::1;;;;;;46564:2;46567:1;46564:5;;;;;;;;:::i;:::-;;;;;;;46559:2;;:10;;;;;-1:-1:-1::0;;;;;46559:10:0::1;;;;;-1:-1:-1::0;;;;;46559:10:0::1;;;;;;46585:2;46588:1;46585:5;;;;;;;;:::i;:::-;;;;;;;46580:2;;:10;;;;;-1:-1:-1::0;;;;;46580:10:0::1;;;;;-1:-1:-1::0;;;;;46580:10:0::1;;;;;;46606:2;46609:1;46606:5;;;;;;;;:::i;:::-;;;;;;;46601:2;;:10;;;;;-1:-1:-1::0;;;;;46601:10:0::1;;;;;-1:-1:-1::0;;;;;46601:10:0::1;;;;;;46627:2;46630:1;46627:5;;;;;;;;:::i;:::-;;;;;;;46622:2;;:10;;;;;-1:-1:-1::0;;;;;46622:10:0::1;;;;;-1:-1:-1::0;;;;;46622:10:0::1;;;;;;46648:2;46651:1;46648:5;;;;;;;;:::i;:::-;;;;;;;46643:2;;:10;;;;;-1:-1:-1::0;;;;;46643:10:0::1;;;;;-1:-1:-1::0;;;;;46643:10:0::1;;;;;;46669:2;46672:1;46669:5;;;;;;;;:::i;:::-;;;;;;;46664:2;;:10;;;;;-1:-1:-1::0;;;;;46664:10:0::1;;;;;-1:-1:-1::0;;;;;46664:10:0::1;;;;;;46439:243:::0;:::o;21779:326::-;21896:7;21937:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21937:16:0;21986:19;21964:110;;;;-1:-1:-1;;;21964:110:0;;10688:2:1;21964:110:0;;;10670:21:1;10727:2;10707:18;;;10700:30;10766:34;10746:18;;;10739:62;-1:-1:-1;;;10817:18:1;;;10810:39;10866:19;;21964:110:0;10486:405:1;21422:295:0;21539:7;-1:-1:-1;;;;;21586:19:0;;21564:111;;;;-1:-1:-1;;;21564:111:0;;10277:2:1;21564:111:0;;;10259:21:1;10316:2;10296:18;;;10289:30;10355:34;10335:18;;;10328:62;-1:-1:-1;;;10406:18:1;;;10399:40;10456:19;;21564:111:0;10075:406:1;21564:111:0;-1:-1:-1;;;;;;21693:16:0;;;;;:9;:16;;;;;;;21422:295::o;44104:94::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;44169:21:::1;44187:1;44169:9;:21::i;:::-;44104:94::o:0;46346:85::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;46407:10:::1;:16:::0;;;::::1;;-1:-1:-1::0;;;46407:16:0::1;-1:-1:-1::0;;;;46407:16:0;;::::1;::::0;;;::::1;::::0;;46346:85::o;45799:90::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;45865:5:::1;:16:::0;45799:90::o;22341:104::-;22397:13;22430:7;22423:14;;;;;:::i;47203:683::-;47266:13;;-1:-1:-1;;;47266:13:0;;;;;:27;;-1:-1:-1;47283:10:0;;-1:-1:-1;;;47283:10:0;;;;47266:27;47258:62;;;;-1:-1:-1;;;47258:62:0;;14577:2:1;47258:62:0;;;14559:21:1;14616:2;14596:18;;;14589:30;-1:-1:-1;;;14635:18:1;;;14628:52;14697:18;;47258:62:0;14375:346:1;47258:62:0;47335:13;;-1:-1:-1;;;47335:13:0;;;;47331:143;;;47388:18;;47381:3;47373:5;;:11;;;;:::i;:::-;:33;;47365:97;;;;-1:-1:-1;;;47365:97:0;;14157:2:1;47365:97:0;;;14139:21:1;14196:2;14176:18;;;14169:30;14235:34;14215:18;;;14208:62;-1:-1:-1;;;14286:18:1;;;14279:49;14345:19;;47365:97:0;13955:415:1;47365:97:0;47499:5;;47492:3;:12;;:23;;;;;47514:1;47508:3;:7;47492:23;47484:60;;;;-1:-1:-1;;;47484:60:0;;9499:2:1;47484:60:0;;;9481:21:1;9538:2;9518:18;;;9511:30;9577:26;9557:18;;;9550:54;9621:18;;47484:60:0;9297:348:1;47484:60:0;47592:11;;47583:5;;47577:11;;:3;:11;:::i;:::-;:26;;47555:101;;;;-1:-1:-1;;;47555:101:0;;13401:2:1;47555:101:0;;;13383:21:1;13440:2;13420:18;;;13413:30;-1:-1:-1;;;13459:18:1;;;13452:55;13524:18;;47555:101:0;13199:349:1;47555:101:0;47696:3;47688:5;;:11;;;;:::i;:::-;47675:9;:24;47667:50;;;;-1:-1:-1;;;47667:50:0;;12643:2:1;47667:50:0;;;12625:21:1;12682:2;12662:18;;;12655:30;-1:-1:-1;;;12701:18:1;;;12694:43;12754:18;;47667:50:0;12441:337:1;47667:50:0;47733:9;47728:151;47752:3;47748:1;:7;47728:151;;;47795:5;;47815:30;47825:10;47795:5;47815:9;:30::i;:::-;47860:5;:7;;;:5;:7;;;:::i;:::-;;;;;;47762:117;47757:3;;;;;:::i;:::-;;;;47728:151;;;;47203:683;:::o;24245:327::-;-1:-1:-1;;;;;24380:24:0;;16451:10;24380:24;;24372:62;;;;-1:-1:-1;;;24372:62:0;;8732:2:1;24372:62:0;;;8714:21:1;8771:2;8751:18;;;8744:30;8810:27;8790:18;;;8783:55;8855:18;;24372:62:0;8530:349:1;24372:62:0;16451:10;24447:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24447:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24447:53:0;;;;;;;;;;24516:48;;6666:41:1;;;24447:42:0;;16451:10;24516:48;;6639:18:1;24516:48:0;;;;;;;24245:327;;:::o;25627:365::-;25816:41;16451:10;25849:7;25816:18;:41::i;:::-;25794:140;;;;-1:-1:-1;;;25794:140:0;;;;;;;:::i;:::-;25945:39;25959:4;25965:2;25969:7;25978:5;25945:13;:39::i;:::-;25627:365;;;;:::o;47894:573::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;48020:2:::1;::::0;47972:21:::1;::::0;-1:-1:-1;;;;;48020:2:0::1;48012:39;48046:4;48030:12;47972:21:::0;48040:2:::1;48030:12;:::i;:::-;48029:21;;;;:::i;:::-;48012:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48004:48;;;::::0;::::1;;48079:2;::::0;-1:-1:-1;;;;;48079:2:0::1;48071:39;48105:4;48089:12;:7:::0;48099:2:::1;48089:12;:::i;:::-;48088:21;;;;:::i;:::-;48071:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48063:48;;;::::0;::::1;;48138:2;::::0;-1:-1:-1;;;;;48138:2:0::1;48130:39;48164:4;48148:12;:7:::0;48158:2:::1;48148:12;:::i;:::-;48147:21;;;;:::i;:::-;48130:39;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48122:48;;;::::0;::::1;;48197:2;::::0;-1:-1:-1;;;;;48197:2:0::1;48189:37;48222:3;48207:11;:7:::0;48217:1:::1;48207:11;:::i;:::-;48206:19;;;;:::i;:::-;48189:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48181:46;;;::::0;::::1;;48254:2;::::0;-1:-1:-1;;;;;48254:2:0::1;48246:37;48279:3;48264:11;:7:::0;48274:1:::1;48264:11;:::i;:::-;48263:19;;;;:::i;:::-;48246:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48238:46;;;::::0;::::1;;48311:2;::::0;-1:-1:-1;;;;;48311:2:0::1;48303:37;48336:3;48321:11;:7:::0;48331:1:::1;48321:11;:::i;:::-;48320:19;;;;:::i;:::-;48303:37;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48295:46;;;::::0;::::1;;48368:2;::::0;-1:-1:-1;;;;;48368:2:0::1;48360:40;48395:4;48378:13;:7:::0;48388:3:::1;48378:13;:::i;:::-;48377:22;;;;:::i;:::-;48360:40;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48352:49;;;::::0;::::1;;48428:2;::::0;-1:-1:-1;;;;;48428:2:0::1;48420:38;48454:3;48438:12;:7:::0;48448:2:::1;48438:12;:::i;:::-;48437:20;;;;:::i;:::-;48420:38;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;48412:47;;;::::0;::::1;;47943:524;47894:573::o:0;46690:86::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;46754:5:::1;:14:::0;46690:86::o;22516:468::-;27604:4;27628:16;;;:7;:16;;;;;;22634:13;;-1:-1:-1;;;;;27628:16:0;22665:113;;;;-1:-1:-1;;;22665:113:0;;12985:2:1;22665:113:0;;;12967:21:1;13024:2;13004:18;;;12997:30;13063:34;13043:18;;;13036:62;-1:-1:-1;;;13114:18:1;;;13107:45;13169:19;;22665:113:0;12783:411:1;22665:113:0;22791:21;22815:10;:8;:10::i;:::-;22791:34;;22880:1;22862:7;22856:21;:25;:120;;;;;;;;;;;;;;;;;22925:7;22934:18;:7;:16;:18::i;:::-;22908:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22856:120;22836:140;22516:468;-1:-1:-1;;;22516:468:0:o;48475:114::-;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;48530:51:::1;::::0;48538:10:::1;::::0;48559:21:::1;48530:51:::0;::::1;;;::::0;::::1;::::0;;;48559:21;48538:10;48530:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;44353:229:::0;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44456:22:0;::::1;44434:110;;;::::0;-1:-1:-1;;;44434:110:0;;7563:2:1;44434:110:0::1;::::0;::::1;7545:21:1::0;7602:2;7582:18;;;7575:30;7641:34;7621:18;;;7614:62;-1:-1:-1;;;7692:18:1;;;7685:36;7738:19;;44434:110:0::1;7361:402:1::0;44434:110:0::1;44555:19;44565:8;44555:9;:19::i;46009:104::-:0;43526:6;;-1:-1:-1;;;;;43526:6:0;16451:10;43673:23;43665:68;;;;-1:-1:-1;;;43665:68:0;;;;;;;:::i;:::-;46082:11:::1;:23:::0;46009:104::o;28627:110::-;28703:26;28713:2;28717:7;28703:26;;;;;;;;;;;;:9;:26::i;31662:174::-;31737:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31737:29:0;-1:-1:-1;;;;;31737:29:0;;;;;;;;:24;;31791:23;31737:24;31791:14;:23::i;:::-;-1:-1:-1;;;;;31782:46:0;;;;;;;;;;;31662:174;;:::o;27833:452::-;27962:4;27628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27628:16:0;27984:110;;;;-1:-1:-1;;;27984:110:0;;9086:2:1;27984:110:0;;;9068:21:1;9125:2;9105:18;;;9098:30;9164:34;9144:18;;;9137:62;-1:-1:-1;;;9215:18:1;;;9208:42;9267:19;;27984:110:0;8884:408:1;27984:110:0;28105:13;28121:23;28136:7;28121:14;:23::i;:::-;28105:39;;28174:5;-1:-1:-1;;;;;28163:16:0;:7;-1:-1:-1;;;;;28163:16:0;;:64;;;;28220:7;-1:-1:-1;;;;;28196:31:0;:20;28208:7;28196:11;:20::i;:::-;-1:-1:-1;;;;;28196:31:0;;28163:64;:113;;;-1:-1:-1;;;;;;24814:25:0;;;24785:4;24814:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28244:32;28155:122;27833:452;-1:-1:-1;;;;27833:452:0:o;30929:615::-;31102:4;-1:-1:-1;;;;;31075:31:0;:23;31090:7;31075:14;:23::i;:::-;-1:-1:-1;;;;;31075:31:0;;31053:122;;;;-1:-1:-1;;;31053:122:0;;12233:2:1;31053:122:0;;;12215:21:1;12272:2;12252:18;;;12245:30;12311:34;12291:18;;;12284:62;-1:-1:-1;;;12362:18:1;;;12355:39;12411:19;;31053:122:0;12031:405:1;31053:122:0;-1:-1:-1;;;;;31194:16:0;;31186:65;;;;-1:-1:-1;;;31186:65:0;;8327:2:1;31186:65:0;;;8309:21:1;8366:2;8346:18;;;8339:30;8405:34;8385:18;;;8378:62;-1:-1:-1;;;8456:18:1;;;8449:34;8500:19;;31186:65:0;8125:400:1;31186:65:0;31368:29;31385:1;31389:7;31368:8;:29::i;:::-;-1:-1:-1;;;;;31410:15:0;;;;;;:9;:15;;;;;:20;;31429:1;;31410:15;:20;;31429:1;;31410:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31441:13:0;;;;;;:9;:13;;;;;:18;;31458:1;;31441:13;:18;;31458:1;;31441:18;:::i;:::-;;;;-1:-1:-1;;31470:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31470:21:0;-1:-1:-1;;;;;31470:21:0;;;;;;;;;31509:27;;31470:16;;31509:27;;;;;;;30929:615;;;:::o;44590:173::-;44665:6;;;-1:-1:-1;;;;;44682:17:0;;;-1:-1:-1;;;;;;44682:17:0;;;;;;;44715:40;;44665:6;;;44682:17;44665:6;;44715:40;;44646:16;;44715:40;44635:128;44590:173;:::o;26874:352::-;27031:28;27041:4;27047:2;27051:7;27031:9;:28::i;:::-;27092:48;27115:4;27121:2;27125:7;27134:5;27092:22;:48::i;:::-;27070:148;;;;-1:-1:-1;;;27070:148:0;;;;;;;:::i;46784:105::-;46836:13;46869:12;46862:19;;;;;:::i;16892:723::-;16948:13;17169:10;17165:53;;-1:-1:-1;;17196:10:0;;;;;;;;;;;;-1:-1:-1;;;17196:10:0;;;;;16892:723::o;17165:53::-;17243:5;17228:12;17284:78;17291:9;;17284:78;;17317:8;;;;:::i;:::-;;-1:-1:-1;17340:10:0;;-1:-1:-1;17348:2:0;17340:10;;:::i;:::-;;;17284:78;;;17372:19;17404:6;17394:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17394:17:0;;17372:39;;17422:154;17429:10;;17422:154;;17456:11;17466:1;17456:11;;:::i;:::-;;-1:-1:-1;17525:10:0;17533:2;17525:5;:10;:::i;:::-;17512:24;;:2;:24;:::i;:::-;17499:39;;17482:6;17489;17482:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17482:56:0;;;;;;;;-1:-1:-1;17553:11:0;17562:2;17553:11;;:::i;:::-;;;17422:154;;28964:321;29094:18;29100:2;29104:7;29094:5;:18::i;:::-;29145:54;29176:1;29180:2;29184:7;29193:5;29145:22;:54::i;:::-;29123:154;;;;-1:-1:-1;;;29123:154:0;;;;;;;:::i;32401:984::-;32556:4;-1:-1:-1;;;;;32577:13:0;;8493:20;8541:8;32573:805;;32630:175;;-1:-1:-1;;;32630:175:0;;-1:-1:-1;;;;;32630:36:0;;;;;:175;;16451:10;;32724:4;;32751:7;;32781:5;;32630:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32630:175:0;;;;;;;;-1:-1:-1;;32630:175:0;;;;;;;;;;;;:::i;:::-;;;32609:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32992:13:0;;32988:320;;33035:108;;-1:-1:-1;;;33035:108:0;;;;;;;:::i;32988:320::-;33258:6;33252:13;33243:6;33239:2;33235:15;33228:38;32609:714;-1:-1:-1;;;;;;32869:55:0;-1:-1:-1;;;32869:55:0;;-1:-1:-1;32862:62:0;;32573:805;-1:-1:-1;33362:4:0;32401:984;;;;;;:::o;29621:382::-;-1:-1:-1;;;;;29701:16:0;;29693:61;;;;-1:-1:-1;;;29693:61:0;;11098:2:1;29693:61:0;;;11080:21:1;;;11117:18;;;11110:30;11176:34;11156:18;;;11149:62;11228:18;;29693:61:0;10896:356:1;29693:61:0;27604:4;27628:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27628:16:0;:30;29765:58;;;;-1:-1:-1;;;29765:58:0;;7970:2:1;29765:58:0;;;7952:21:1;8009:2;7989:18;;;7982:30;8048;8028:18;;;8021:58;8096:18;;29765:58:0;7768:352:1;29765:58:0;-1:-1:-1;;;;;29894:13:0;;;;;;:9;:13;;;;;:18;;29911:1;;29894:13;:18;;29911:1;;29894:18;:::i;:::-;;;;-1:-1:-1;;29923:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29923:21:0;-1:-1:-1;;;;;29923:21:0;;;;;;;;29962:33;;29923:16;;;29962:33;;29923:16;;29962:33;29621:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:980::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:2;1427:38;1461:2;1450:9;1446:18;1427:38;:::i;:::-;1417:48;;1512:2;1501:9;1497:18;1484:32;1474:42;;1567:2;1556:9;1552:18;1539:32;1590:18;1631:2;1623:6;1620:14;1617:34;;;1647:1;1644;1637:12;1617:34;1685:6;1674:9;1670:22;1660:32;;1730:7;1723:4;1719:2;1715:13;1711:27;1701:55;;1752:1;1749;1742:12;1701:55;1788:2;1775:16;1810:2;1806;1803:10;1800:36;;;1816:18;;:::i;:::-;1858:53;1901:2;1882:13;;-1:-1:-1;;1878:27:1;1874:36;;1858:53;:::i;:::-;1845:66;;1934:2;1927:5;1920:17;1974:7;1969:2;1964;1960;1956:11;1952:20;1949:33;1946:53;;;1995:1;1992;1985:12;1946:53;2050:2;2045;2041;2037:11;2032:2;2025:5;2021:14;2008:45;2094:1;2089:2;2084;2077:5;2073:14;2069:23;2062:34;;2115:5;2105:15;;;;;1146:980;;;;;;;:::o;2131:254::-;2196:6;2204;2257:2;2245:9;2236:7;2232:23;2228:32;2225:52;;;2273:1;2270;2263:12;2225:52;2296:29;2315:9;2296:29;:::i;:::-;2286:39;;2344:35;2375:2;2364:9;2360:18;2344:35;:::i;2390:254::-;2458:6;2466;2519:2;2507:9;2498:7;2494:23;2490:32;2487:52;;;2535:1;2532;2525:12;2487:52;2558:29;2577:9;2558:29;:::i;:::-;2548:39;2634:2;2619:18;;;;2606:32;;-1:-1:-1;;;2390:254:1:o;2649:963::-;2733:6;2764:2;2807;2795:9;2786:7;2782:23;2778:32;2775:52;;;2823:1;2820;2813:12;2775:52;2863:9;2850:23;2892:18;2933:2;2925:6;2922:14;2919:34;;;2949:1;2946;2939:12;2919:34;2987:6;2976:9;2972:22;2962:32;;3032:7;3025:4;3021:2;3017:13;3013:27;3003:55;;3054:1;3051;3044:12;3003:55;3090:2;3077:16;3112:2;3108;3105:10;3102:36;;;3118:18;;:::i;:::-;3164:2;3161:1;3157:10;3147:20;;3187:28;3211:2;3207;3203:11;3187:28;:::i;:::-;3249:15;;;3280:12;;;;3312:11;;;3342;;;3338:20;;3335:33;-1:-1:-1;3332:53:1;;;3381:1;3378;3371:12;3332:53;3403:1;3394:10;;3413:169;3427:2;3424:1;3421:9;3413:169;;;3484:23;3503:3;3484:23;:::i;:::-;3472:36;;3445:1;3438:9;;;;;3528:12;;;;3560;;3413:169;;;-1:-1:-1;3601:5:1;2649:963;-1:-1:-1;;;;;;;;2649:963:1:o;3617:180::-;3673:6;3726:2;3714:9;3705:7;3701:23;3697:32;3694:52;;;3742:1;3739;3732:12;3694:52;3765:26;3781:9;3765:26;:::i;3802:245::-;3860:6;3913:2;3901:9;3892:7;3888:23;3884:32;3881:52;;;3929:1;3926;3919:12;3881:52;3968:9;3955:23;3987:30;4011:5;3987:30;:::i;4052:249::-;4121:6;4174:2;4162:9;4153:7;4149:23;4145:32;4142:52;;;4190:1;4187;4180:12;4142:52;4222:9;4216:16;4241:30;4265:5;4241:30;:::i;4306:592::-;4377:6;4385;4438:2;4426:9;4417:7;4413:23;4409:32;4406:52;;;4454:1;4451;4444:12;4406:52;4494:9;4481:23;4523:18;4564:2;4556:6;4553:14;4550:34;;;4580:1;4577;4570:12;4550:34;4618:6;4607:9;4603:22;4593:32;;4663:7;4656:4;4652:2;4648:13;4644:27;4634:55;;4685:1;4682;4675:12;4634:55;4725:2;4712:16;4751:2;4743:6;4740:14;4737:34;;;4767:1;4764;4757:12;4737:34;4812:7;4807:2;4798:6;4794:2;4790:15;4786:24;4783:37;4780:57;;;4833:1;4830;4823:12;4780:57;4864:2;4856:11;;;;;4886:6;;-1:-1:-1;4306:592:1;;-1:-1:-1;;;;4306:592:1:o;4903:180::-;4962:6;5015:2;5003:9;4994:7;4990:23;4986:32;4983:52;;;5031:1;5028;5021:12;4983:52;-1:-1:-1;5054:23:1;;4903:180;-1:-1:-1;4903:180:1:o;5088:257::-;5129:3;5167:5;5161:12;5194:6;5189:3;5182:19;5210:63;5266:6;5259:4;5254:3;5250:14;5243:4;5236:5;5232:16;5210:63;:::i;:::-;5327:2;5306:15;-1:-1:-1;;5302:29:1;5293:39;;;;5334:4;5289:50;;5088:257;-1:-1:-1;;5088:257:1:o;5350:470::-;5529:3;5567:6;5561:13;5583:53;5629:6;5624:3;5617:4;5609:6;5605:17;5583:53;:::i;:::-;5699:13;;5658:16;;;;5721:57;5699:13;5658:16;5755:4;5743:17;;5721:57;:::i;:::-;5794:20;;5350:470;-1:-1:-1;;;;5350:470:1:o;6033:488::-;-1:-1:-1;;;;;6302:15:1;;;6284:34;;6354:15;;6349:2;6334:18;;6327:43;6401:2;6386:18;;6379:34;;;6449:3;6444:2;6429:18;;6422:31;;;6227:4;;6470:45;;6495:19;;6487:6;6470:45;:::i;:::-;6462:53;6033:488;-1:-1:-1;;;;;;6033:488:1:o;6718:219::-;6867:2;6856:9;6849:21;6830:4;6887:44;6927:2;6916:9;6912:18;6904:6;6887:44;:::i;6942:414::-;7144:2;7126:21;;;7183:2;7163:18;;;7156:30;7222:34;7217:2;7202:18;;7195:62;-1:-1:-1;;;7288:2:1;7273:18;;7266:48;7346:3;7331:19;;6942:414::o;11670:356::-;11872:2;11854:21;;;11891:18;;;11884:30;11950:34;11945:2;11930:18;;11923:62;12017:2;12002:18;;11670:356::o;14726:413::-;14928:2;14910:21;;;14967:2;14947:18;;;14940:30;15006:34;15001:2;14986:18;;14979:62;-1:-1:-1;;;15072:2:1;15057:18;;15050:47;15129:3;15114:19;;14726:413::o;15326:275::-;15397:2;15391:9;15462:2;15443:13;;-1:-1:-1;;15439:27:1;15427:40;;15497:18;15482:34;;15518:22;;;15479:62;15476:88;;;15544:18;;:::i;:::-;15580:2;15573:22;15326:275;;-1:-1:-1;15326:275:1:o;15606:128::-;15646:3;15677:1;15673:6;15670:1;15667:13;15664:39;;;15683:18;;:::i;:::-;-1:-1:-1;15719:9:1;;15606:128::o;15739:120::-;15779:1;15805;15795:35;;15810:18;;:::i;:::-;-1:-1:-1;15844:9:1;;15739:120::o;15864:168::-;15904:7;15970:1;15966;15962:6;15958:14;15955:1;15952:21;15947:1;15940:9;15933:17;15929:45;15926:71;;;15977:18;;:::i;:::-;-1:-1:-1;16017:9:1;;15864:168::o;16037:125::-;16077:4;16105:1;16102;16099:8;16096:34;;;16110:18;;:::i;:::-;-1:-1:-1;16147:9:1;;16037:125::o;16167:258::-;16239:1;16249:113;16263:6;16260:1;16257:13;16249:113;;;16339:11;;;16333:18;16320:11;;;16313:39;16285:2;16278:10;16249:113;;;16380:6;16377:1;16374:13;16371:48;;;-1:-1:-1;;16415:1:1;16397:16;;16390:27;16167:258::o;16430:380::-;16509:1;16505:12;;;;16552;;;16573:61;;16627:4;16619:6;16615:17;16605:27;;16573:61;16680:2;16672:6;16669:14;16649:18;16646:38;16643:161;;;16726:10;16721:3;16717:20;16714:1;16707:31;16761:4;16758:1;16751:15;16789:4;16786:1;16779:15;16643:161;;16430:380;;;:::o;16815:135::-;16854:3;-1:-1:-1;;16875:17:1;;16872:43;;;16895:18;;:::i;:::-;-1:-1:-1;16942:1:1;16931:13;;16815:135::o;16955:112::-;16987:1;17013;17003:35;;17018:18;;:::i;:::-;-1:-1:-1;17052:9:1;;16955:112::o;17072:127::-;17133:10;17128:3;17124:20;17121:1;17114:31;17164:4;17161:1;17154:15;17188:4;17185:1;17178:15;17204:127;17265:10;17260:3;17256:20;17253:1;17246:31;17296:4;17293:1;17286:15;17320:4;17317:1;17310:15;17336:127;17397:10;17392:3;17388:20;17385:1;17378:31;17428:4;17425:1;17418:15;17452:4;17449:1;17442:15;17468:127;17529:10;17524:3;17520:20;17517:1;17510:31;17560:4;17557:1;17550:15;17584:4;17581:1;17574:15;17600:131;-1:-1:-1;;;;;;17674:32:1;;17664:43;;17654:71;;17721:1;17718;17711:12

Swarm Source

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