ETH Price: $3,114.19 (+1.49%)
Gas: 7 Gwei

Token

SameKongz (SKONGZ)
 

Overview

Max Total Supply

3,888 SKONGZ

Holders

940

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
hattorihanso.eth
Balance
2 SKONGZ
0x15bd815a3f6fb351b06df8b0b82e0be63a529270
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SameKongz

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-07
*/

// Sources flattened with hardhat v2.6.5 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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/[email protected]


pragma solidity ^0.8.0;

/**
 * @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/[email protected]


pragma solidity ^0.8.0;

/**
 * @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/[email protected]


pragma solidity ^0.8.0;

/**
 * @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/[email protected]


pragma solidity ^0.8.0;

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // 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/[email protected]


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/[email protected]


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/[email protected]


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/[email protected]


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.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/[email protected]


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/[email protected]


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/security/[email protected]


pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}


// File @openzeppelin/contracts/access/[email protected]


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);
    }
}


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}


// File @openzeppelin/contracts/utils/[email protected]


pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}


// File contracts/SameKongNFT.sol

pragma solidity ^0.8.2;






contract SameKongz is
    ERC721,
    ERC721Enumerable,
    Pausable,
    Ownable,
    ERC721Burnable
{
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    string public baseURI;
    uint256 public cost = 0.05 ether;
    uint256 public maxSupply = 3888;
    uint256 public maxMintAmount = 10;

    constructor(string memory defaultBaseURI) ERC721("SameKongz", "SKONGZ") {
        setBaseURI(defaultBaseURI);
    }

    // Minting

    function mint(address _to, uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "amount must be >0");
        require(_mintAmount <= maxMintAmount, "amount must < max");
        require(supply + _mintAmount <= maxSupply, "Mint sold out!");

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "insufficient funds");
        }

        for (uint256 i = 1; i <= _mintAmount; i++) {
            _tokenIdCounter.increment();
            _safeMint(_to, _tokenIdCounter.current());
        }
    }

    function withdraw() public payable onlyOwner {
        require(
            payable(msg.sender).send(address(this).balance),
            "could not withdraw"
        );
    }

    // internal
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

    function setBaseURI(string memory _newURI) public onlyOwner {
        baseURI = _newURI;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function safeMint(address to) public onlyOwner {
        _tokenIdCounter.increment();
        _safeMint(to, _tokenIdCounter.current());
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal override(ERC721, ERC721Enumerable) whenNotPaused {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // The following functions are overrides required by Solidity.

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"defaultBaseURI","type":"string"}],"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"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":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","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":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newURI","type":"string"}],"name":"setBaseURI","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

608060405266b1a2bc2ec50000600d55610f30600e55600a600f553480156200002757600080fd5b5060405162004b0c38038062004b0c83398181016040528101906200004d919062000405565b6040518060400160405280600981526020017f53616d654b6f6e677a00000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f534b4f4e475a00000000000000000000000000000000000000000000000000008152508160009080519060200190620000d1929190620002e3565b508060019080519060200190620000ea929190620002e3565b5050506000600a60006101000a81548160ff021916908315150217905550620001286200011c6200014060201b60201c565b6200014860201b60201c565b62000139816200020e60201b60201c565b506200063d565b600033905090565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200021e6200014060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000244620002b960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200029d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002949062000471565b60405180910390fd5b80600c9080519060200190620002b5929190620002e3565b5050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002f19062000539565b90600052602060002090601f01602090048101928262000315576000855562000361565b82601f106200033057805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036057825182559160200191906001019062000343565b5b50905062000370919062000374565b5090565b5b808211156200038f57600081600090555060010162000375565b5090565b6000620003aa620003a484620004bc565b62000493565b905082815260208101848484011115620003c357600080fd5b620003d084828562000503565b509392505050565b600082601f830112620003ea57600080fd5b8151620003fc84826020860162000393565b91505092915050565b6000602082840312156200041857600080fd5b600082015167ffffffffffffffff8111156200043357600080fd5b6200044184828501620003d8565b91505092915050565b600062000459602083620004f2565b9150620004668262000614565b602082019050919050565b600060208201905081810360008301526200048c816200044a565b9050919050565b60006200049f620004b2565b9050620004ad82826200056f565b919050565b6000604051905090565b600067ffffffffffffffff821115620004da57620004d9620005d4565b5b620004e58262000603565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200052357808201518184015260208101905062000506565b8381111562000533576000848401525b50505050565b600060028204905060018216806200055257607f821691505b60208210811415620005695762000568620005a5565b5b50919050565b6200057a8262000603565b810181811067ffffffffffffffff821117156200059c576200059b620005d4565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6144bf806200064d6000396000f3fe6080604052600436106101d85760003560e01c80634f6ccce7116101025780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd14610656578063d5abeb0114610693578063e985e9c5146106be578063f2fde38b146106fb576101d8565b80638da5cb5b146105ae57806395d89b41146105d9578063a22cb46514610604578063b88d4fde1461062d576101d8565b80636c0360eb116100d15780636c0360eb1461051857806370a0823114610543578063715018a6146105805780638456cb5914610597576101d8565b80634f6ccce71461044a57806355f804b3146104875780635c975abb146104b05780636352211e146104db576101d8565b806323b872dd1161017a57806340c10f191161014957806340c10f19146103b357806340d097c3146103cf57806342842e0e146103f857806342966c6814610421576101d8565b806323b872dd1461032c5780632f745c59146103555780633ccfd60b146103925780633f4ba83a1461039c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806318160ddd146102d6578063239c70ae14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061304d565b610724565b60405161021191906135f2565b60405180910390f35b34801561022657600080fd5b5061022f610736565b60405161023c919061360d565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906130e0565b6107c8565b604051610279919061358b565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190613011565b61084d565b005b3480156102b757600080fd5b506102c0610965565b6040516102cd919061396f565b60405180910390f35b3480156102e257600080fd5b506102eb61096b565b6040516102f8919061396f565b60405180910390f35b34801561030d57600080fd5b50610316610978565b604051610323919061396f565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612f0b565b61097e565b005b34801561036157600080fd5b5061037c60048036038101906103779190613011565b6109de565b604051610389919061396f565b60405180910390f35b61039a610a83565b005b3480156103a857600080fd5b506103b1610b75565b005b6103cd60048036038101906103c89190613011565b610bfb565b005b3480156103db57600080fd5b506103f660048036038101906103f19190612ea6565b610dae565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612f0b565b610e4a565b005b34801561042d57600080fd5b50610448600480360381019061044391906130e0565b610e6a565b005b34801561045657600080fd5b50610471600480360381019061046c91906130e0565b610ec6565b60405161047e919061396f565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061309f565b610f5d565b005b3480156104bc57600080fd5b506104c5610ff3565b6040516104d291906135f2565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906130e0565b61100a565b60405161050f919061358b565b60405180910390f35b34801561052457600080fd5b5061052d6110bc565b60405161053a919061360d565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612ea6565b61114a565b604051610577919061396f565b60405180910390f35b34801561058c57600080fd5b50610595611202565b005b3480156105a357600080fd5b506105ac61128a565b005b3480156105ba57600080fd5b506105c3611310565b6040516105d0919061358b565b60405180910390f35b3480156105e557600080fd5b506105ee61133a565b6040516105fb919061360d565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612fd5565b6113cc565b005b34801561063957600080fd5b50610654600480360381019061064f9190612f5a565b61154d565b005b34801561066257600080fd5b5061067d600480360381019061067891906130e0565b6115af565b60405161068a919061360d565b60405180910390f35b34801561069f57600080fd5b506106a8611656565b6040516106b5919061396f565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612ecf565b61165c565b6040516106f291906135f2565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612ea6565b6116f0565b005b600061072f826117e8565b9050919050565b60606000805461074590613c1f565b80601f016020809104026020016040519081016040528092919081815260200182805461077190613c1f565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d382611862565b610812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108099061382f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108588261100a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c0906138cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e86118ce565b73ffffffffffffffffffffffffffffffffffffffff1614806109175750610916816109116118ce565b61165c565b5b610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d9061378f565b60405180910390fd5b61096083836118d6565b505050565b600d5481565b6000600880549050905090565b600f5481565b61098f6109896118ce565b8261198f565b6109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c59061390f565b60405180910390fd5b6109d9838383611a6d565b505050565b60006109e98361114a565b8210610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a219061366f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a8b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16610aa9611310565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061386f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a9061362f565b60405180910390fd5b565b610b7d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16610b9b611310565b73ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be89061386f565b60405180910390fd5b610bf9611cc9565b565b6000610c0561096b565b905060008211610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c419061374f565b60405180910390fd5b600f54821115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c869061384f565b60405180910390fd5b600e548282610c9e9190613a54565b1115610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061380f565b60405180910390fd5b610ce7611310565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d6a5781600d54610d279190613adb565b341015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d60906138ef565b60405180910390fd5b5b6000600190505b828111610da857610d82600b611d6b565b610d9584610d90600b611d81565b611d8f565b8080610da090613c82565b915050610d71565b50505050565b610db66118ce565b73ffffffffffffffffffffffffffffffffffffffff16610dd4611310565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061386f565b60405180910390fd5b610e34600b611d6b565b610e4781610e42600b611d81565b611d8f565b50565b610e658383836040518060200160405280600081525061154d565b505050565b610e7b610e756118ce565b8261198f565b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb19061394f565b60405180910390fd5b610ec381611dad565b50565b6000610ed061096b565b8210610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f089061392f565b60405180910390fd5b60088281548110610f4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f656118ce565b73ffffffffffffffffffffffffffffffffffffffff16610f83611310565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd09061386f565b60405180910390fd5b80600c9080519060200190610fef929190612cca565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906137cf565b60405180910390fd5b80915050919050565b600c80546110c990613c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546110f590613c1f565b80156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906137af565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61120a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16611228611310565b73ffffffffffffffffffffffffffffffffffffffff161461127e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112759061386f565b60405180910390fd5b6112886000611ebe565b565b6112926118ce565b73ffffffffffffffffffffffffffffffffffffffff166112b0611310565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd9061386f565b60405180910390fd5b61130e611f84565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461134990613c1f565b80601f016020809104026020016040519081016040528092919081815260200182805461137590613c1f565b80156113c25780601f10611397576101008083540402835291602001916113c2565b820191906000526020600020905b8154815290600101906020018083116113a557829003601f168201915b5050505050905090565b6113d46118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114399061370f565b60405180910390fd5b806005600061144f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114fc6118ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154191906135f2565b60405180910390a35050565b61155e6115586118ce565b8361198f565b61159d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115949061390f565b60405180910390fd5b6115a984848484612027565b50505050565b60606115ba82611862565b6115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906138af565b60405180910390fd5b6000611603612083565b90506000815111611623576040518060200160405280600081525061164e565b8061162d84612115565b60405160200161163e929190613567565b6040516020818303038152906040525b915050919050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f86118ce565b73ffffffffffffffffffffffffffffffffffffffff16611716611310565b73ffffffffffffffffffffffffffffffffffffffff161461176c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117639061386f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d3906136af565b60405180910390fd5b6117e581611ebe565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061185b575061185a826122c2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119498361100a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061199a82611862565b6119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d09061372f565b60405180910390fd5b60006119e48361100a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5357508373ffffffffffffffffffffffffffffffffffffffff16611a3b846107c8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a645750611a63818561165c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8d8261100a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada9061388f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906136ef565b60405180910390fd5b611b5e8383836123a4565b611b696000826118d6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb99190613b35565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c109190613a54565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611cd1610ff3565b611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d079061364f565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d546118ce565b604051611d61919061358b565b60405180910390a1565b6001816000016000828254019250508190555050565b600081600001549050919050565b611da98282604051806020016040528060008152506123fc565b5050565b6000611db88261100a565b9050611dc6816000846123a4565b611dd16000836118d6565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e219190613b35565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f8c610ff3565b15611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc39061376f565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120106118ce565b60405161201d919061358b565b60405180910390a1565b612032848484611a6d565b61203e84848484612457565b61207d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120749061368f565b60405180910390fd5b50505050565b6060600c805461209290613c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546120be90613c1f565b801561210b5780601f106120e05761010080835404028352916020019161210b565b820191906000526020600020905b8154815290600101906020018083116120ee57829003601f168201915b5050505050905090565b6060600082141561215d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122bd565b600082905060005b6000821461218f57808061217890613c82565b915050600a826121889190613aaa565b9150612165565b60008167ffffffffffffffff8111156121d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122035781602001600182028036833780820191505090505b5090505b600085146122b65760018261221c9190613b35565b9150600a8561222b9190613ccb565b60306122379190613a54565b60f81b818381518110612273577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122af9190613aaa565b9450612207565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061239d575061239c826125ee565b5b9050919050565b6123ac610ff3565b156123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061376f565b60405180910390fd5b6123f7838383612658565b505050565b612406838361276c565b6124136000848484612457565b612452576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124499061368f565b60405180910390fd5b505050565b60006124788473ffffffffffffffffffffffffffffffffffffffff1661293a565b156125e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a16118ce565b8786866040518563ffffffff1660e01b81526004016124c394939291906135a6565b602060405180830381600087803b1580156124dd57600080fd5b505af192505050801561250e57506040513d601f19601f8201168201806040525081019061250b9190613076565b60015b612591573d806000811461253e576040519150601f19603f3d011682016040523d82523d6000602084013e612543565b606091505b50600081511415612589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125809061368f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125e6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61266383838361294d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126a6576126a181612952565b6126e5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126e4576126e3838261299b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127285761272381612b08565b612767565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612766576127658282612c4b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d3906137ef565b60405180910390fd5b6127e581611862565b15612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c906136cf565b60405180910390fd5b612831600083836123a4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128819190613a54565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129a88461114a565b6129b29190613b35565b9050600060076000848152602001908152602001600020549050818114612a97576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b1c9190613b35565b9050600060096000848152602001908152602001600020549050600060088381548110612b72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612bba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c568361114a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612cd690613c1f565b90600052602060002090601f016020900481019282612cf85760008555612d3f565b82601f10612d1157805160ff1916838001178555612d3f565b82800160010185558215612d3f579182015b82811115612d3e578251825591602001919060010190612d23565b5b509050612d4c9190612d50565b5090565b5b80821115612d69576000816000905550600101612d51565b5090565b6000612d80612d7b846139af565b61398a565b905082815260208101848484011115612d9857600080fd5b612da3848285613bdd565b509392505050565b6000612dbe612db9846139e0565b61398a565b905082815260208101848484011115612dd657600080fd5b612de1848285613bdd565b509392505050565b600081359050612df88161442d565b92915050565b600081359050612e0d81614444565b92915050565b600081359050612e228161445b565b92915050565b600081519050612e378161445b565b92915050565b600082601f830112612e4e57600080fd5b8135612e5e848260208601612d6d565b91505092915050565b600082601f830112612e7857600080fd5b8135612e88848260208601612dab565b91505092915050565b600081359050612ea081614472565b92915050565b600060208284031215612eb857600080fd5b6000612ec684828501612de9565b91505092915050565b60008060408385031215612ee257600080fd5b6000612ef085828601612de9565b9250506020612f0185828601612de9565b9150509250929050565b600080600060608486031215612f2057600080fd5b6000612f2e86828701612de9565b9350506020612f3f86828701612de9565b9250506040612f5086828701612e91565b9150509250925092565b60008060008060808587031215612f7057600080fd5b6000612f7e87828801612de9565b9450506020612f8f87828801612de9565b9350506040612fa087828801612e91565b925050606085013567ffffffffffffffff811115612fbd57600080fd5b612fc987828801612e3d565b91505092959194509250565b60008060408385031215612fe857600080fd5b6000612ff685828601612de9565b925050602061300785828601612dfe565b9150509250929050565b6000806040838503121561302457600080fd5b600061303285828601612de9565b925050602061304385828601612e91565b9150509250929050565b60006020828403121561305f57600080fd5b600061306d84828501612e13565b91505092915050565b60006020828403121561308857600080fd5b600061309684828501612e28565b91505092915050565b6000602082840312156130b157600080fd5b600082013567ffffffffffffffff8111156130cb57600080fd5b6130d784828501612e67565b91505092915050565b6000602082840312156130f257600080fd5b600061310084828501612e91565b91505092915050565b61311281613b69565b82525050565b61312181613b7b565b82525050565b600061313282613a11565b61313c8185613a27565b935061314c818560208601613bec565b61315581613db8565b840191505092915050565b600061316b82613a1c565b6131758185613a38565b9350613185818560208601613bec565b61318e81613db8565b840191505092915050565b60006131a482613a1c565b6131ae8185613a49565b93506131be818560208601613bec565b80840191505092915050565b60006131d7601283613a38565b91506131e282613dc9565b602082019050919050565b60006131fa601483613a38565b915061320582613df2565b602082019050919050565b600061321d602b83613a38565b915061322882613e1b565b604082019050919050565b6000613240603283613a38565b915061324b82613e6a565b604082019050919050565b6000613263602683613a38565b915061326e82613eb9565b604082019050919050565b6000613286601c83613a38565b915061329182613f08565b602082019050919050565b60006132a9602483613a38565b91506132b482613f31565b604082019050919050565b60006132cc601983613a38565b91506132d782613f80565b602082019050919050565b60006132ef602c83613a38565b91506132fa82613fa9565b604082019050919050565b6000613312601183613a38565b915061331d82613ff8565b602082019050919050565b6000613335601083613a38565b915061334082614021565b602082019050919050565b6000613358603883613a38565b91506133638261404a565b604082019050919050565b600061337b602a83613a38565b915061338682614099565b604082019050919050565b600061339e602983613a38565b91506133a9826140e8565b604082019050919050565b60006133c1602083613a38565b91506133cc82614137565b602082019050919050565b60006133e4600e83613a38565b91506133ef82614160565b602082019050919050565b6000613407602c83613a38565b915061341282614189565b604082019050919050565b600061342a601183613a38565b9150613435826141d8565b602082019050919050565b600061344d602083613a38565b915061345882614201565b602082019050919050565b6000613470602983613a38565b915061347b8261422a565b604082019050919050565b6000613493602f83613a38565b915061349e82614279565b604082019050919050565b60006134b6602183613a38565b91506134c1826142c8565b604082019050919050565b60006134d9601283613a38565b91506134e482614317565b602082019050919050565b60006134fc603183613a38565b915061350782614340565b604082019050919050565b600061351f602c83613a38565b915061352a8261438f565b604082019050919050565b6000613542603083613a38565b915061354d826143de565b604082019050919050565b61356181613bd3565b82525050565b60006135738285613199565b915061357f8284613199565b91508190509392505050565b60006020820190506135a06000830184613109565b92915050565b60006080820190506135bb6000830187613109565b6135c86020830186613109565b6135d56040830185613558565b81810360608301526135e78184613127565b905095945050505050565b60006020820190506136076000830184613118565b92915050565b600060208201905081810360008301526136278184613160565b905092915050565b60006020820190508181036000830152613648816131ca565b9050919050565b60006020820190508181036000830152613668816131ed565b9050919050565b6000602082019050818103600083015261368881613210565b9050919050565b600060208201905081810360008301526136a881613233565b9050919050565b600060208201905081810360008301526136c881613256565b9050919050565b600060208201905081810360008301526136e881613279565b9050919050565b600060208201905081810360008301526137088161329c565b9050919050565b60006020820190508181036000830152613728816132bf565b9050919050565b60006020820190508181036000830152613748816132e2565b9050919050565b6000602082019050818103600083015261376881613305565b9050919050565b6000602082019050818103600083015261378881613328565b9050919050565b600060208201905081810360008301526137a88161334b565b9050919050565b600060208201905081810360008301526137c88161336e565b9050919050565b600060208201905081810360008301526137e881613391565b9050919050565b60006020820190508181036000830152613808816133b4565b9050919050565b60006020820190508181036000830152613828816133d7565b9050919050565b60006020820190508181036000830152613848816133fa565b9050919050565b600060208201905081810360008301526138688161341d565b9050919050565b6000602082019050818103600083015261388881613440565b9050919050565b600060208201905081810360008301526138a881613463565b9050919050565b600060208201905081810360008301526138c881613486565b9050919050565b600060208201905081810360008301526138e8816134a9565b9050919050565b60006020820190508181036000830152613908816134cc565b9050919050565b60006020820190508181036000830152613928816134ef565b9050919050565b6000602082019050818103600083015261394881613512565b9050919050565b6000602082019050818103600083015261396881613535565b9050919050565b60006020820190506139846000830184613558565b92915050565b60006139946139a5565b90506139a08282613c51565b919050565b6000604051905090565b600067ffffffffffffffff8211156139ca576139c9613d89565b5b6139d382613db8565b9050602081019050919050565b600067ffffffffffffffff8211156139fb576139fa613d89565b5b613a0482613db8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5f82613bd3565b9150613a6a83613bd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9f57613a9e613cfc565b5b828201905092915050565b6000613ab582613bd3565b9150613ac083613bd3565b925082613ad057613acf613d2b565b5b828204905092915050565b6000613ae682613bd3565b9150613af183613bd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2a57613b29613cfc565b5b828202905092915050565b6000613b4082613bd3565b9150613b4b83613bd3565b925082821015613b5e57613b5d613cfc565b5b828203905092915050565b6000613b7482613bb3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c0a578082015181840152602081019050613bef565b83811115613c19576000848401525b50505050565b60006002820490506001821680613c3757607f821691505b60208210811415613c4b57613c4a613d5a565b5b50919050565b613c5a82613db8565b810181811067ffffffffffffffff82111715613c7957613c78613d89565b5b80604052505050565b6000613c8d82613bd3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc057613cbf613cfc565b5b600182019050919050565b6000613cd682613bd3565b9150613ce183613bd3565b925082613cf157613cf0613d2b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f636f756c64206e6f742077697468647261770000000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f616d6f756e74206d757374206265203e30000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d696e7420736f6c64206f757421000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f616d6f756e74206d757374203c206d6178000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61443681613b69565b811461444157600080fd5b50565b61444d81613b7b565b811461445857600080fd5b50565b61446481613b87565b811461446f57600080fd5b50565b61447b81613bd3565b811461448657600080fd5b5056fea2646970667358221220d8639b38eea3d469c82aed6a55525f5de63d22b8db109f87c878b2d03b4a16af64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696468657074727a7569656364336674656c7034636e36766b66693537656b697a687873336f337574717535356d767879706669342f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80634f6ccce7116101025780638da5cb5b11610095578063c87b56dd11610064578063c87b56dd14610656578063d5abeb0114610693578063e985e9c5146106be578063f2fde38b146106fb576101d8565b80638da5cb5b146105ae57806395d89b41146105d9578063a22cb46514610604578063b88d4fde1461062d576101d8565b80636c0360eb116100d15780636c0360eb1461051857806370a0823114610543578063715018a6146105805780638456cb5914610597576101d8565b80634f6ccce71461044a57806355f804b3146104875780635c975abb146104b05780636352211e146104db576101d8565b806323b872dd1161017a57806340c10f191161014957806340c10f19146103b357806340d097c3146103cf57806342842e0e146103f857806342966c6814610421576101d8565b806323b872dd1461032c5780632f745c59146103555780633ccfd60b146103925780633f4ba83a1461039c576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806313faede6146102ab57806318160ddd146102d6578063239c70ae14610301576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff919061304d565b610724565b60405161021191906135f2565b60405180910390f35b34801561022657600080fd5b5061022f610736565b60405161023c919061360d565b60405180910390f35b34801561025157600080fd5b5061026c600480360381019061026791906130e0565b6107c8565b604051610279919061358b565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190613011565b61084d565b005b3480156102b757600080fd5b506102c0610965565b6040516102cd919061396f565b60405180910390f35b3480156102e257600080fd5b506102eb61096b565b6040516102f8919061396f565b60405180910390f35b34801561030d57600080fd5b50610316610978565b604051610323919061396f565b60405180910390f35b34801561033857600080fd5b50610353600480360381019061034e9190612f0b565b61097e565b005b34801561036157600080fd5b5061037c60048036038101906103779190613011565b6109de565b604051610389919061396f565b60405180910390f35b61039a610a83565b005b3480156103a857600080fd5b506103b1610b75565b005b6103cd60048036038101906103c89190613011565b610bfb565b005b3480156103db57600080fd5b506103f660048036038101906103f19190612ea6565b610dae565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612f0b565b610e4a565b005b34801561042d57600080fd5b50610448600480360381019061044391906130e0565b610e6a565b005b34801561045657600080fd5b50610471600480360381019061046c91906130e0565b610ec6565b60405161047e919061396f565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a9919061309f565b610f5d565b005b3480156104bc57600080fd5b506104c5610ff3565b6040516104d291906135f2565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd91906130e0565b61100a565b60405161050f919061358b565b60405180910390f35b34801561052457600080fd5b5061052d6110bc565b60405161053a919061360d565b60405180910390f35b34801561054f57600080fd5b5061056a60048036038101906105659190612ea6565b61114a565b604051610577919061396f565b60405180910390f35b34801561058c57600080fd5b50610595611202565b005b3480156105a357600080fd5b506105ac61128a565b005b3480156105ba57600080fd5b506105c3611310565b6040516105d0919061358b565b60405180910390f35b3480156105e557600080fd5b506105ee61133a565b6040516105fb919061360d565b60405180910390f35b34801561061057600080fd5b5061062b60048036038101906106269190612fd5565b6113cc565b005b34801561063957600080fd5b50610654600480360381019061064f9190612f5a565b61154d565b005b34801561066257600080fd5b5061067d600480360381019061067891906130e0565b6115af565b60405161068a919061360d565b60405180910390f35b34801561069f57600080fd5b506106a8611656565b6040516106b5919061396f565b60405180910390f35b3480156106ca57600080fd5b506106e560048036038101906106e09190612ecf565b61165c565b6040516106f291906135f2565b60405180910390f35b34801561070757600080fd5b50610722600480360381019061071d9190612ea6565b6116f0565b005b600061072f826117e8565b9050919050565b60606000805461074590613c1f565b80601f016020809104026020016040519081016040528092919081815260200182805461077190613c1f565b80156107be5780601f10610793576101008083540402835291602001916107be565b820191906000526020600020905b8154815290600101906020018083116107a157829003601f168201915b5050505050905090565b60006107d382611862565b610812576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108099061382f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108588261100a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c0906138cf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108e86118ce565b73ffffffffffffffffffffffffffffffffffffffff1614806109175750610916816109116118ce565b61165c565b5b610956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094d9061378f565b60405180910390fd5b61096083836118d6565b505050565b600d5481565b6000600880549050905090565b600f5481565b61098f6109896118ce565b8261198f565b6109ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c59061390f565b60405180910390fd5b6109d9838383611a6d565b505050565b60006109e98361114a565b8210610a2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a219061366f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610a8b6118ce565b73ffffffffffffffffffffffffffffffffffffffff16610aa9611310565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af69061386f565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610b73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6a9061362f565b60405180910390fd5b565b610b7d6118ce565b73ffffffffffffffffffffffffffffffffffffffff16610b9b611310565b73ffffffffffffffffffffffffffffffffffffffff1614610bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be89061386f565b60405180910390fd5b610bf9611cc9565b565b6000610c0561096b565b905060008211610c4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c419061374f565b60405180910390fd5b600f54821115610c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c869061384f565b60405180910390fd5b600e548282610c9e9190613a54565b1115610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd69061380f565b60405180910390fd5b610ce7611310565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d6a5781600d54610d279190613adb565b341015610d69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d60906138ef565b60405180910390fd5b5b6000600190505b828111610da857610d82600b611d6b565b610d9584610d90600b611d81565b611d8f565b8080610da090613c82565b915050610d71565b50505050565b610db66118ce565b73ffffffffffffffffffffffffffffffffffffffff16610dd4611310565b73ffffffffffffffffffffffffffffffffffffffff1614610e2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e219061386f565b60405180910390fd5b610e34600b611d6b565b610e4781610e42600b611d81565b611d8f565b50565b610e658383836040518060200160405280600081525061154d565b505050565b610e7b610e756118ce565b8261198f565b610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb19061394f565b60405180910390fd5b610ec381611dad565b50565b6000610ed061096b565b8210610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f089061392f565b60405180910390fd5b60088281548110610f4b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610f656118ce565b73ffffffffffffffffffffffffffffffffffffffff16610f83611310565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd09061386f565b60405180910390fd5b80600c9080519060200190610fef929190612cca565b5050565b6000600a60009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156110b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110aa906137cf565b60405180910390fd5b80915050919050565b600c80546110c990613c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546110f590613c1f565b80156111425780601f1061111757610100808354040283529160200191611142565b820191906000526020600020905b81548152906001019060200180831161112557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b2906137af565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61120a6118ce565b73ffffffffffffffffffffffffffffffffffffffff16611228611310565b73ffffffffffffffffffffffffffffffffffffffff161461127e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112759061386f565b60405180910390fd5b6112886000611ebe565b565b6112926118ce565b73ffffffffffffffffffffffffffffffffffffffff166112b0611310565b73ffffffffffffffffffffffffffffffffffffffff1614611306576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fd9061386f565b60405180910390fd5b61130e611f84565b565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461134990613c1f565b80601f016020809104026020016040519081016040528092919081815260200182805461137590613c1f565b80156113c25780601f10611397576101008083540402835291602001916113c2565b820191906000526020600020905b8154815290600101906020018083116113a557829003601f168201915b5050505050905090565b6113d46118ce565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611442576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114399061370f565b60405180910390fd5b806005600061144f6118ce565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114fc6118ce565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161154191906135f2565b60405180910390a35050565b61155e6115586118ce565b8361198f565b61159d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115949061390f565b60405180910390fd5b6115a984848484612027565b50505050565b60606115ba82611862565b6115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906138af565b60405180910390fd5b6000611603612083565b90506000815111611623576040518060200160405280600081525061164e565b8061162d84612115565b60405160200161163e929190613567565b6040516020818303038152906040525b915050919050565b600e5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116f86118ce565b73ffffffffffffffffffffffffffffffffffffffff16611716611310565b73ffffffffffffffffffffffffffffffffffffffff161461176c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117639061386f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d3906136af565b60405180910390fd5b6117e581611ebe565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061185b575061185a826122c2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166119498361100a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061199a82611862565b6119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d09061372f565b60405180910390fd5b60006119e48361100a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611a5357508373ffffffffffffffffffffffffffffffffffffffff16611a3b846107c8565b73ffffffffffffffffffffffffffffffffffffffff16145b80611a645750611a63818561165c565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611a8d8261100a565b73ffffffffffffffffffffffffffffffffffffffff1614611ae3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ada9061388f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4a906136ef565b60405180910390fd5b611b5e8383836123a4565b611b696000826118d6565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611bb99190613b35565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611c109190613a54565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611cd1610ff3565b611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d079061364f565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611d546118ce565b604051611d61919061358b565b60405180910390a1565b6001816000016000828254019250508190555050565b600081600001549050919050565b611da98282604051806020016040528060008152506123fc565b5050565b6000611db88261100a565b9050611dc6816000846123a4565b611dd16000836118d6565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e219190613b35565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611f8c610ff3565b15611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc39061376f565b60405180910390fd5b6001600a60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120106118ce565b60405161201d919061358b565b60405180910390a1565b612032848484611a6d565b61203e84848484612457565b61207d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120749061368f565b60405180910390fd5b50505050565b6060600c805461209290613c1f565b80601f01602080910402602001604051908101604052809291908181526020018280546120be90613c1f565b801561210b5780601f106120e05761010080835404028352916020019161210b565b820191906000526020600020905b8154815290600101906020018083116120ee57829003601f168201915b5050505050905090565b6060600082141561215d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122bd565b600082905060005b6000821461218f57808061217890613c82565b915050600a826121889190613aaa565b9150612165565b60008167ffffffffffffffff8111156121d1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122035781602001600182028036833780820191505090505b5090505b600085146122b65760018261221c9190613b35565b9150600a8561222b9190613ccb565b60306122379190613a54565b60f81b818381518110612273577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122af9190613aaa565b9450612207565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061238d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061239d575061239c826125ee565b5b9050919050565b6123ac610ff3565b156123ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e39061376f565b60405180910390fd5b6123f7838383612658565b505050565b612406838361276c565b6124136000848484612457565b612452576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124499061368f565b60405180910390fd5b505050565b60006124788473ffffffffffffffffffffffffffffffffffffffff1661293a565b156125e1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026124a16118ce565b8786866040518563ffffffff1660e01b81526004016124c394939291906135a6565b602060405180830381600087803b1580156124dd57600080fd5b505af192505050801561250e57506040513d601f19601f8201168201806040525081019061250b9190613076565b60015b612591573d806000811461253e576040519150601f19603f3d011682016040523d82523d6000602084013e612543565b606091505b50600081511415612589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125809061368f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506125e6565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61266383838361294d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126a6576126a181612952565b6126e5565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146126e4576126e3838261299b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127285761272381612b08565b612767565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612766576127658282612c4b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d3906137ef565b60405180910390fd5b6127e581611862565b15612825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281c906136cf565b60405180910390fd5b612831600083836123a4565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128819190613a54565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016129a88461114a565b6129b29190613b35565b9050600060076000848152602001908152602001600020549050818114612a97576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612b1c9190613b35565b9050600060096000848152602001908152602001600020549050600060088381548110612b72577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060088381548110612bba577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612c2f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612c568361114a565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054612cd690613c1f565b90600052602060002090601f016020900481019282612cf85760008555612d3f565b82601f10612d1157805160ff1916838001178555612d3f565b82800160010185558215612d3f579182015b82811115612d3e578251825591602001919060010190612d23565b5b509050612d4c9190612d50565b5090565b5b80821115612d69576000816000905550600101612d51565b5090565b6000612d80612d7b846139af565b61398a565b905082815260208101848484011115612d9857600080fd5b612da3848285613bdd565b509392505050565b6000612dbe612db9846139e0565b61398a565b905082815260208101848484011115612dd657600080fd5b612de1848285613bdd565b509392505050565b600081359050612df88161442d565b92915050565b600081359050612e0d81614444565b92915050565b600081359050612e228161445b565b92915050565b600081519050612e378161445b565b92915050565b600082601f830112612e4e57600080fd5b8135612e5e848260208601612d6d565b91505092915050565b600082601f830112612e7857600080fd5b8135612e88848260208601612dab565b91505092915050565b600081359050612ea081614472565b92915050565b600060208284031215612eb857600080fd5b6000612ec684828501612de9565b91505092915050565b60008060408385031215612ee257600080fd5b6000612ef085828601612de9565b9250506020612f0185828601612de9565b9150509250929050565b600080600060608486031215612f2057600080fd5b6000612f2e86828701612de9565b9350506020612f3f86828701612de9565b9250506040612f5086828701612e91565b9150509250925092565b60008060008060808587031215612f7057600080fd5b6000612f7e87828801612de9565b9450506020612f8f87828801612de9565b9350506040612fa087828801612e91565b925050606085013567ffffffffffffffff811115612fbd57600080fd5b612fc987828801612e3d565b91505092959194509250565b60008060408385031215612fe857600080fd5b6000612ff685828601612de9565b925050602061300785828601612dfe565b9150509250929050565b6000806040838503121561302457600080fd5b600061303285828601612de9565b925050602061304385828601612e91565b9150509250929050565b60006020828403121561305f57600080fd5b600061306d84828501612e13565b91505092915050565b60006020828403121561308857600080fd5b600061309684828501612e28565b91505092915050565b6000602082840312156130b157600080fd5b600082013567ffffffffffffffff8111156130cb57600080fd5b6130d784828501612e67565b91505092915050565b6000602082840312156130f257600080fd5b600061310084828501612e91565b91505092915050565b61311281613b69565b82525050565b61312181613b7b565b82525050565b600061313282613a11565b61313c8185613a27565b935061314c818560208601613bec565b61315581613db8565b840191505092915050565b600061316b82613a1c565b6131758185613a38565b9350613185818560208601613bec565b61318e81613db8565b840191505092915050565b60006131a482613a1c565b6131ae8185613a49565b93506131be818560208601613bec565b80840191505092915050565b60006131d7601283613a38565b91506131e282613dc9565b602082019050919050565b60006131fa601483613a38565b915061320582613df2565b602082019050919050565b600061321d602b83613a38565b915061322882613e1b565b604082019050919050565b6000613240603283613a38565b915061324b82613e6a565b604082019050919050565b6000613263602683613a38565b915061326e82613eb9565b604082019050919050565b6000613286601c83613a38565b915061329182613f08565b602082019050919050565b60006132a9602483613a38565b91506132b482613f31565b604082019050919050565b60006132cc601983613a38565b91506132d782613f80565b602082019050919050565b60006132ef602c83613a38565b91506132fa82613fa9565b604082019050919050565b6000613312601183613a38565b915061331d82613ff8565b602082019050919050565b6000613335601083613a38565b915061334082614021565b602082019050919050565b6000613358603883613a38565b91506133638261404a565b604082019050919050565b600061337b602a83613a38565b915061338682614099565b604082019050919050565b600061339e602983613a38565b91506133a9826140e8565b604082019050919050565b60006133c1602083613a38565b91506133cc82614137565b602082019050919050565b60006133e4600e83613a38565b91506133ef82614160565b602082019050919050565b6000613407602c83613a38565b915061341282614189565b604082019050919050565b600061342a601183613a38565b9150613435826141d8565b602082019050919050565b600061344d602083613a38565b915061345882614201565b602082019050919050565b6000613470602983613a38565b915061347b8261422a565b604082019050919050565b6000613493602f83613a38565b915061349e82614279565b604082019050919050565b60006134b6602183613a38565b91506134c1826142c8565b604082019050919050565b60006134d9601283613a38565b91506134e482614317565b602082019050919050565b60006134fc603183613a38565b915061350782614340565b604082019050919050565b600061351f602c83613a38565b915061352a8261438f565b604082019050919050565b6000613542603083613a38565b915061354d826143de565b604082019050919050565b61356181613bd3565b82525050565b60006135738285613199565b915061357f8284613199565b91508190509392505050565b60006020820190506135a06000830184613109565b92915050565b60006080820190506135bb6000830187613109565b6135c86020830186613109565b6135d56040830185613558565b81810360608301526135e78184613127565b905095945050505050565b60006020820190506136076000830184613118565b92915050565b600060208201905081810360008301526136278184613160565b905092915050565b60006020820190508181036000830152613648816131ca565b9050919050565b60006020820190508181036000830152613668816131ed565b9050919050565b6000602082019050818103600083015261368881613210565b9050919050565b600060208201905081810360008301526136a881613233565b9050919050565b600060208201905081810360008301526136c881613256565b9050919050565b600060208201905081810360008301526136e881613279565b9050919050565b600060208201905081810360008301526137088161329c565b9050919050565b60006020820190508181036000830152613728816132bf565b9050919050565b60006020820190508181036000830152613748816132e2565b9050919050565b6000602082019050818103600083015261376881613305565b9050919050565b6000602082019050818103600083015261378881613328565b9050919050565b600060208201905081810360008301526137a88161334b565b9050919050565b600060208201905081810360008301526137c88161336e565b9050919050565b600060208201905081810360008301526137e881613391565b9050919050565b60006020820190508181036000830152613808816133b4565b9050919050565b60006020820190508181036000830152613828816133d7565b9050919050565b60006020820190508181036000830152613848816133fa565b9050919050565b600060208201905081810360008301526138688161341d565b9050919050565b6000602082019050818103600083015261388881613440565b9050919050565b600060208201905081810360008301526138a881613463565b9050919050565b600060208201905081810360008301526138c881613486565b9050919050565b600060208201905081810360008301526138e8816134a9565b9050919050565b60006020820190508181036000830152613908816134cc565b9050919050565b60006020820190508181036000830152613928816134ef565b9050919050565b6000602082019050818103600083015261394881613512565b9050919050565b6000602082019050818103600083015261396881613535565b9050919050565b60006020820190506139846000830184613558565b92915050565b60006139946139a5565b90506139a08282613c51565b919050565b6000604051905090565b600067ffffffffffffffff8211156139ca576139c9613d89565b5b6139d382613db8565b9050602081019050919050565b600067ffffffffffffffff8211156139fb576139fa613d89565b5b613a0482613db8565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5f82613bd3565b9150613a6a83613bd3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9f57613a9e613cfc565b5b828201905092915050565b6000613ab582613bd3565b9150613ac083613bd3565b925082613ad057613acf613d2b565b5b828204905092915050565b6000613ae682613bd3565b9150613af183613bd3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2a57613b29613cfc565b5b828202905092915050565b6000613b4082613bd3565b9150613b4b83613bd3565b925082821015613b5e57613b5d613cfc565b5b828203905092915050565b6000613b7482613bb3565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c0a578082015181840152602081019050613bef565b83811115613c19576000848401525b50505050565b60006002820490506001821680613c3757607f821691505b60208210811415613c4b57613c4a613d5a565b5b50919050565b613c5a82613db8565b810181811067ffffffffffffffff82111715613c7957613c78613d89565b5b80604052505050565b6000613c8d82613bd3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cc057613cbf613cfc565b5b600182019050919050565b6000613cd682613bd3565b9150613ce183613bd3565b925082613cf157613cf0613d2b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f636f756c64206e6f742077697468647261770000000000000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f616d6f756e74206d757374206265203e30000000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d696e7420736f6c64206f757421000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f616d6f756e74206d757374203c206d6178000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b61443681613b69565b811461444157600080fd5b50565b61444d81613b7b565b811461445857600080fd5b50565b61446481613b87565b811461446f57600080fd5b50565b61447b81613bd3565b811461448657600080fd5b5056fea2646970667358221220d8639b38eea3d469c82aed6a55525f5de63d22b8db109f87c878b2d03b4a16af64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000043697066733a2f2f626166796265696468657074727a7569656364336674656c7034636e36766b66693537656b697a687873336f337574717535356d767879706669342f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : defaultBaseURI (string): ipfs://bafybeidheptrzuiecd3ftelp4cn6vkfi57ekizhxs3o3utqu55mvxypfi4/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 697066733a2f2f626166796265696468657074727a7569656364336674656c70
Arg [3] : 34636e36766b66693537656b697a687873336f337574717535356d7678797066
Arg [4] : 69342f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47737:2347:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49869:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21731:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23290:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22813:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47973:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35478:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48050:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24180:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35146:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48844:179;;;:::i;:::-;;49337:65;;;;;;;;;;;;;:::i;:::-;;48235:601;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49410:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24590:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45993:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35668:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49164:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42064:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21425:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47945:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21155:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44903:94;;;;;;;;;;;;;:::i;:::-;;49268:61;;;;;;;;;;;;;:::i;:::-;;44252:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21900:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23583:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24846:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22075:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48012:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23949:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45152:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49869:212;50008:4;50037:36;50061:11;50037:23;:36::i;:::-;50030:43;;49869:212;;;:::o;21731:100::-;21785:13;21818:5;21811:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21731:100;:::o;23290:221::-;23366:7;23394:16;23402:7;23394;:16::i;:::-;23386:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23479:15;:24;23495:7;23479:24;;;;;;;;;;;;;;;;;;;;;23472:31;;23290:221;;;:::o;22813:411::-;22894:13;22910:23;22925:7;22910:14;:23::i;:::-;22894:39;;22958:5;22952:11;;:2;:11;;;;22944:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23052:5;23036:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23061:37;23078:5;23085:12;:10;:12::i;:::-;23061:16;:37::i;:::-;23036:62;23014:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23195:21;23204:2;23208:7;23195:8;:21::i;:::-;22813:411;;;:::o;47973:32::-;;;;:::o;35478:113::-;35539:7;35566:10;:17;;;;35559:24;;35478:113;:::o;48050:33::-;;;;:::o;24180:339::-;24375:41;24394:12;:10;:12::i;:::-;24408:7;24375:18;:41::i;:::-;24367:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24483:28;24493:4;24499:2;24503:7;24483:9;:28::i;:::-;24180:339;;;:::o;35146:256::-;35243:7;35279:23;35296:5;35279:16;:23::i;:::-;35271:5;:31;35263:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35368:12;:19;35381:5;35368:19;;;;;;;;;;;;;;;:26;35388:5;35368:26;;;;;;;;;;;;35361:33;;35146:256;;;;:::o;48844:179::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48930:10:::1;48922:24;;:47;48947:21;48922:47;;;;;;;;;;;;;;;;;;;;;;;48900:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;48844:179::o:0;49337:65::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49384:10:::1;:8;:10::i;:::-;49337:65::o:0;48235:601::-;48309:14;48326:13;:11;:13::i;:::-;48309:30;;48372:1;48358:11;:15;48350:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;48429:13;;48414:11;:28;;48406:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48507:9;;48492:11;48483:6;:20;;;;:::i;:::-;:33;;48475:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;48566:7;:5;:7::i;:::-;48552:21;;:10;:21;;;48548:116;;48618:11;48611:4;;:18;;;;:::i;:::-;48598:9;:31;;48590:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;48548:116;48681:9;48693:1;48681:13;;48676:153;48701:11;48696:1;:16;48676:153;;48734:27;:15;:25;:27::i;:::-;48776:41;48786:3;48791:25;:15;:23;:25::i;:::-;48776:9;:41::i;:::-;48714:3;;;;;:::i;:::-;;;;48676:153;;;;48235:601;;;:::o;49410:144::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49468:27:::1;:15;:25;:27::i;:::-;49506:40;49516:2;49520:25;:15;:23;:25::i;:::-;49506:9;:40::i;:::-;49410:144:::0;:::o;24590:185::-;24728:39;24745:4;24751:2;24755:7;24728:39;;;;;;;;;;;;:16;:39::i;:::-;24590:185;;;:::o;45993:245::-;46111:41;46130:12;:10;:12::i;:::-;46144:7;46111:18;:41::i;:::-;46103:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;46216:14;46222:7;46216:5;:14::i;:::-;45993:245;:::o;35668:233::-;35743:7;35779:30;:28;:30::i;:::-;35771:5;:38;35763:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35876:10;35887:5;35876:17;;;;;;;;;;;;;;;;;;;;;;;;35869:24;;35668:233;;;:::o;49164:96::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49245:7:::1;49235;:17;;;;;;;;;;;;:::i;:::-;;49164:96:::0;:::o;42064:86::-;42111:4;42135:7;;;;;;;;;;;42128:14;;42064:86;:::o;21425:239::-;21497:7;21517:13;21533:7;:16;21541:7;21533:16;;;;;;;;;;;;;;;;;;;;;21517:32;;21585:1;21568:19;;:5;:19;;;;21560:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21651:5;21644:12;;;21425:239;;;:::o;47945:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21155:208::-;21227:7;21272:1;21255:19;;:5;:19;;;;21247:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21339:9;:16;21349:5;21339:16;;;;;;;;;;;;;;;;21332:23;;21155:208;;;:::o;44903:94::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44968:21:::1;44986:1;44968:9;:21::i;:::-;44903:94::o:0;49268:61::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49313:8:::1;:6;:8::i;:::-;49268:61::o:0;44252:87::-;44298:7;44325:6;;;;;;;;;;;44318:13;;44252:87;:::o;21900:104::-;21956:13;21989:7;21982:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21900:104;:::o;23583:295::-;23698:12;:10;:12::i;:::-;23686:24;;:8;:24;;;;23678:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23798:8;23753:18;:32;23772:12;:10;:12::i;:::-;23753:32;;;;;;;;;;;;;;;:42;23786:8;23753:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23851:8;23822:48;;23837:12;:10;:12::i;:::-;23822:48;;;23861:8;23822:48;;;;;;:::i;:::-;;;;;;;;23583:295;;:::o;24846:328::-;25021:41;25040:12;:10;:12::i;:::-;25054:7;25021:18;:41::i;:::-;25013:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25127:39;25141:4;25147:2;25151:7;25160:5;25127:13;:39::i;:::-;24846:328;;;;:::o;22075:334::-;22148:13;22182:16;22190:7;22182;:16::i;:::-;22174:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22263:21;22287:10;:8;:10::i;:::-;22263:34;;22339:1;22321:7;22315:21;:25;:86;;;;;;;;;;;;;;;;;22367:7;22376:18;:7;:16;:18::i;:::-;22350:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22315:86;22308:93;;;22075:334;;;:::o;48012:31::-;;;;:::o;23949:164::-;24046:4;24070:18;:25;24089:5;24070:25;;;;;;;;;;;;;;;:35;24096:8;24070:35;;;;;;;;;;;;;;;;;;;;;;;;;24063:42;;23949:164;;;;:::o;45152:192::-;44483:12;:10;:12::i;:::-;44472:23;;:7;:5;:7::i;:::-;:23;;;44464:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45261:1:::1;45241:22;;:8;:22;;;;45233:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45317:19;45327:8;45317:9;:19::i;:::-;45152:192:::0;:::o;34838:224::-;34940:4;34979:35;34964:50;;;:11;:50;;;;:90;;;;35018:36;35042:11;35018:23;:36::i;:::-;34964:90;34957:97;;34838:224;;;:::o;26684:127::-;26749:4;26801:1;26773:30;;:7;:16;26781:7;26773:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26766:37;;26684:127;;;:::o;16194:98::-;16247:7;16274:10;16267:17;;16194:98;:::o;30666:174::-;30768:2;30741:15;:24;30757:7;30741:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30824:7;30820:2;30786:46;;30795:23;30810:7;30795:14;:23::i;:::-;30786:46;;;;;;;;;;;;30666:174;;:::o;26978:348::-;27071:4;27096:16;27104:7;27096;:16::i;:::-;27088:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27172:13;27188:23;27203:7;27188:14;:23::i;:::-;27172:39;;27241:5;27230:16;;:7;:16;;;:51;;;;27274:7;27250:31;;:20;27262:7;27250:11;:20::i;:::-;:31;;;27230:51;:87;;;;27285:32;27302:5;27309:7;27285:16;:32::i;:::-;27230:87;27222:96;;;26978:348;;;;:::o;29970:578::-;30129:4;30102:31;;:23;30117:7;30102:14;:23::i;:::-;:31;;;30094:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30212:1;30198:16;;:2;:16;;;;30190:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30268:39;30289:4;30295:2;30299:7;30268:20;:39::i;:::-;30372:29;30389:1;30393:7;30372:8;:29::i;:::-;30433:1;30414:9;:15;30424:4;30414:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30462:1;30445:9;:13;30455:2;30445:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30493:2;30474:7;:16;30482:7;30474:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30532:7;30528:2;30513:27;;30522:4;30513:27;;;;;;;;;;;;29970:578;;;:::o;43123:120::-;42667:8;:6;:8::i;:::-;42659:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;43192:5:::1;43182:7;;:15;;;;;;;;;;;;;;;;;;43213:22;43222:12;:10;:12::i;:::-;43213:22;;;;;;:::i;:::-;;;;;;;;43123:120::o:0;47190:127::-;47297:1;47279:7;:14;;;:19;;;;;;;;;;;47190:127;:::o;47068:114::-;47133:7;47160;:14;;;47153:21;;47068:114;;;:::o;27668:110::-;27744:26;27754:2;27758:7;27744:26;;;;;;;;;;;;:9;:26::i;:::-;27668:110;;:::o;29273:360::-;29333:13;29349:23;29364:7;29349:14;:23::i;:::-;29333:39;;29385:48;29406:5;29421:1;29425:7;29385:20;:48::i;:::-;29474:29;29491:1;29495:7;29474:8;:29::i;:::-;29536:1;29516:9;:16;29526:5;29516:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;29555:7;:16;29563:7;29555:16;;;;;;;;;;;;29548:23;;;;;;;;;;;29617:7;29613:1;29589:36;;29598:5;29589:36;;;;;;;;;;;;29273:360;;:::o;45352:173::-;45408:16;45427:6;;;;;;;;;;;45408:25;;45453:8;45444:6;;:17;;;;;;;;;;;;;;;;;;45508:8;45477:40;;45498:8;45477:40;;;;;;;;;;;;45352:173;;:::o;42864:118::-;42390:8;:6;:8::i;:::-;42389:9;42381:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;42934:4:::1;42924:7;;:14;;;;;;;;;;;;;;;;;;42954:20;42961:12;:10;:12::i;:::-;42954:20;;;;;;:::i;:::-;;;;;;;;42864:118::o:0;26056:315::-;26213:28;26223:4;26229:2;26233:7;26213:9;:28::i;:::-;26260:48;26283:4;26289:2;26293:7;26302:5;26260:22;:48::i;:::-;26252:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26056:315;;;;:::o;49048:108::-;49108:13;49141:7;49134:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49048:108;:::o;16725:723::-;16781:13;17011:1;17002:5;:10;16998:53;;;17029:10;;;;;;;;;;;;;;;;;;;;;16998:53;17061:12;17076:5;17061:20;;17092:14;17117:78;17132:1;17124:4;:9;17117:78;;17150:8;;;;;:::i;:::-;;;;17181:2;17173:10;;;;;:::i;:::-;;;17117:78;;;17205:19;17237:6;17227:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17205:39;;17255:154;17271:1;17262:5;:10;17255:154;;17299:1;17289:11;;;;;:::i;:::-;;;17366:2;17358:5;:10;;;;:::i;:::-;17345:2;:24;;;;:::i;:::-;17332:39;;17315:6;17322;17315:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17395:2;17386:11;;;;;:::i;:::-;;;17255:154;;;17433:6;17419:21;;;;;16725:723;;;;:::o;20786:305::-;20888:4;20940:25;20925:40;;;:11;:40;;;;:105;;;;20997:33;20982:48;;;:11;:48;;;;20925:105;:158;;;;21047:36;21071:11;21047:23;:36::i;:::-;20925:158;20905:178;;20786:305;;;:::o;49562:229::-;42390:8;:6;:8::i;:::-;42389:9;42381:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;49738:45:::1;49765:4;49771:2;49775:7;49738:26;:45::i;:::-;49562:229:::0;;;:::o;28005:321::-;28135:18;28141:2;28145:7;28135:5;:18::i;:::-;28186:54;28217:1;28221:2;28225:7;28234:5;28186:22;:54::i;:::-;28164:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28005:321;;;:::o;31405:799::-;31560:4;31581:15;:2;:13;;;:15::i;:::-;31577:620;;;31633:2;31617:36;;;31654:12;:10;:12::i;:::-;31668:4;31674:7;31683:5;31617:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31613:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31876:1;31859:6;:13;:18;31855:272;;;31902:60;;;;;;;;;;:::i;:::-;;;;;;;;31855:272;32077:6;32071:13;32062:6;32058:2;32054:15;32047:38;31613:529;31750:41;;;31740:51;;;:6;:51;;;;31733:58;;;;;31577:620;32181:4;32174:11;;31405:799;;;;;;;:::o;19286:157::-;19371:4;19410:25;19395:40;;;:11;:40;;;;19388:47;;19286:157;;;:::o;36514:589::-;36658:45;36685:4;36691:2;36695:7;36658:26;:45::i;:::-;36736:1;36720:18;;:4;:18;;;36716:187;;;36755:40;36787:7;36755:31;:40::i;:::-;36716:187;;;36825:2;36817:10;;:4;:10;;;36813:90;;36844:47;36877:4;36883:7;36844:32;:47::i;:::-;36813:90;36716:187;36931:1;36917:16;;:2;:16;;;36913:183;;;36950:45;36987:7;36950:36;:45::i;:::-;36913:183;;;37023:4;37017:10;;:2;:10;;;37013:83;;37044:40;37072:2;37076:7;37044:27;:40::i;:::-;37013:83;36913:183;36514:589;;;:::o;28662:382::-;28756:1;28742:16;;:2;:16;;;;28734:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28815:16;28823:7;28815;:16::i;:::-;28814:17;28806:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28877:45;28906:1;28910:2;28914:7;28877:20;:45::i;:::-;28952:1;28935:9;:13;28945:2;28935:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28983:2;28964:7;:16;28972:7;28964:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29028:7;29024:2;29003:33;;29020:1;29003:33;;;;;;;;;;;;28662:382;;:::o;8232:387::-;8292:4;8500:12;8567:7;8555:20;8547:28;;8610:1;8603:4;:8;8596:15;;;8232:387;;;:::o;32776:126::-;;;;:::o;37826:164::-;37930:10;:17;;;;37903:15;:24;37919:7;37903:24;;;;;;;;;;;:44;;;;37958:10;37974:7;37958:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37826:164;:::o;38617:988::-;38883:22;38933:1;38908:22;38925:4;38908:16;:22::i;:::-;:26;;;;:::i;:::-;38883:51;;38945:18;38966:17;:26;38984:7;38966:26;;;;;;;;;;;;38945:47;;39113:14;39099:10;:28;39095:328;;39144:19;39166:12;:18;39179:4;39166:18;;;;;;;;;;;;;;;:34;39185:14;39166:34;;;;;;;;;;;;39144:56;;39250:11;39217:12;:18;39230:4;39217:18;;;;;;;;;;;;;;;:30;39236:10;39217:30;;;;;;;;;;;:44;;;;39367:10;39334:17;:30;39352:11;39334:30;;;;;;;;;;;:43;;;;39095:328;;39519:17;:26;39537:7;39519:26;;;;;;;;;;;39512:33;;;39563:12;:18;39576:4;39563:18;;;;;;;;;;;;;;;:34;39582:14;39563:34;;;;;;;;;;;39556:41;;;38617:988;;;;:::o;39900:1079::-;40153:22;40198:1;40178:10;:17;;;;:21;;;;:::i;:::-;40153:46;;40210:18;40231:15;:24;40247:7;40231:24;;;;;;;;;;;;40210:45;;40582:19;40604:10;40615:14;40604:26;;;;;;;;;;;;;;;;;;;;;;;;40582:48;;40668:11;40643:10;40654;40643:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40779:10;40748:15;:28;40764:11;40748:28;;;;;;;;;;;:41;;;;40920:15;:24;40936:7;40920:24;;;;;;;;;;;40913:31;;;40955:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39900:1079;;;;:::o;37404:221::-;37489:14;37506:20;37523:2;37506:16;:20::i;:::-;37489:37;;37564:7;37537:12;:16;37550:2;37537:16;;;;;;;;;;;;;;;:24;37554:6;37537:24;;;;;;;;;;;:34;;;;37611:6;37582:17;:26;37600:7;37582:26;;;;;;;;;;;:35;;;;37404:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:366::-;12422:3;12443:67;12507:2;12502:3;12443:67;:::i;:::-;12436:74;;12519:93;12608:3;12519:93;:::i;:::-;12637:2;12632:3;12628:12;12621:19;;12426:220;;;:::o;12652:366::-;12794:3;12815:67;12879:2;12874:3;12815:67;:::i;:::-;12808:74;;12891:93;12980:3;12891:93;:::i;:::-;13009:2;13004:3;13000:12;12993:19;;12798:220;;;:::o;13024:366::-;13166:3;13187:67;13251:2;13246:3;13187:67;:::i;:::-;13180:74;;13263:93;13352:3;13263:93;:::i;:::-;13381:2;13376:3;13372:12;13365:19;;13170:220;;;:::o;13396:366::-;13538:3;13559:67;13623:2;13618:3;13559:67;:::i;:::-;13552:74;;13635:93;13724:3;13635:93;:::i;:::-;13753:2;13748:3;13744:12;13737:19;;13542:220;;;:::o;13768:366::-;13910:3;13931:67;13995:2;13990:3;13931:67;:::i;:::-;13924:74;;14007:93;14096:3;14007:93;:::i;:::-;14125:2;14120:3;14116:12;14109:19;;13914:220;;;:::o;14140:366::-;14282:3;14303:67;14367:2;14362:3;14303:67;:::i;:::-;14296:74;;14379:93;14468:3;14379:93;:::i;:::-;14497:2;14492:3;14488:12;14481:19;;14286:220;;;:::o;14512:366::-;14654:3;14675:67;14739:2;14734:3;14675:67;:::i;:::-;14668:74;;14751:93;14840:3;14751:93;:::i;:::-;14869:2;14864:3;14860:12;14853:19;;14658:220;;;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;15030:220;;;:::o;15256:366::-;15398:3;15419:67;15483:2;15478:3;15419:67;:::i;:::-;15412:74;;15495:93;15584:3;15495:93;:::i;:::-;15613:2;15608:3;15604:12;15597:19;;15402:220;;;:::o;15628:366::-;15770:3;15791:67;15855:2;15850:3;15791:67;:::i;:::-;15784:74;;15867:93;15956:3;15867:93;:::i;:::-;15985:2;15980:3;15976:12;15969:19;;15774:220;;;:::o;16000:366::-;16142:3;16163:67;16227:2;16222:3;16163:67;:::i;:::-;16156:74;;16239:93;16328:3;16239:93;:::i;:::-;16357:2;16352:3;16348:12;16341:19;;16146:220;;;:::o;16372:366::-;16514:3;16535:67;16599:2;16594:3;16535:67;:::i;:::-;16528:74;;16611:93;16700:3;16611:93;:::i;:::-;16729:2;16724:3;16720:12;16713:19;;16518:220;;;:::o;16744:366::-;16886:3;16907:67;16971:2;16966:3;16907:67;:::i;:::-;16900:74;;16983:93;17072:3;16983:93;:::i;:::-;17101:2;17096:3;17092:12;17085:19;;16890:220;;;:::o;17116:118::-;17203:24;17221:5;17203:24;:::i;:::-;17198:3;17191:37;17181:53;;:::o;17240:435::-;17420:3;17442:95;17533:3;17524:6;17442:95;:::i;:::-;17435:102;;17554:95;17645:3;17636:6;17554:95;:::i;:::-;17547:102;;17666:3;17659:10;;17424:251;;;;;:::o;17681:222::-;17774:4;17812:2;17801:9;17797:18;17789:26;;17825:71;17893:1;17882:9;17878:17;17869:6;17825:71;:::i;:::-;17779:124;;;;:::o;17909:640::-;18104:4;18142:3;18131:9;18127:19;18119:27;;18156:71;18224:1;18213:9;18209:17;18200:6;18156:71;:::i;:::-;18237:72;18305:2;18294:9;18290:18;18281:6;18237:72;:::i;:::-;18319;18387:2;18376:9;18372:18;18363:6;18319:72;:::i;:::-;18438:9;18432:4;18428:20;18423:2;18412:9;18408:18;18401:48;18466:76;18537:4;18528:6;18466:76;:::i;:::-;18458:84;;18109:440;;;;;;;:::o;18555:210::-;18642:4;18680:2;18669:9;18665:18;18657:26;;18693:65;18755:1;18744:9;18740:17;18731:6;18693:65;:::i;:::-;18647:118;;;;:::o;18771:313::-;18884:4;18922:2;18911:9;18907:18;18899:26;;18971:9;18965:4;18961:20;18957:1;18946:9;18942:17;18935:47;18999:78;19072:4;19063:6;18999:78;:::i;:::-;18991:86;;18889:195;;;;:::o;19090:419::-;19256:4;19294:2;19283:9;19279:18;19271:26;;19343:9;19337:4;19333:20;19329:1;19318:9;19314:17;19307:47;19371:131;19497:4;19371:131;:::i;:::-;19363:139;;19261:248;;;:::o;19515:419::-;19681:4;19719:2;19708:9;19704:18;19696:26;;19768:9;19762:4;19758:20;19754:1;19743:9;19739:17;19732:47;19796:131;19922:4;19796:131;:::i;:::-;19788:139;;19686:248;;;:::o;19940:419::-;20106:4;20144:2;20133:9;20129:18;20121:26;;20193:9;20187:4;20183:20;20179:1;20168:9;20164:17;20157:47;20221:131;20347:4;20221:131;:::i;:::-;20213:139;;20111:248;;;:::o;20365:419::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20618:9;20612:4;20608:20;20604:1;20593:9;20589:17;20582:47;20646:131;20772:4;20646:131;:::i;:::-;20638:139;;20536:248;;;:::o;20790:419::-;20956:4;20994:2;20983:9;20979:18;20971:26;;21043:9;21037:4;21033:20;21029:1;21018:9;21014:17;21007:47;21071:131;21197:4;21071:131;:::i;:::-;21063:139;;20961:248;;;:::o;21215:419::-;21381:4;21419:2;21408:9;21404:18;21396:26;;21468:9;21462:4;21458:20;21454:1;21443:9;21439:17;21432:47;21496:131;21622:4;21496:131;:::i;:::-;21488:139;;21386:248;;;:::o;21640:419::-;21806:4;21844:2;21833:9;21829:18;21821:26;;21893:9;21887:4;21883:20;21879:1;21868:9;21864:17;21857:47;21921:131;22047:4;21921:131;:::i;:::-;21913:139;;21811:248;;;:::o;22065:419::-;22231:4;22269:2;22258:9;22254:18;22246:26;;22318:9;22312:4;22308:20;22304:1;22293:9;22289:17;22282:47;22346:131;22472:4;22346:131;:::i;:::-;22338:139;;22236:248;;;:::o;22490:419::-;22656:4;22694:2;22683:9;22679:18;22671:26;;22743:9;22737:4;22733:20;22729:1;22718:9;22714:17;22707:47;22771:131;22897:4;22771:131;:::i;:::-;22763:139;;22661:248;;;:::o;22915:419::-;23081:4;23119:2;23108:9;23104:18;23096:26;;23168:9;23162:4;23158:20;23154:1;23143:9;23139:17;23132:47;23196:131;23322:4;23196:131;:::i;:::-;23188:139;;23086:248;;;:::o;23340:419::-;23506:4;23544:2;23533:9;23529:18;23521:26;;23593:9;23587:4;23583:20;23579:1;23568:9;23564:17;23557:47;23621:131;23747:4;23621:131;:::i;:::-;23613:139;;23511:248;;;:::o;23765:419::-;23931:4;23969:2;23958:9;23954:18;23946:26;;24018:9;24012:4;24008:20;24004:1;23993:9;23989:17;23982:47;24046:131;24172:4;24046:131;:::i;:::-;24038:139;;23936:248;;;:::o;24190:419::-;24356:4;24394:2;24383:9;24379:18;24371:26;;24443:9;24437:4;24433:20;24429:1;24418:9;24414:17;24407:47;24471:131;24597:4;24471:131;:::i;:::-;24463:139;;24361:248;;;:::o;24615:419::-;24781:4;24819:2;24808:9;24804:18;24796:26;;24868:9;24862:4;24858:20;24854:1;24843:9;24839:17;24832:47;24896:131;25022:4;24896:131;:::i;:::-;24888:139;;24786:248;;;:::o;25040:419::-;25206:4;25244:2;25233:9;25229:18;25221:26;;25293:9;25287:4;25283:20;25279:1;25268:9;25264:17;25257:47;25321:131;25447:4;25321:131;:::i;:::-;25313:139;;25211:248;;;:::o;25465:419::-;25631:4;25669:2;25658:9;25654:18;25646:26;;25718:9;25712:4;25708:20;25704:1;25693:9;25689:17;25682:47;25746:131;25872:4;25746:131;:::i;:::-;25738:139;;25636:248;;;:::o;25890:419::-;26056:4;26094:2;26083:9;26079:18;26071:26;;26143:9;26137:4;26133:20;26129:1;26118:9;26114:17;26107:47;26171:131;26297:4;26171:131;:::i;:::-;26163:139;;26061:248;;;:::o;26315:419::-;26481:4;26519:2;26508:9;26504:18;26496:26;;26568:9;26562:4;26558:20;26554:1;26543:9;26539:17;26532:47;26596:131;26722:4;26596:131;:::i;:::-;26588:139;;26486:248;;;:::o;26740:419::-;26906:4;26944:2;26933:9;26929:18;26921:26;;26993:9;26987:4;26983:20;26979:1;26968:9;26964:17;26957:47;27021:131;27147:4;27021:131;:::i;:::-;27013:139;;26911:248;;;:::o;27165:419::-;27331:4;27369:2;27358:9;27354:18;27346:26;;27418:9;27412:4;27408:20;27404:1;27393:9;27389:17;27382:47;27446:131;27572:4;27446:131;:::i;:::-;27438:139;;27336:248;;;:::o;27590:419::-;27756:4;27794:2;27783:9;27779:18;27771:26;;27843:9;27837:4;27833:20;27829:1;27818:9;27814:17;27807:47;27871:131;27997:4;27871:131;:::i;:::-;27863:139;;27761:248;;;:::o;28015:419::-;28181:4;28219:2;28208:9;28204:18;28196:26;;28268:9;28262:4;28258:20;28254:1;28243:9;28239:17;28232:47;28296:131;28422:4;28296:131;:::i;:::-;28288:139;;28186:248;;;:::o;28440:419::-;28606:4;28644:2;28633:9;28629:18;28621:26;;28693:9;28687:4;28683:20;28679:1;28668:9;28664:17;28657:47;28721:131;28847:4;28721:131;:::i;:::-;28713:139;;28611:248;;;:::o;28865:419::-;29031:4;29069:2;29058:9;29054:18;29046:26;;29118:9;29112:4;29108:20;29104:1;29093:9;29089:17;29082:47;29146:131;29272:4;29146:131;:::i;:::-;29138:139;;29036:248;;;:::o;29290:419::-;29456:4;29494:2;29483:9;29479:18;29471:26;;29543:9;29537:4;29533:20;29529:1;29518:9;29514:17;29507:47;29571:131;29697:4;29571:131;:::i;:::-;29563:139;;29461:248;;;:::o;29715:419::-;29881:4;29919:2;29908:9;29904:18;29896:26;;29968:9;29962:4;29958:20;29954:1;29943:9;29939:17;29932:47;29996:131;30122:4;29996:131;:::i;:::-;29988:139;;29886:248;;;:::o;30140:222::-;30233:4;30271:2;30260:9;30256:18;30248:26;;30284:71;30352:1;30341:9;30337:17;30328:6;30284:71;:::i;:::-;30238:124;;;;:::o;30368:129::-;30402:6;30429:20;;:::i;:::-;30419:30;;30458:33;30486:4;30478:6;30458:33;:::i;:::-;30409:88;;;:::o;30503:75::-;30536:6;30569:2;30563:9;30553:19;;30543:35;:::o;30584:307::-;30645:4;30735:18;30727:6;30724:30;30721:2;;;30757:18;;:::i;:::-;30721:2;30795:29;30817:6;30795:29;:::i;:::-;30787:37;;30879:4;30873;30869:15;30861:23;;30650:241;;;:::o;30897:308::-;30959:4;31049:18;31041:6;31038:30;31035:2;;;31071:18;;:::i;:::-;31035:2;31109:29;31131:6;31109:29;:::i;:::-;31101:37;;31193:4;31187;31183:15;31175:23;;30964:241;;;:::o;31211:98::-;31262:6;31296:5;31290:12;31280:22;;31269:40;;;:::o;31315:99::-;31367:6;31401:5;31395:12;31385:22;;31374:40;;;:::o;31420:168::-;31503:11;31537:6;31532:3;31525:19;31577:4;31572:3;31568:14;31553:29;;31515:73;;;;:::o;31594:169::-;31678:11;31712:6;31707:3;31700:19;31752:4;31747:3;31743:14;31728:29;;31690:73;;;;:::o;31769:148::-;31871:11;31908:3;31893:18;;31883:34;;;;:::o;31923:305::-;31963:3;31982:20;32000:1;31982:20;:::i;:::-;31977:25;;32016:20;32034:1;32016:20;:::i;:::-;32011:25;;32170:1;32102:66;32098:74;32095:1;32092:81;32089:2;;;32176:18;;:::i;:::-;32089:2;32220:1;32217;32213:9;32206:16;;31967:261;;;;:::o;32234:185::-;32274:1;32291:20;32309:1;32291:20;:::i;:::-;32286:25;;32325:20;32343:1;32325:20;:::i;:::-;32320:25;;32364:1;32354:2;;32369:18;;:::i;:::-;32354:2;32411:1;32408;32404:9;32399:14;;32276:143;;;;:::o;32425:348::-;32465:7;32488:20;32506:1;32488:20;:::i;:::-;32483:25;;32522:20;32540:1;32522:20;:::i;:::-;32517:25;;32710:1;32642:66;32638:74;32635:1;32632:81;32627:1;32620:9;32613:17;32609:105;32606:2;;;32717:18;;:::i;:::-;32606:2;32765:1;32762;32758:9;32747:20;;32473:300;;;;:::o;32779:191::-;32819:4;32839:20;32857:1;32839:20;:::i;:::-;32834:25;;32873:20;32891:1;32873:20;:::i;:::-;32868:25;;32912:1;32909;32906:8;32903:2;;;32917:18;;:::i;:::-;32903:2;32962:1;32959;32955:9;32947:17;;32824:146;;;;:::o;32976:96::-;33013:7;33042:24;33060:5;33042:24;:::i;:::-;33031:35;;33021:51;;;:::o;33078:90::-;33112:7;33155:5;33148:13;33141:21;33130:32;;33120:48;;;:::o;33174:149::-;33210:7;33250:66;33243:5;33239:78;33228:89;;33218:105;;;:::o;33329:126::-;33366:7;33406:42;33399:5;33395:54;33384:65;;33374:81;;;:::o;33461:77::-;33498:7;33527:5;33516:16;;33506:32;;;:::o;33544:154::-;33628:6;33623:3;33618;33605:30;33690:1;33681:6;33676:3;33672:16;33665:27;33595:103;;;:::o;33704:307::-;33772:1;33782:113;33796:6;33793:1;33790:13;33782:113;;;33881:1;33876:3;33872:11;33866:18;33862:1;33857:3;33853:11;33846:39;33818:2;33815:1;33811:10;33806:15;;33782:113;;;33913:6;33910:1;33907:13;33904:2;;;33993:1;33984:6;33979:3;33975:16;33968:27;33904:2;33753:258;;;;:::o;34017:320::-;34061:6;34098:1;34092:4;34088:12;34078:22;;34145:1;34139:4;34135:12;34166:18;34156:2;;34222:4;34214:6;34210:17;34200:27;;34156:2;34284;34276:6;34273:14;34253:18;34250:38;34247:2;;;34303:18;;:::i;:::-;34247:2;34068:269;;;;:::o;34343:281::-;34426:27;34448:4;34426:27;:::i;:::-;34418:6;34414:40;34556:6;34544:10;34541:22;34520:18;34508:10;34505:34;34502:62;34499:2;;;34567:18;;:::i;:::-;34499:2;34607:10;34603:2;34596:22;34386:238;;;:::o;34630:233::-;34669:3;34692:24;34710:5;34692:24;:::i;:::-;34683:33;;34738:66;34731:5;34728:77;34725:2;;;34808:18;;:::i;:::-;34725:2;34855:1;34848:5;34844:13;34837:20;;34673:190;;;:::o;34869:176::-;34901:1;34918:20;34936:1;34918:20;:::i;:::-;34913:25;;34952:20;34970:1;34952:20;:::i;:::-;34947:25;;34991:1;34981:2;;34996:18;;:::i;:::-;34981:2;35037:1;35034;35030:9;35025:14;;34903:142;;;;:::o;35051:180::-;35099:77;35096:1;35089:88;35196:4;35193:1;35186:15;35220:4;35217:1;35210:15;35237:180;35285:77;35282:1;35275:88;35382:4;35379:1;35372:15;35406:4;35403:1;35396:15;35423:180;35471:77;35468:1;35461:88;35568:4;35565:1;35558:15;35592:4;35589:1;35582:15;35609:180;35657:77;35654:1;35647:88;35754:4;35751:1;35744:15;35778:4;35775:1;35768:15;35795:102;35836:6;35887:2;35883:7;35878:2;35871:5;35867:14;35863:28;35853:38;;35843:54;;;:::o;35903:168::-;36043:20;36039:1;36031:6;36027:14;36020:44;36009:62;:::o;36077:170::-;36217:22;36213:1;36205:6;36201:14;36194:46;36183:64;:::o;36253:230::-;36393:34;36389:1;36381:6;36377:14;36370:58;36462:13;36457:2;36449:6;36445:15;36438:38;36359:124;:::o;36489:237::-;36629:34;36625:1;36617:6;36613:14;36606:58;36698:20;36693:2;36685:6;36681:15;36674:45;36595:131;:::o;36732:225::-;36872:34;36868:1;36860:6;36856:14;36849:58;36941:8;36936:2;36928:6;36924:15;36917:33;36838:119;:::o;36963:178::-;37103:30;37099:1;37091:6;37087:14;37080:54;37069:72;:::o;37147:223::-;37287:34;37283:1;37275:6;37271:14;37264:58;37356:6;37351:2;37343:6;37339:15;37332:31;37253:117;:::o;37376:175::-;37516:27;37512:1;37504:6;37500:14;37493:51;37482:69;:::o;37557:231::-;37697:34;37693:1;37685:6;37681:14;37674:58;37766:14;37761:2;37753:6;37749:15;37742:39;37663:125;:::o;37794:167::-;37934:19;37930:1;37922:6;37918:14;37911:43;37900:61;:::o;37967:166::-;38107:18;38103:1;38095:6;38091:14;38084:42;38073:60;:::o;38139:243::-;38279:34;38275:1;38267:6;38263:14;38256:58;38348:26;38343:2;38335:6;38331:15;38324:51;38245:137;:::o;38388:229::-;38528:34;38524:1;38516:6;38512:14;38505:58;38597:12;38592:2;38584:6;38580:15;38573:37;38494:123;:::o;38623:228::-;38763:34;38759:1;38751:6;38747:14;38740:58;38832:11;38827:2;38819:6;38815:15;38808:36;38729:122;:::o;38857:182::-;38997:34;38993:1;38985:6;38981:14;38974:58;38963:76;:::o;39045:164::-;39185:16;39181:1;39173:6;39169:14;39162:40;39151:58;:::o;39215:231::-;39355:34;39351:1;39343:6;39339:14;39332:58;39424:14;39419:2;39411:6;39407:15;39400:39;39321:125;:::o;39452:167::-;39592:19;39588:1;39580:6;39576:14;39569:43;39558:61;:::o;39625:182::-;39765:34;39761:1;39753:6;39749:14;39742:58;39731:76;:::o;39813:228::-;39953:34;39949:1;39941:6;39937:14;39930:58;40022:11;40017:2;40009:6;40005:15;39998:36;39919:122;:::o;40047:234::-;40187:34;40183:1;40175:6;40171:14;40164:58;40256:17;40251:2;40243:6;40239:15;40232:42;40153:128;:::o;40287:220::-;40427:34;40423:1;40415:6;40411:14;40404:58;40496:3;40491:2;40483:6;40479:15;40472:28;40393:114;:::o;40513:168::-;40653:20;40649:1;40641:6;40637:14;40630:44;40619:62;:::o;40687:236::-;40827:34;40823:1;40815:6;40811:14;40804:58;40896:19;40891:2;40883:6;40879:15;40872:44;40793:130;:::o;40929:231::-;41069:34;41065:1;41057:6;41053:14;41046:58;41138:14;41133:2;41125:6;41121:15;41114:39;41035:125;:::o;41166:235::-;41306:34;41302:1;41294:6;41290:14;41283:58;41375:18;41370:2;41362:6;41358:15;41351:43;41272:129;:::o;41407:122::-;41480:24;41498:5;41480:24;:::i;:::-;41473:5;41470:35;41460:2;;41519:1;41516;41509:12;41460:2;41450:79;:::o;41535:116::-;41605:21;41620:5;41605:21;:::i;:::-;41598:5;41595:32;41585:2;;41641:1;41638;41631:12;41585:2;41575:76;:::o;41657:120::-;41729:23;41746:5;41729:23;:::i;:::-;41722:5;41719:34;41709:2;;41767:1;41764;41757:12;41709:2;41699:78;:::o;41783:122::-;41856:24;41874:5;41856:24;:::i;:::-;41849:5;41846:35;41836:2;;41895:1;41892;41885:12;41836:2;41826:79;:::o

Swarm Source

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