ETH Price: $3,101.76 (+0.60%)
Gas: 5 Gwei

Token

Thanks Bricker (ThanksBricker)
 

Overview

Max Total Supply

999 ThanksBricker

Holders

955

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 ThanksBricker
0xe632c58b8a3ffc068c6c4777f3ce63eb31f2cb92
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:
ThanksBricker

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-18
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSender()) revert ApproveToCaller();

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement 
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex != end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}
// File: contracts/ERC721AQueryable.sol


pragma solidity ^0.8.4;


error InvalidQueryRange();

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

pragma solidity ^0.8.4;

contract ThanksBricker is ERC721A, Ownable {
    string public baseURI = "https://storageapi.fleek.co/256e1077-3ba4-4f13-9298-2a063e646bf9-bucket/BrickerJson/";
    string public constant baseExtension = ".json";
    uint256 public constant MAX_FREE = 1;
    uint256 public constant MAX_PER_TX = 10;
    uint256 public constant MAX_SUPPLY = 999;
    uint256 public price = 0.003 ether;

    bool public paused = true;

    constructor() ERC721A("Thanks Bricker", "ThanksBricker") {}

    function Mint() external payable {
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_PER_TX >= 1 , "Excess max per paid tx");
        require(price == msg.value, "Invalid funds provided");

        _safeMint(_caller, 1);
    }

    function freeMint() public{
        address _caller = _msgSender();
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + 1, "Exceeds max supply");
        require(tx.origin == _caller, "No contracts");
        require(MAX_FREE >= uint256(_getAux(_caller)) + 1, "Excess max per free wallet");

        _setAux(_caller, 1);
        _safeMint(_caller, 1);
    }

    function _startTokenId() internal override view virtual returns (uint256) {
        return 1;
    }

    function minted(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        (bool success, ) = _msgSender().call{value: balance}("");
        require(success, "Failed to send");
    }

    function teamMint(uint256 _number) external onlyOwner {
        _safeMint(_msgSender(), _number);
    }

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

    function pause(bool _state) external onlyOwner {
        paused = _state;
    }

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        require(_exists(_tokenId), "Token does not exist.");
        return bytes(baseURI).length > 0 ? string(
            abi.encodePacked(
              baseURI,
              Strings.toString(_tokenId),
              baseExtension
            )
        ) : "";
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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":"_number","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806054815260200162003e676054913960099080519060200190620000359291906200021d565b50660aa87bee538000600a556001600b60006101000a81548160ff0219169083151502179055503480156200006957600080fd5b506040518060400160405280600e81526020017f5468616e6b7320427269636b65720000000000000000000000000000000000008152506040518060400160405280600d81526020017f5468616e6b73427269636b6572000000000000000000000000000000000000008152508160029080519060200190620000ee9291906200021d565b508060039080519060200190620001079291906200021d565b50620001186200014660201b60201c565b600081905550505062000140620001346200014f60201b60201c565b6200015760201b60201c565b62000332565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613b2580620003426000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610699578063ed6661c2146106d6578063f2fde38b14610701578063f43a22dc1461072a576101e3565b8063a22cb465146105df578063b88d4fde14610608578063c668286214610631578063c87b56dd1461065c576101e3565b80638da5cb5b116100d15780638da5cb5b1461053557806391b7f5ed1461056057806395d89b4114610589578063a035b1fe146105b4576101e3565b80636352211e146104795780636c0360eb146104b657806370a08231146104e1578063715018a61461051e576101e3565b80632fbba1151161017a57806342842e0e1161014957806342842e0e146103e557806355f804b31461040e5780635b70ea9f146104375780635c975abb1461044e576101e3565b80632fbba1151461037057806332cb6b0c1461039957806334c73884146103c45780633ccfd60b146103ce576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ea3565b610755565b60405161021c91906132f0565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e76565b610837565b005b34801561025a57600080fd5b506102636108d0565b604051610270919061330b565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f46565b610962565b6040516102ad9190613289565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e36565b6109de565b005b3480156102eb57600080fd5b506102f4610ae9565b604051610301919061346d565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612cb3565b610b00565b60405161033e919061346d565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612d20565b610b12565b005b34801561037c57600080fd5b5061039760048036038101906103929190612f46565b610b22565b005b3480156103a557600080fd5b506103ae610bb2565b6040516103bb919061346d565b60405180910390f35b6103cc610bb8565b005b3480156103da57600080fd5b506103e3610d71565b005b3480156103f157600080fd5b5061040c60048036038101906104079190612d20565b610ea9565b005b34801561041a57600080fd5b5061043560048036038101906104309190612efd565b610ec9565b005b34801561044357600080fd5b5061044c610f5f565b005b34801561045a57600080fd5b506104636110fc565b60405161047091906132f0565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612f46565b61110f565b6040516104ad9190613289565b60405180910390f35b3480156104c257600080fd5b506104cb611125565b6040516104d8919061330b565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612cb3565b6111b3565b604051610515919061346d565b60405180910390f35b34801561052a57600080fd5b50610533611283565b005b34801561054157600080fd5b5061054a61130b565b6040516105579190613289565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612f46565b611335565b005b34801561059557600080fd5b5061059e6113bb565b6040516105ab919061330b565b60405180910390f35b3480156105c057600080fd5b506105c961144d565b6040516105d6919061346d565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612df6565b611453565b005b34801561061457600080fd5b5061062f600480360381019061062a9190612d73565b6115cb565b005b34801561063d57600080fd5b50610646611647565b604051610653919061330b565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612f46565b611680565b604051610690919061330b565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612ce0565b61175f565b6040516106cd91906132f0565b60405180910390f35b3480156106e257600080fd5b506106eb6117f3565b6040516106f8919061346d565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612cb3565b6117f8565b005b34801561073657600080fd5b5061073f6118f0565b60405161074c919061346d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610830575061082f826118f5565b5b9050919050565b61083f61195f565b73ffffffffffffffffffffffffffffffffffffffff1661085d61130b565b73ffffffffffffffffffffffffffffffffffffffff16146108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906133ed565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108df906136e3565b80601f016020809104026020016040519081016040528092919081815260200182805461090b906136e3565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611967565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e98261110f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7061195f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b61195f565b61175f565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae48383836119b5565b505050565b6000610af3611a67565b6001546000540303905090565b6000610b0b82611a70565b9050919050565b610b1d838383611ada565b505050565b610b2a61195f565b73ffffffffffffffffffffffffffffffffffffffff16610b4861130b565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906133ed565b60405180910390fd5b610baf610ba961195f565b82611f90565b50565b6103e781565b6000610bc261195f565b9050600b60009054906101000a900460ff1615610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b9061332d565b60405180910390fd5b6001610c1e610ae9565b610c289190613572565b6103e71015610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c63906133ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061344d565b60405180910390fd5b6001600a1015610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061336d565b60405180910390fd5b34600a5414610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061340d565b60405180910390fd5b610d6e816001611f90565b50565b610d7961195f565b73ffffffffffffffffffffffffffffffffffffffff16610d9761130b565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906133ed565b60405180910390fd5b60004790506000610dfc61195f565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e1f90613274565b60006040518083038185875af1925050503d8060008114610e5c576040519150601f19603f3d011682016040523d82523d6000602084013e610e61565b606091505b5050905080610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061342d565b60405180910390fd5b5050565b610ec4838383604051806020016040528060008152506115cb565b505050565b610ed161195f565b73ffffffffffffffffffffffffffffffffffffffff16610eef61130b565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c906133ed565b60405180910390fd5b8060099080519060200190610f5b929190612a84565b5050565b6000610f6961195f565b9050600b60009054906101000a900460ff1615610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb29061332d565b60405180910390fd5b6001610fc5610ae9565b610fcf9190613572565b6103e71015611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906133ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110789061344d565b60405180910390fd5b600161108c82611fae565b67ffffffffffffffff166110a09190613572565b600110156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061338d565b60405180910390fd5b6110ee81600161200e565b6110f9816001611f90565b50565b600b60009054906101000a900460ff1681565b600061111a8261207b565b600001519050919050565b60098054611132906136e3565b80601f016020809104026020016040519081016040528092919081815260200182805461115e906136e3565b80156111ab5780601f10611180576101008083540402835291602001916111ab565b820191906000526020600020905b81548152906001019060200180831161118e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61128b61195f565b73ffffffffffffffffffffffffffffffffffffffff166112a961130b565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906133ed565b60405180910390fd5b611309600061230a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61133d61195f565b73ffffffffffffffffffffffffffffffffffffffff1661135b61130b565b73ffffffffffffffffffffffffffffffffffffffff16146113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a8906133ed565b60405180910390fd5b80600a8190555050565b6060600380546113ca906136e3565b80601f01602080910402602001604051908101604052809291908181526020018280546113f6906136e3565b80156114435780601f1061141857610100808354040283529160200191611443565b820191906000526020600020905b81548152906001019060200180831161142657829003601f168201915b5050505050905090565b600a5481565b61145b61195f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114cd61195f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157a61195f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115bf91906132f0565b60405180910390a35050565b6115d6848484611ada565b6115f58373ffffffffffffffffffffffffffffffffffffffff166123d0565b801561160a5750611608848484846123f3565b155b15611641576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061168b82611967565b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c1906133cd565b60405180910390fd5b6000600980546116d9906136e3565b9050116116f55760405180602001604052806000815250611758565b600961170083612553565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161174893929190613243565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b61180061195f565b73ffffffffffffffffffffffffffffffffffffffff1661181e61130b565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906133ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db9061334d565b60405180910390fd5b6118ed8161230a565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611972611a67565b11158015611981575060005482105b80156119ae575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611ae58261207b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b50576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b7161195f565b73ffffffffffffffffffffffffffffffffffffffff161480611ba05750611b9f85611b9a61195f565b61175f565b5b80611be55750611bae61195f565b73ffffffffffffffffffffffffffffffffffffffff16611bcd84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c9285858560016126b4565b611c9e600084876119b5565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f1e576000548214611f1d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f8985858560016126ba565b5050505050565b611faa8282604051806020016040528060008152506126c0565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b612083612b0a565b600082905080612091611a67565b111580156120a0575060005481105b156122d3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122d157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b5578092505050612305565b5b6001156122d057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122cb578092505050612305565b6121b6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261241961195f565b8786866040518563ffffffff1660e01b815260040161243b94939291906132a4565b602060405180830381600087803b15801561245557600080fd5b505af192505050801561248657506040513d601f19601f820116820180604052508101906124839190612ed0565b60015b612500573d80600081146124b6576040519150601f19603f3d011682016040523d82523d6000602084013e6124bb565b606091505b506000815114156124f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561259b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126af565b600082905060005b600082146125cd5780806125b690613746565b915050600a826125c691906135c8565b91506125a3565b60008167ffffffffffffffff8111156125e9576125e861387c565b5b6040519080825280601f01601f19166020018201604052801561261b5781602001600182028036833780820191505090505b5090505b600085146126a85760018261263491906135f9565b9150600a85612643919061378f565b603061264f9190613572565b60f81b8183815181106126655761266461384d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a191906135c8565b945061261f565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612768576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277560008583866126b4565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129368673ffffffffffffffffffffffffffffffffffffffff166123d0565b156129fc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ab60008784806001019550876123f3565b6129e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561293c5782600054146129f757600080fd5b612a68565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129fd575b816000819055505050612a7e60008583866126ba565b50505050565b828054612a90906136e3565b90600052602060002090601f016020900481019282612ab25760008555612af9565b82601f10612acb57805160ff1916838001178555612af9565b82800160010185558215612af9579182015b82811115612af8578251825591602001919060010190612add565b5b509050612b069190612b4d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b66576000816000905550600101612b4e565b5090565b6000612b7d612b78846134ad565b613488565b905082815260208101848484011115612b9957612b986138b0565b5b612ba48482856136a1565b509392505050565b6000612bbf612bba846134de565b613488565b905082815260208101848484011115612bdb57612bda6138b0565b5b612be68482856136a1565b509392505050565b600081359050612bfd81613a93565b92915050565b600081359050612c1281613aaa565b92915050565b600081359050612c2781613ac1565b92915050565b600081519050612c3c81613ac1565b92915050565b600082601f830112612c5757612c566138ab565b5b8135612c67848260208601612b6a565b91505092915050565b600082601f830112612c8557612c846138ab565b5b8135612c95848260208601612bac565b91505092915050565b600081359050612cad81613ad8565b92915050565b600060208284031215612cc957612cc86138ba565b5b6000612cd784828501612bee565b91505092915050565b60008060408385031215612cf757612cf66138ba565b5b6000612d0585828601612bee565b9250506020612d1685828601612bee565b9150509250929050565b600080600060608486031215612d3957612d386138ba565b5b6000612d4786828701612bee565b9350506020612d5886828701612bee565b9250506040612d6986828701612c9e565b9150509250925092565b60008060008060808587031215612d8d57612d8c6138ba565b5b6000612d9b87828801612bee565b9450506020612dac87828801612bee565b9350506040612dbd87828801612c9e565b925050606085013567ffffffffffffffff811115612dde57612ddd6138b5565b5b612dea87828801612c42565b91505092959194509250565b60008060408385031215612e0d57612e0c6138ba565b5b6000612e1b85828601612bee565b9250506020612e2c85828601612c03565b9150509250929050565b60008060408385031215612e4d57612e4c6138ba565b5b6000612e5b85828601612bee565b9250506020612e6c85828601612c9e565b9150509250929050565b600060208284031215612e8c57612e8b6138ba565b5b6000612e9a84828501612c03565b91505092915050565b600060208284031215612eb957612eb86138ba565b5b6000612ec784828501612c18565b91505092915050565b600060208284031215612ee657612ee56138ba565b5b6000612ef484828501612c2d565b91505092915050565b600060208284031215612f1357612f126138ba565b5b600082013567ffffffffffffffff811115612f3157612f306138b5565b5b612f3d84828501612c70565b91505092915050565b600060208284031215612f5c57612f5b6138ba565b5b6000612f6a84828501612c9e565b91505092915050565b612f7c8161362d565b82525050565b612f8b8161363f565b82525050565b6000612f9c82613524565b612fa6818561353a565b9350612fb68185602086016136b0565b612fbf816138bf565b840191505092915050565b6000612fd58261352f565b612fdf8185613556565b9350612fef8185602086016136b0565b612ff8816138bf565b840191505092915050565b600061300e8261352f565b6130188185613567565b93506130288185602086016136b0565b80840191505092915050565b60008154613041816136e3565b61304b8186613567565b945060018216600081146130665760018114613077576130aa565b60ff198316865281860193506130aa565b6130808561350f565b60005b838110156130a257815481890152600182019150602081019050613083565b838801955050505b50505092915050565b60006130c0600683613556565b91506130cb826138d0565b602082019050919050565b60006130e3602683613556565b91506130ee826138f9565b604082019050919050565b6000613106601683613556565b915061311182613948565b602082019050919050565b6000613129601a83613556565b915061313482613971565b602082019050919050565b600061314c601283613556565b91506131578261399a565b602082019050919050565b600061316f601583613556565b915061317a826139c3565b602082019050919050565b6000613192602083613556565b915061319d826139ec565b602082019050919050565b60006131b5601683613556565b91506131c082613a15565b602082019050919050565b60006131d860008361354b565b91506131e382613a3e565b600082019050919050565b60006131fb600e83613556565b915061320682613a41565b602082019050919050565b600061321e600c83613556565b915061322982613a6a565b602082019050919050565b61323d81613697565b82525050565b600061324f8286613034565b915061325b8285613003565b91506132678284613003565b9150819050949350505050565b600061327f826131cb565b9150819050919050565b600060208201905061329e6000830184612f73565b92915050565b60006080820190506132b96000830187612f73565b6132c66020830186612f73565b6132d36040830185613234565b81810360608301526132e58184612f91565b905095945050505050565b60006020820190506133056000830184612f82565b92915050565b600060208201905081810360008301526133258184612fca565b905092915050565b60006020820190508181036000830152613346816130b3565b9050919050565b60006020820190508181036000830152613366816130d6565b9050919050565b60006020820190508181036000830152613386816130f9565b9050919050565b600060208201905081810360008301526133a68161311c565b9050919050565b600060208201905081810360008301526133c68161313f565b9050919050565b600060208201905081810360008301526133e681613162565b9050919050565b6000602082019050818103600083015261340681613185565b9050919050565b60006020820190508181036000830152613426816131a8565b9050919050565b60006020820190508181036000830152613446816131ee565b9050919050565b6000602082019050818103600083015261346681613211565b9050919050565b60006020820190506134826000830184613234565b92915050565b60006134926134a3565b905061349e8282613715565b919050565b6000604051905090565b600067ffffffffffffffff8211156134c8576134c761387c565b5b6134d1826138bf565b9050602081019050919050565b600067ffffffffffffffff8211156134f9576134f861387c565b5b613502826138bf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061357d82613697565b915061358883613697565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135bd576135bc6137c0565b5b828201905092915050565b60006135d382613697565b91506135de83613697565b9250826135ee576135ed6137ef565b5b828204905092915050565b600061360482613697565b915061360f83613697565b925082821015613622576136216137c0565b5b828203905092915050565b600061363882613677565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136ce5780820151818401526020810190506136b3565b838111156136dd576000848401525b50505050565b600060028204905060018216806136fb57607f821691505b6020821081141561370f5761370e61381e565b5b50919050565b61371e826138bf565b810181811067ffffffffffffffff8211171561373d5761373c61387c565b5b80604052505050565b600061375182613697565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613784576137836137c0565b5b600182019050919050565b600061379a82613697565b91506137a583613697565b9250826137b5576137b46137ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613a9c8161362d565b8114613aa757600080fd5b50565b613ab38161363f565b8114613abe57600080fd5b50565b613aca8161364b565b8114613ad557600080fd5b50565b613ae181613697565b8114613aec57600080fd5b5056fea26469706673582212204bcc3f360e79f9b807158aee7f853a87a0af644c4b8125b1261f1019e00cecbe64736f6c6343000807003368747470733a2f2f73746f726167656170692e666c65656b2e636f2f32353665313037372d336261342d346631332d393239382d3261303633653634366266392d6275636b65742f427269636b65724a736f6e2f

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063e985e9c511610064578063e985e9c514610699578063ed6661c2146106d6578063f2fde38b14610701578063f43a22dc1461072a576101e3565b8063a22cb465146105df578063b88d4fde14610608578063c668286214610631578063c87b56dd1461065c576101e3565b80638da5cb5b116100d15780638da5cb5b1461053557806391b7f5ed1461056057806395d89b4114610589578063a035b1fe146105b4576101e3565b80636352211e146104795780636c0360eb146104b657806370a08231146104e1578063715018a61461051e576101e3565b80632fbba1151161017a57806342842e0e1161014957806342842e0e146103e557806355f804b31461040e5780635b70ea9f146104375780635c975abb1461044e576101e3565b80632fbba1151461037057806332cb6b0c1461039957806334c73884146103c45780633ccfd60b146103ce576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102df5780631e7269c51461030a57806323b872dd14610347576101e3565b806301ffc9a7146101e857806302329a291461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612ea3565b610755565b60405161021c91906132f0565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612e76565b610837565b005b34801561025a57600080fd5b506102636108d0565b604051610270919061330b565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612f46565b610962565b6040516102ad9190613289565b60405180910390f35b3480156102c257600080fd5b506102dd60048036038101906102d89190612e36565b6109de565b005b3480156102eb57600080fd5b506102f4610ae9565b604051610301919061346d565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612cb3565b610b00565b60405161033e919061346d565b60405180910390f35b34801561035357600080fd5b5061036e60048036038101906103699190612d20565b610b12565b005b34801561037c57600080fd5b5061039760048036038101906103929190612f46565b610b22565b005b3480156103a557600080fd5b506103ae610bb2565b6040516103bb919061346d565b60405180910390f35b6103cc610bb8565b005b3480156103da57600080fd5b506103e3610d71565b005b3480156103f157600080fd5b5061040c60048036038101906104079190612d20565b610ea9565b005b34801561041a57600080fd5b5061043560048036038101906104309190612efd565b610ec9565b005b34801561044357600080fd5b5061044c610f5f565b005b34801561045a57600080fd5b506104636110fc565b60405161047091906132f0565b60405180910390f35b34801561048557600080fd5b506104a0600480360381019061049b9190612f46565b61110f565b6040516104ad9190613289565b60405180910390f35b3480156104c257600080fd5b506104cb611125565b6040516104d8919061330b565b60405180910390f35b3480156104ed57600080fd5b5061050860048036038101906105039190612cb3565b6111b3565b604051610515919061346d565b60405180910390f35b34801561052a57600080fd5b50610533611283565b005b34801561054157600080fd5b5061054a61130b565b6040516105579190613289565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190612f46565b611335565b005b34801561059557600080fd5b5061059e6113bb565b6040516105ab919061330b565b60405180910390f35b3480156105c057600080fd5b506105c961144d565b6040516105d6919061346d565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190612df6565b611453565b005b34801561061457600080fd5b5061062f600480360381019061062a9190612d73565b6115cb565b005b34801561063d57600080fd5b50610646611647565b604051610653919061330b565b60405180910390f35b34801561066857600080fd5b50610683600480360381019061067e9190612f46565b611680565b604051610690919061330b565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb9190612ce0565b61175f565b6040516106cd91906132f0565b60405180910390f35b3480156106e257600080fd5b506106eb6117f3565b6040516106f8919061346d565b60405180910390f35b34801561070d57600080fd5b5061072860048036038101906107239190612cb3565b6117f8565b005b34801561073657600080fd5b5061073f6118f0565b60405161074c919061346d565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061082057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610830575061082f826118f5565b5b9050919050565b61083f61195f565b73ffffffffffffffffffffffffffffffffffffffff1661085d61130b565b73ffffffffffffffffffffffffffffffffffffffff16146108b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108aa906133ed565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6060600280546108df906136e3565b80601f016020809104026020016040519081016040528092919081815260200182805461090b906136e3565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611967565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e98261110f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a7061195f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610aa25750610aa081610a9b61195f565b61175f565b155b15610ad9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ae48383836119b5565b505050565b6000610af3611a67565b6001546000540303905090565b6000610b0b82611a70565b9050919050565b610b1d838383611ada565b505050565b610b2a61195f565b73ffffffffffffffffffffffffffffffffffffffff16610b4861130b565b73ffffffffffffffffffffffffffffffffffffffff1614610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b95906133ed565b60405180910390fd5b610baf610ba961195f565b82611f90565b50565b6103e781565b6000610bc261195f565b9050600b60009054906101000a900460ff1615610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b9061332d565b60405180910390fd5b6001610c1e610ae9565b610c289190613572565b6103e71015610c6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c63906133ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd19061344d565b60405180910390fd5b6001600a1015610d1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d169061336d565b60405180910390fd5b34600a5414610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a9061340d565b60405180910390fd5b610d6e816001611f90565b50565b610d7961195f565b73ffffffffffffffffffffffffffffffffffffffff16610d9761130b565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de4906133ed565b60405180910390fd5b60004790506000610dfc61195f565b73ffffffffffffffffffffffffffffffffffffffff1682604051610e1f90613274565b60006040518083038185875af1925050503d8060008114610e5c576040519150601f19603f3d011682016040523d82523d6000602084013e610e61565b606091505b5050905080610ea5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9c9061342d565b60405180910390fd5b5050565b610ec4838383604051806020016040528060008152506115cb565b505050565b610ed161195f565b73ffffffffffffffffffffffffffffffffffffffff16610eef61130b565b73ffffffffffffffffffffffffffffffffffffffff1614610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c906133ed565b60405180910390fd5b8060099080519060200190610f5b929190612a84565b5050565b6000610f6961195f565b9050600b60009054906101000a900460ff1615610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb29061332d565b60405180910390fd5b6001610fc5610ae9565b610fcf9190613572565b6103e71015611013576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100a906133ad565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110789061344d565b60405180910390fd5b600161108c82611fae565b67ffffffffffffffff166110a09190613572565b600110156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da9061338d565b60405180910390fd5b6110ee81600161200e565b6110f9816001611f90565b50565b600b60009054906101000a900460ff1681565b600061111a8261207b565b600001519050919050565b60098054611132906136e3565b80601f016020809104026020016040519081016040528092919081815260200182805461115e906136e3565b80156111ab5780601f10611180576101008083540402835291602001916111ab565b820191906000526020600020905b81548152906001019060200180831161118e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561121b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61128b61195f565b73ffffffffffffffffffffffffffffffffffffffff166112a961130b565b73ffffffffffffffffffffffffffffffffffffffff16146112ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f6906133ed565b60405180910390fd5b611309600061230a565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61133d61195f565b73ffffffffffffffffffffffffffffffffffffffff1661135b61130b565b73ffffffffffffffffffffffffffffffffffffffff16146113b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a8906133ed565b60405180910390fd5b80600a8190555050565b6060600380546113ca906136e3565b80601f01602080910402602001604051908101604052809291908181526020018280546113f6906136e3565b80156114435780601f1061141857610100808354040283529160200191611443565b820191906000526020600020905b81548152906001019060200180831161142657829003601f168201915b5050505050905090565b600a5481565b61145b61195f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c0576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006114cd61195f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157a61195f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115bf91906132f0565b60405180910390a35050565b6115d6848484611ada565b6115f58373ffffffffffffffffffffffffffffffffffffffff166123d0565b801561160a5750611608848484846123f3565b155b15611641576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b606061168b82611967565b6116ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c1906133cd565b60405180910390fd5b6000600980546116d9906136e3565b9050116116f55760405180602001604052806000815250611758565b600961170083612553565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161174893929190613243565b6040516020818303038152906040525b9050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600181565b61180061195f565b73ffffffffffffffffffffffffffffffffffffffff1661181e61130b565b73ffffffffffffffffffffffffffffffffffffffff1614611874576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186b906133ed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db9061334d565b60405180910390fd5b6118ed8161230a565b50565b600a81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600081611972611a67565b11158015611981575060005482105b80156119ae575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6000611ae58261207b565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611b50576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611b7161195f565b73ffffffffffffffffffffffffffffffffffffffff161480611ba05750611b9f85611b9a61195f565b61175f565b5b80611be55750611bae61195f565b73ffffffffffffffffffffffffffffffffffffffff16611bcd84610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611c1e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c85576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c9285858560016126b4565b611c9e600084876119b5565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611f1e576000548214611f1d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f8985858560016126ba565b5050505050565b611faa8282604051806020016040528060008152506126c0565b5050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160189054906101000a900467ffffffffffffffff169050919050565b80600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160186101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505050565b612083612b0a565b600082905080612091611a67565b111580156120a0575060005481105b156122d3576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516122d157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b5578092505050612305565b5b6001156122d057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122cb578092505050612305565b6121b6565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261241961195f565b8786866040518563ffffffff1660e01b815260040161243b94939291906132a4565b602060405180830381600087803b15801561245557600080fd5b505af192505050801561248657506040513d601f19601f820116820180604052508101906124839190612ed0565b60015b612500573d80600081146124b6576040519150601f19603f3d011682016040523d82523d6000602084013e6124bb565b606091505b506000815114156124f8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561259b576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126af565b600082905060005b600082146125cd5780806125b690613746565b915050600a826125c691906135c8565b91506125a3565b60008167ffffffffffffffff8111156125e9576125e861387c565b5b6040519080825280601f01601f19166020018201604052801561261b5781602001600182028036833780820191505090505b5090505b600085146126a85760018261263491906135f9565b9150600a85612643919061378f565b603061264f9190613572565b60f81b8183815181106126655761266461384d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a191906135c8565b945061261f565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612768576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61277560008583866126b4565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506129368673ffffffffffffffffffffffffffffffffffffffff166123d0565b156129fc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46129ab60008784806001019550876123f3565b6129e1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561293c5782600054146129f757600080fd5b612a68565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808214156129fd575b816000819055505050612a7e60008583866126ba565b50505050565b828054612a90906136e3565b90600052602060002090601f016020900481019282612ab25760008555612af9565b82601f10612acb57805160ff1916838001178555612af9565b82800160010185558215612af9579182015b82811115612af8578251825591602001919060010190612add565b5b509050612b069190612b4d565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612b66576000816000905550600101612b4e565b5090565b6000612b7d612b78846134ad565b613488565b905082815260208101848484011115612b9957612b986138b0565b5b612ba48482856136a1565b509392505050565b6000612bbf612bba846134de565b613488565b905082815260208101848484011115612bdb57612bda6138b0565b5b612be68482856136a1565b509392505050565b600081359050612bfd81613a93565b92915050565b600081359050612c1281613aaa565b92915050565b600081359050612c2781613ac1565b92915050565b600081519050612c3c81613ac1565b92915050565b600082601f830112612c5757612c566138ab565b5b8135612c67848260208601612b6a565b91505092915050565b600082601f830112612c8557612c846138ab565b5b8135612c95848260208601612bac565b91505092915050565b600081359050612cad81613ad8565b92915050565b600060208284031215612cc957612cc86138ba565b5b6000612cd784828501612bee565b91505092915050565b60008060408385031215612cf757612cf66138ba565b5b6000612d0585828601612bee565b9250506020612d1685828601612bee565b9150509250929050565b600080600060608486031215612d3957612d386138ba565b5b6000612d4786828701612bee565b9350506020612d5886828701612bee565b9250506040612d6986828701612c9e565b9150509250925092565b60008060008060808587031215612d8d57612d8c6138ba565b5b6000612d9b87828801612bee565b9450506020612dac87828801612bee565b9350506040612dbd87828801612c9e565b925050606085013567ffffffffffffffff811115612dde57612ddd6138b5565b5b612dea87828801612c42565b91505092959194509250565b60008060408385031215612e0d57612e0c6138ba565b5b6000612e1b85828601612bee565b9250506020612e2c85828601612c03565b9150509250929050565b60008060408385031215612e4d57612e4c6138ba565b5b6000612e5b85828601612bee565b9250506020612e6c85828601612c9e565b9150509250929050565b600060208284031215612e8c57612e8b6138ba565b5b6000612e9a84828501612c03565b91505092915050565b600060208284031215612eb957612eb86138ba565b5b6000612ec784828501612c18565b91505092915050565b600060208284031215612ee657612ee56138ba565b5b6000612ef484828501612c2d565b91505092915050565b600060208284031215612f1357612f126138ba565b5b600082013567ffffffffffffffff811115612f3157612f306138b5565b5b612f3d84828501612c70565b91505092915050565b600060208284031215612f5c57612f5b6138ba565b5b6000612f6a84828501612c9e565b91505092915050565b612f7c8161362d565b82525050565b612f8b8161363f565b82525050565b6000612f9c82613524565b612fa6818561353a565b9350612fb68185602086016136b0565b612fbf816138bf565b840191505092915050565b6000612fd58261352f565b612fdf8185613556565b9350612fef8185602086016136b0565b612ff8816138bf565b840191505092915050565b600061300e8261352f565b6130188185613567565b93506130288185602086016136b0565b80840191505092915050565b60008154613041816136e3565b61304b8186613567565b945060018216600081146130665760018114613077576130aa565b60ff198316865281860193506130aa565b6130808561350f565b60005b838110156130a257815481890152600182019150602081019050613083565b838801955050505b50505092915050565b60006130c0600683613556565b91506130cb826138d0565b602082019050919050565b60006130e3602683613556565b91506130ee826138f9565b604082019050919050565b6000613106601683613556565b915061311182613948565b602082019050919050565b6000613129601a83613556565b915061313482613971565b602082019050919050565b600061314c601283613556565b91506131578261399a565b602082019050919050565b600061316f601583613556565b915061317a826139c3565b602082019050919050565b6000613192602083613556565b915061319d826139ec565b602082019050919050565b60006131b5601683613556565b91506131c082613a15565b602082019050919050565b60006131d860008361354b565b91506131e382613a3e565b600082019050919050565b60006131fb600e83613556565b915061320682613a41565b602082019050919050565b600061321e600c83613556565b915061322982613a6a565b602082019050919050565b61323d81613697565b82525050565b600061324f8286613034565b915061325b8285613003565b91506132678284613003565b9150819050949350505050565b600061327f826131cb565b9150819050919050565b600060208201905061329e6000830184612f73565b92915050565b60006080820190506132b96000830187612f73565b6132c66020830186612f73565b6132d36040830185613234565b81810360608301526132e58184612f91565b905095945050505050565b60006020820190506133056000830184612f82565b92915050565b600060208201905081810360008301526133258184612fca565b905092915050565b60006020820190508181036000830152613346816130b3565b9050919050565b60006020820190508181036000830152613366816130d6565b9050919050565b60006020820190508181036000830152613386816130f9565b9050919050565b600060208201905081810360008301526133a68161311c565b9050919050565b600060208201905081810360008301526133c68161313f565b9050919050565b600060208201905081810360008301526133e681613162565b9050919050565b6000602082019050818103600083015261340681613185565b9050919050565b60006020820190508181036000830152613426816131a8565b9050919050565b60006020820190508181036000830152613446816131ee565b9050919050565b6000602082019050818103600083015261346681613211565b9050919050565b60006020820190506134826000830184613234565b92915050565b60006134926134a3565b905061349e8282613715565b919050565b6000604051905090565b600067ffffffffffffffff8211156134c8576134c761387c565b5b6134d1826138bf565b9050602081019050919050565b600067ffffffffffffffff8211156134f9576134f861387c565b5b613502826138bf565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061357d82613697565b915061358883613697565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135bd576135bc6137c0565b5b828201905092915050565b60006135d382613697565b91506135de83613697565b9250826135ee576135ed6137ef565b5b828204905092915050565b600061360482613697565b915061360f83613697565b925082821015613622576136216137c0565b5b828203905092915050565b600061363882613677565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156136ce5780820151818401526020810190506136b3565b838111156136dd576000848401525b50505050565b600060028204905060018216806136fb57607f821691505b6020821081141561370f5761370e61381e565b5b50919050565b61371e826138bf565b810181811067ffffffffffffffff8211171561373d5761373c61387c565b5b80604052505050565b600061375182613697565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613784576137836137c0565b5b600182019050919050565b600061379a82613697565b91506137a583613697565b9250826137b5576137b46137ef565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f457863657373206d617820706572207061696420747800000000000000000000600082015250565b7f457863657373206d61782070657220667265652077616c6c6574000000000000600082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b50565b7f4661696c656420746f2073656e64000000000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374730000000000000000000000000000000000000000600082015250565b613a9c8161362d565b8114613aa757600080fd5b50565b613ab38161363f565b8114613abe57600080fd5b50565b613aca8161364b565b8114613ad557600080fd5b50565b613ae181613697565b8114613aec57600080fd5b5056fea26469706673582212204bcc3f360e79f9b807158aee7f853a87a0af644c4b8125b1261f1019e00cecbe64736f6c63430008070033

Deployed Bytecode Sourcemap

51939:2532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26969:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53909:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30082:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31585:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31148:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26218:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53368:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32450:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53702:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52248:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52439:408;;;:::i;:::-;;53485:209;;;;;;;;;;;;;:::i;:::-;;32691:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53998:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52855:396;;;;;;;;;;;;;:::i;:::-;;52338:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29890:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51989:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27338:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4759:103;;;;;;;;;;;;;:::i;:::-;;4108:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53815:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30251:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52295:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31861:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32947:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52106:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54106:362;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32219:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52159:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5017:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52202:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26969:305;27071:4;27123:25;27108:40;;;:11;:40;;;;:105;;;;27180:33;27165:48;;;:11;:48;;;;27108:105;:158;;;;27230:36;27254:11;27230:23;:36::i;:::-;27108:158;27088:178;;26969:305;;;:::o;53909:81::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53976:6:::1;53967;;:15;;;;;;;;;;;;;;;;;;53909:81:::0;:::o;30082:100::-;30136:13;30169:5;30162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30082:100;:::o;31585:204::-;31653:7;31678:16;31686:7;31678;:16::i;:::-;31673:64;;31703:34;;;;;;;;;;;;;;31673:64;31757:15;:24;31773:7;31757:24;;;;;;;;;;;;;;;;;;;;;31750:31;;31585:204;;;:::o;31148:371::-;31221:13;31237:24;31253:7;31237:15;:24::i;:::-;31221:40;;31282:5;31276:11;;:2;:11;;;31272:48;;;31296:24;;;;;;;;;;;;;;31272:48;31353:5;31337:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31363:37;31380:5;31387:12;:10;:12::i;:::-;31363:16;:37::i;:::-;31362:38;31337:63;31333:138;;;31424:35;;;;;;;;;;;;;;31333:138;31483:28;31492:2;31496:7;31505:5;31483:8;:28::i;:::-;31210:309;31148:371;;:::o;26218:303::-;26262:7;26487:15;:13;:15::i;:::-;26472:12;;26456:13;;:28;:46;26449:53;;26218:303;:::o;53368:109::-;53421:7;53448:21;53462:6;53448:13;:21::i;:::-;53441:28;;53368:109;;;:::o;32450:170::-;32584:28;32594:4;32600:2;32604:7;32584:9;:28::i;:::-;32450:170;;;:::o;53702:105::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53767:32:::1;53777:12;:10;:12::i;:::-;53791:7;53767:9;:32::i;:::-;53702:105:::0;:::o;52248:40::-;52285:3;52248:40;:::o;52439:408::-;52483:15;52501:12;:10;:12::i;:::-;52483:30;;52533:6;;;;;;;;;;;52532:7;52524:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;52599:1;52583:13;:11;:13::i;:::-;:17;;;;:::i;:::-;52285:3;52569:31;;52561:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;52655:7;52642:20;;:9;:20;;;52634:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;52712:1;52239:2;52698:15;;52690:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;52769:9;52760:5;;:18;52752:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;52818:21;52828:7;52837:1;52818:9;:21::i;:::-;52472:375;52439:408::o;53485:209::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53535:15:::1;53553:21;53535:39;;53586:12;53604;:10;:12::i;:::-;:17;;53629:7;53604:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53585:56;;;53660:7;53652:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;53524:170;;53485:209::o:0;32691:185::-;32829:39;32846:4;32852:2;32856:7;32829:39;;;;;;;;;;;;:16;:39::i;:::-;32691:185;;;:::o;53998:100::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54082:8:::1;54072:7;:18;;;;;;;;;;;;:::i;:::-;;53998:100:::0;:::o;52855:396::-;52892:15;52910:12;:10;:12::i;:::-;52892:30;;52942:6;;;;;;;;;;;52941:7;52933:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;53008:1;52992:13;:11;:13::i;:::-;:17;;;;:::i;:::-;52285:3;52978:31;;52970:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53064:7;53051:20;;:9;:20;;;53043:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;53147:1;53127:16;53135:7;53127;:16::i;:::-;53119:25;;:29;;;;:::i;:::-;52194:1;53107:41;;53099:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;53192:19;53200:7;53209:1;53192:7;:19::i;:::-;53222:21;53232:7;53241:1;53222:9;:21::i;:::-;52881:370;52855:396::o;52338:25::-;;;;;;;;;;;;;:::o;29890:125::-;29954:7;29981:21;29994:7;29981:12;:21::i;:::-;:26;;;29974:33;;29890:125;;;:::o;51989:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27338:206::-;27402:7;27443:1;27426:19;;:5;:19;;;27422:60;;;27454:28;;;;;;;;;;;;;;27422:60;27508:12;:19;27521:5;27508:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27500:36;;27493:43;;27338:206;;;:::o;4759:103::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4824:30:::1;4851:1;4824:18;:30::i;:::-;4759:103::o:0;4108:87::-;4154:7;4181:6;;;;;;;;;;;4174:13;;4108:87;:::o;53815:86::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53887:6:::1;53879:5;:14;;;;53815:86:::0;:::o;30251:104::-;30307:13;30340:7;30333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30251:104;:::o;52295:34::-;;;;:::o;31861:287::-;31972:12;:10;:12::i;:::-;31960:24;;:8;:24;;;31956:54;;;31993:17;;;;;;;;;;;;;;31956:54;32068:8;32023:18;:32;32042:12;:10;:12::i;:::-;32023:32;;;;;;;;;;;;;;;:42;32056:8;32023:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;32121:8;32092:48;;32107:12;:10;:12::i;:::-;32092:48;;;32131:8;32092:48;;;;;;:::i;:::-;;;;;;;;31861:287;;:::o;32947:369::-;33114:28;33124:4;33130:2;33134:7;33114:9;:28::i;:::-;33157:15;:2;:13;;;:15::i;:::-;:76;;;;;33177:56;33208:4;33214:2;33218:7;33227:5;33177:30;:56::i;:::-;33176:57;33157:76;33153:156;;;33257:40;;;;;;;;;;;;;;33153:156;32947:369;;;;:::o;52106:46::-;;;;;;;;;;;;;;;;;;;:::o;54106:362::-;54172:13;54206:17;54214:8;54206:7;:17::i;:::-;54198:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;54291:1;54273:7;54267:21;;;;;:::i;:::-;;;:25;:193;;;;;;;;;;;;;;;;;54349:7;54373:26;54390:8;54373:16;:26::i;:::-;54416:13;;;;;;;;;;;;;;;;;54316:128;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54267:193;54260:200;;54106:362;;;:::o;32219:164::-;32316:4;32340:18;:25;32359:5;32340:25;;;;;;;;;;;;;;;:35;32366:8;32340:35;;;;;;;;;;;;;;;;;;;;;;;;;32333:42;;32219:164;;;;:::o;52159:36::-;52194:1;52159:36;:::o;5017:201::-;4339:12;:10;:12::i;:::-;4328:23;;:7;:5;:7::i;:::-;:23;;;4320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5126:1:::1;5106:22;;:8;:22;;;;5098:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5182:28;5201:8;5182:18;:28::i;:::-;5017:201:::0;:::o;52202:39::-;52239:2;52202:39;:::o;16915:157::-;17000:4;17039:25;17024:40;;;:11;:40;;;;17017:47;;16915:157;;;:::o;2832:98::-;2885:7;2912:10;2905:17;;2832:98;:::o;33571:174::-;33628:4;33671:7;33652:15;:13;:15::i;:::-;:26;;:53;;;;;33692:13;;33682:7;:23;33652:53;:85;;;;;33710:11;:20;33722:7;33710:20;;;;;;;;;;;:27;;;;;;;;;;;;33709:28;33652:85;33645:92;;33571:174;;;:::o;42797:196::-;42939:2;42912:15;:24;42928:7;42912:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42977:7;42973:2;42957:28;;42966:5;42957:28;;;;;;;;;;;;42797:196;;;:::o;53259:101::-;53324:7;53351:1;53344:8;;53259:101;:::o;27626:137::-;27687:7;27722:12;:19;27735:5;27722:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;27714:41;;27707:48;;27626:137;;;:::o;37745:2130::-;37860:35;37898:21;37911:7;37898:12;:21::i;:::-;37860:59;;37958:4;37936:26;;:13;:18;;;:26;;;37932:67;;37971:28;;;;;;;;;;;;;;37932:67;38012:22;38054:4;38038:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;38075:36;38092:4;38098:12;:10;:12::i;:::-;38075:16;:36::i;:::-;38038:73;:126;;;;38152:12;:10;:12::i;:::-;38128:36;;:20;38140:7;38128:11;:20::i;:::-;:36;;;38038:126;38012:153;;38183:17;38178:66;;38209:35;;;;;;;;;;;;;;38178:66;38273:1;38259:16;;:2;:16;;;38255:52;;;38284:23;;;;;;;;;;;;;;38255:52;38320:43;38342:4;38348:2;38352:7;38361:1;38320:21;:43::i;:::-;38428:35;38445:1;38449:7;38458:4;38428:8;:35::i;:::-;38789:1;38759:12;:18;38772:4;38759:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38833:1;38805:12;:16;38818:2;38805:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38851:31;38885:11;:20;38897:7;38885:20;;;;;;;;;;;38851:54;;38936:2;38920:8;:13;;;:18;;;;;;;;;;;;;;;;;;38986:15;38953:8;:23;;;:49;;;;;;;;;;;;;;;;;;39254:19;39286:1;39276:7;:11;39254:33;;39302:31;39336:11;:24;39348:11;39336:24;;;;;;;;;;;39302:58;;39404:1;39379:27;;:8;:13;;;;;;;;;;;;:27;;;39375:384;;;39589:13;;39574:11;:28;39570:174;;39643:4;39627:8;:13;;;:20;;;;;;;;;;;;;;;;;;39696:13;:28;;;39670:8;:23;;;:54;;;;;;;;;;;;;;;;;;39570:174;39375:384;38734:1036;;;39806:7;39802:2;39787:27;;39796:4;39787:27;;;;;;;;;;;;39825:42;39846:4;39852:2;39856:7;39865:1;39825:20;:42::i;:::-;37849:2026;;37745:2130;;;:::o;33829:104::-;33898:27;33908:2;33912:8;33898:27;;;;;;;;;;;;:9;:27::i;:::-;33829:104;;:::o;28116:112::-;28171:6;28197:12;:19;28210:5;28197:19;;;;;;;;;;;;;;;:23;;;;;;;;;;;;28190:30;;28116:112;;;:::o;28416:101::-;28506:3;28480:12;:19;28493:5;28480:19;;;;;;;;;;;;;;;:23;;;:29;;;;;;;;;;;;;;;;;;28416:101;;:::o;28719:1109::-;28781:21;;:::i;:::-;28815:12;28830:7;28815:22;;28898:4;28879:15;:13;:15::i;:::-;:23;;:47;;;;;28913:13;;28906:4;:20;28879:47;28875:886;;;28947:31;28981:11;:17;28993:4;28981:17;;;;;;;;;;;28947:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29022:9;:16;;;29017:729;;29093:1;29067:28;;:9;:14;;;:28;;;29063:101;;29131:9;29124:16;;;;;;29063:101;29466:261;29473:4;29466:261;;;29506:6;;;;;;;;29551:11;:17;29563:4;29551:17;;;;;;;;;;;29539:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29625:1;29599:28;;:9;:14;;;:28;;;29595:109;;29667:9;29660:16;;;;;;29595:109;29466:261;;;29017:729;28928:833;28875:886;29789:31;;;;;;;;;;;;;;28719:1109;;;;:::o;5378:191::-;5452:16;5471:6;;;;;;;;;;;5452:25;;5497:8;5488:6;;:17;;;;;;;;;;;;;;;;;;5552:8;5521:40;;5542:8;5521:40;;;;;;;;;;;;5441:128;5378:191;:::o;6809:326::-;6869:4;7126:1;7104:7;:19;;;:23;7097:30;;6809:326;;;:::o;43485:667::-;43648:4;43685:2;43669:36;;;43706:12;:10;:12::i;:::-;43720:4;43726:7;43735:5;43669:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;43665:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43920:1;43903:6;:13;:18;43899:235;;;43949:40;;;;;;;;;;;;;;43899:235;44092:6;44086:13;44077:6;44073:2;44069:15;44062:38;43665:480;43798:45;;;43788:55;;;:6;:55;;;;43781:62;;;43485:667;;;;;;:::o;394:723::-;450:13;680:1;671:5;:10;667:53;;;698:10;;;;;;;;;;;;;;;;;;;;;667:53;730:12;745:5;730:20;;761:14;786:78;801:1;793:4;:9;786:78;;819:8;;;;;:::i;:::-;;;;850:2;842:10;;;;;:::i;:::-;;;786:78;;;874:19;906:6;896:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;874:39;;924:154;940:1;931:5;:10;924:154;;968:1;958:11;;;;;:::i;:::-;;;1035:2;1027:5;:10;;;;:::i;:::-;1014:2;:24;;;;:::i;:::-;1001:39;;984:6;991;984:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1064:2;1055:11;;;;;:::i;:::-;;;924:154;;;1102:6;1088:21;;;;;394:723;;;;:::o;44800:159::-;;;;;:::o;45618:158::-;;;;;:::o;34307:1751::-;34430:20;34453:13;;34430:36;;34495:1;34481:16;;:2;:16;;;34477:48;;;34506:19;;;;;;;;;;;;;;34477:48;34552:1;34540:8;:13;34536:44;;;34562:18;;;;;;;;;;;;;;34536:44;34593:61;34623:1;34627:2;34631:12;34645:8;34593:21;:61::i;:::-;34966:8;34931:12;:16;34944:2;34931:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35030:8;34990:12;:16;35003:2;34990:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35089:2;35056:11;:25;35068:12;35056:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35156:15;35106:11;:25;35118:12;35106:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35189:20;35212:12;35189:35;;35239:11;35268:8;35253:12;:23;35239:37;;35297:15;:2;:13;;;:15::i;:::-;35293:633;;;35333:314;35389:12;35385:2;35364:38;;35381:1;35364:38;;;;;;;;;;;;35430:69;35469:1;35473:2;35477:14;;;;;;35493:5;35430:30;:69::i;:::-;35425:174;;35535:40;;;;;;;;;;;;;;35425:174;35642:3;35626:12;:19;;35333:314;;35728:12;35711:13;;:29;35707:43;;35742:8;;;35707:43;35293:633;;;35791:120;35847:14;;;;;;35843:2;35822:40;;35839:1;35822:40;;;;;;;;;;;;35906:3;35890:12;:19;;35791:120;;35293:633;35956:12;35940:13;:28;;;;34906:1074;;35990:60;36019:1;36023:2;36027:12;36041:8;35990:20;:60::i;:::-;34419:1639;34307:1751;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410: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:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8869:845::-;8972:3;9009:5;9003:12;9038:36;9064:9;9038:36;:::i;:::-;9090:89;9172:6;9167:3;9090:89;:::i;:::-;9083:96;;9210:1;9199:9;9195:17;9226:1;9221:137;;;;9372:1;9367:341;;;;9188:520;;9221:137;9305:4;9301:9;9290;9286:25;9281:3;9274:38;9341:6;9336:3;9332:16;9325:23;;9221:137;;9367:341;9434:38;9466:5;9434:38;:::i;:::-;9494:1;9508:154;9522:6;9519:1;9516:13;9508:154;;;9596:7;9590:14;9586:1;9581:3;9577:11;9570:35;9646:1;9637:7;9633:15;9622:26;;9544:4;9541:1;9537:12;9532:17;;9508:154;;;9691:6;9686:3;9682:16;9675:23;;9374:334;;9188:520;;8976:738;;8869:845;;;;:::o;9720:365::-;9862:3;9883:66;9947:1;9942:3;9883:66;:::i;:::-;9876:73;;9958:93;10047:3;9958:93;:::i;:::-;10076:2;10071:3;10067:12;10060:19;;9720:365;;;:::o;10091:366::-;10233:3;10254:67;10318:2;10313:3;10254:67;:::i;:::-;10247:74;;10330:93;10419:3;10330:93;:::i;:::-;10448:2;10443:3;10439:12;10432:19;;10091:366;;;:::o;10463:::-;10605:3;10626:67;10690:2;10685:3;10626:67;:::i;:::-;10619:74;;10702:93;10791:3;10702:93;:::i;:::-;10820:2;10815:3;10811:12;10804:19;;10463:366;;;:::o;10835:::-;10977:3;10998:67;11062:2;11057:3;10998:67;:::i;:::-;10991:74;;11074:93;11163:3;11074:93;:::i;:::-;11192:2;11187:3;11183:12;11176:19;;10835:366;;;:::o;11207:::-;11349:3;11370:67;11434:2;11429:3;11370:67;:::i;:::-;11363:74;;11446:93;11535:3;11446:93;:::i;:::-;11564:2;11559:3;11555:12;11548:19;;11207:366;;;:::o;11579:::-;11721:3;11742:67;11806:2;11801:3;11742:67;:::i;:::-;11735:74;;11818:93;11907:3;11818:93;:::i;:::-;11936:2;11931:3;11927:12;11920:19;;11579:366;;;:::o;11951:::-;12093:3;12114:67;12178:2;12173:3;12114:67;:::i;:::-;12107:74;;12190:93;12279:3;12190:93;:::i;:::-;12308:2;12303:3;12299:12;12292:19;;11951:366;;;:::o;12323:::-;12465:3;12486:67;12550:2;12545:3;12486:67;:::i;:::-;12479:74;;12562:93;12651:3;12562:93;:::i;:::-;12680:2;12675:3;12671:12;12664:19;;12323:366;;;:::o;12695:398::-;12854:3;12875:83;12956:1;12951:3;12875:83;:::i;:::-;12868:90;;12967:93;13056:3;12967:93;:::i;:::-;13085:1;13080:3;13076:11;13069:18;;12695:398;;;:::o;13099:366::-;13241:3;13262:67;13326:2;13321:3;13262:67;:::i;:::-;13255:74;;13338:93;13427:3;13338:93;:::i;:::-;13456:2;13451:3;13447:12;13440:19;;13099:366;;;:::o;13471:::-;13613:3;13634:67;13698:2;13693:3;13634:67;:::i;:::-;13627:74;;13710:93;13799:3;13710:93;:::i;:::-;13828:2;13823:3;13819:12;13812:19;;13471:366;;;:::o;13843:118::-;13930:24;13948:5;13930:24;:::i;:::-;13925:3;13918:37;13843:118;;:::o;13967:589::-;14192:3;14214:92;14302:3;14293:6;14214:92;:::i;:::-;14207:99;;14323:95;14414:3;14405:6;14323:95;:::i;:::-;14316:102;;14435:95;14526:3;14517:6;14435:95;:::i;:::-;14428:102;;14547:3;14540:10;;13967:589;;;;;;:::o;14562:379::-;14746:3;14768:147;14911:3;14768:147;:::i;:::-;14761:154;;14932:3;14925:10;;14562:379;;;:::o;14947:222::-;15040:4;15078:2;15067:9;15063:18;15055:26;;15091:71;15159:1;15148:9;15144:17;15135:6;15091:71;:::i;:::-;14947:222;;;;:::o;15175:640::-;15370:4;15408:3;15397:9;15393:19;15385:27;;15422:71;15490:1;15479:9;15475:17;15466:6;15422:71;:::i;:::-;15503:72;15571:2;15560:9;15556:18;15547:6;15503:72;:::i;:::-;15585;15653:2;15642:9;15638:18;15629:6;15585:72;:::i;:::-;15704:9;15698:4;15694:20;15689:2;15678:9;15674:18;15667:48;15732:76;15803:4;15794:6;15732:76;:::i;:::-;15724:84;;15175:640;;;;;;;:::o;15821:210::-;15908:4;15946:2;15935:9;15931:18;15923:26;;15959:65;16021:1;16010:9;16006:17;15997:6;15959:65;:::i;:::-;15821:210;;;;:::o;16037:313::-;16150:4;16188:2;16177:9;16173:18;16165:26;;16237:9;16231:4;16227:20;16223:1;16212:9;16208:17;16201:47;16265:78;16338:4;16329:6;16265:78;:::i;:::-;16257:86;;16037:313;;;;:::o;16356:419::-;16522:4;16560:2;16549:9;16545:18;16537:26;;16609:9;16603:4;16599:20;16595:1;16584:9;16580:17;16573:47;16637:131;16763:4;16637:131;:::i;:::-;16629:139;;16356:419;;;:::o;16781:::-;16947:4;16985:2;16974:9;16970:18;16962:26;;17034:9;17028:4;17024:20;17020:1;17009:9;17005:17;16998:47;17062:131;17188:4;17062:131;:::i;:::-;17054:139;;16781:419;;;:::o;17206:::-;17372:4;17410:2;17399:9;17395:18;17387:26;;17459:9;17453:4;17449:20;17445:1;17434:9;17430:17;17423:47;17487:131;17613:4;17487:131;:::i;:::-;17479:139;;17206:419;;;:::o;17631:::-;17797:4;17835:2;17824:9;17820:18;17812:26;;17884:9;17878:4;17874:20;17870:1;17859:9;17855:17;17848:47;17912:131;18038:4;17912:131;:::i;:::-;17904:139;;17631:419;;;:::o;18056:::-;18222:4;18260:2;18249:9;18245:18;18237:26;;18309:9;18303:4;18299:20;18295:1;18284:9;18280:17;18273:47;18337:131;18463:4;18337:131;:::i;:::-;18329:139;;18056:419;;;:::o;18481:::-;18647:4;18685:2;18674:9;18670:18;18662:26;;18734:9;18728:4;18724:20;18720:1;18709:9;18705:17;18698:47;18762:131;18888:4;18762:131;:::i;:::-;18754:139;;18481:419;;;:::o;18906:::-;19072:4;19110:2;19099:9;19095:18;19087:26;;19159:9;19153:4;19149:20;19145:1;19134:9;19130:17;19123:47;19187:131;19313:4;19187:131;:::i;:::-;19179:139;;18906:419;;;:::o;19331:::-;19497:4;19535:2;19524:9;19520:18;19512:26;;19584:9;19578:4;19574:20;19570:1;19559:9;19555:17;19548:47;19612:131;19738:4;19612:131;:::i;:::-;19604:139;;19331:419;;;:::o;19756:::-;19922:4;19960:2;19949:9;19945:18;19937:26;;20009:9;20003:4;19999:20;19995:1;19984:9;19980:17;19973:47;20037:131;20163:4;20037:131;:::i;:::-;20029:139;;19756:419;;;:::o;20181:::-;20347:4;20385:2;20374:9;20370:18;20362:26;;20434:9;20428:4;20424:20;20420:1;20409:9;20405:17;20398:47;20462:131;20588:4;20462:131;:::i;:::-;20454:139;;20181:419;;;:::o;20606:222::-;20699:4;20737:2;20726:9;20722:18;20714:26;;20750:71;20818:1;20807:9;20803:17;20794:6;20750:71;:::i;:::-;20606:222;;;;:::o;20834:129::-;20868:6;20895:20;;:::i;:::-;20885:30;;20924:33;20952:4;20944:6;20924:33;:::i;:::-;20834:129;;;:::o;20969:75::-;21002:6;21035:2;21029:9;21019:19;;20969:75;:::o;21050:307::-;21111:4;21201:18;21193:6;21190:30;21187:56;;;21223:18;;:::i;:::-;21187:56;21261:29;21283:6;21261:29;:::i;:::-;21253:37;;21345:4;21339;21335:15;21327:23;;21050:307;;;:::o;21363:308::-;21425:4;21515:18;21507:6;21504:30;21501:56;;;21537:18;;:::i;:::-;21501:56;21575:29;21597:6;21575:29;:::i;:::-;21567:37;;21659:4;21653;21649:15;21641:23;;21363:308;;;:::o;21677:141::-;21726:4;21749:3;21741:11;;21772:3;21769:1;21762:14;21806:4;21803:1;21793:18;21785:26;;21677:141;;;:::o;21824:98::-;21875:6;21909:5;21903:12;21893:22;;21824:98;;;:::o;21928:99::-;21980:6;22014:5;22008:12;21998:22;;21928:99;;;:::o;22033:168::-;22116:11;22150:6;22145:3;22138:19;22190:4;22185:3;22181:14;22166:29;;22033:168;;;;:::o;22207:147::-;22308:11;22345:3;22330:18;;22207:147;;;;:::o;22360:169::-;22444:11;22478:6;22473:3;22466:19;22518:4;22513:3;22509:14;22494:29;;22360:169;;;;:::o;22535:148::-;22637:11;22674:3;22659:18;;22535:148;;;;:::o;22689:305::-;22729:3;22748:20;22766:1;22748:20;:::i;:::-;22743:25;;22782:20;22800:1;22782:20;:::i;:::-;22777:25;;22936:1;22868:66;22864:74;22861:1;22858:81;22855:107;;;22942:18;;:::i;:::-;22855:107;22986:1;22983;22979:9;22972:16;;22689:305;;;;:::o;23000:185::-;23040:1;23057:20;23075:1;23057:20;:::i;:::-;23052:25;;23091:20;23109:1;23091:20;:::i;:::-;23086:25;;23130:1;23120:35;;23135:18;;:::i;:::-;23120:35;23177:1;23174;23170:9;23165:14;;23000:185;;;;:::o;23191:191::-;23231:4;23251:20;23269:1;23251:20;:::i;:::-;23246:25;;23285:20;23303:1;23285:20;:::i;:::-;23280:25;;23324:1;23321;23318:8;23315:34;;;23329:18;;:::i;:::-;23315:34;23374:1;23371;23367:9;23359:17;;23191:191;;;;:::o;23388:96::-;23425:7;23454:24;23472:5;23454:24;:::i;:::-;23443:35;;23388:96;;;:::o;23490:90::-;23524:7;23567:5;23560:13;23553:21;23542:32;;23490:90;;;:::o;23586:149::-;23622:7;23662:66;23655:5;23651:78;23640:89;;23586:149;;;:::o;23741:126::-;23778:7;23818:42;23811:5;23807:54;23796:65;;23741:126;;;:::o;23873:77::-;23910:7;23939:5;23928:16;;23873:77;;;:::o;23956:154::-;24040:6;24035:3;24030;24017:30;24102:1;24093:6;24088:3;24084:16;24077:27;23956:154;;;:::o;24116:307::-;24184:1;24194:113;24208:6;24205:1;24202:13;24194:113;;;24293:1;24288:3;24284:11;24278:18;24274:1;24269:3;24265:11;24258:39;24230:2;24227:1;24223:10;24218:15;;24194:113;;;24325:6;24322:1;24319:13;24316:101;;;24405:1;24396:6;24391:3;24387:16;24380:27;24316:101;24165:258;24116:307;;;:::o;24429:320::-;24473:6;24510:1;24504:4;24500:12;24490:22;;24557:1;24551:4;24547:12;24578:18;24568:81;;24634:4;24626:6;24622:17;24612:27;;24568:81;24696:2;24688:6;24685:14;24665:18;24662:38;24659:84;;;24715:18;;:::i;:::-;24659:84;24480:269;24429:320;;;:::o;24755:281::-;24838:27;24860:4;24838:27;:::i;:::-;24830:6;24826:40;24968:6;24956:10;24953:22;24932:18;24920:10;24917:34;24914:62;24911:88;;;24979:18;;:::i;:::-;24911:88;25019:10;25015:2;25008:22;24798:238;24755:281;;:::o;25042:233::-;25081:3;25104:24;25122:5;25104:24;:::i;:::-;25095:33;;25150:66;25143:5;25140:77;25137:103;;;25220:18;;:::i;:::-;25137:103;25267:1;25260:5;25256:13;25249:20;;25042:233;;;:::o;25281:176::-;25313:1;25330:20;25348:1;25330:20;:::i;:::-;25325:25;;25364:20;25382:1;25364:20;:::i;:::-;25359:25;;25403:1;25393:35;;25408:18;;:::i;:::-;25393:35;25449:1;25446;25442:9;25437:14;;25281:176;;;;:::o;25463:180::-;25511:77;25508:1;25501:88;25608:4;25605:1;25598:15;25632:4;25629:1;25622:15;25649:180;25697:77;25694:1;25687:88;25794:4;25791:1;25784:15;25818:4;25815:1;25808:15;25835:180;25883:77;25880:1;25873:88;25980:4;25977:1;25970:15;26004:4;26001:1;25994:15;26021:180;26069:77;26066:1;26059:88;26166:4;26163:1;26156:15;26190:4;26187:1;26180:15;26207:180;26255:77;26252:1;26245:88;26352:4;26349:1;26342:15;26376:4;26373:1;26366:15;26393:117;26502:1;26499;26492:12;26516:117;26625:1;26622;26615:12;26639:117;26748:1;26745;26738:12;26762:117;26871:1;26868;26861:12;26885:102;26926:6;26977:2;26973:7;26968:2;26961:5;26957:14;26953:28;26943:38;;26885:102;;;:::o;26993:156::-;27133:8;27129:1;27121:6;27117:14;27110:32;26993:156;:::o;27155:225::-;27295:34;27291:1;27283:6;27279:14;27272:58;27364:8;27359:2;27351:6;27347:15;27340:33;27155:225;:::o;27386:172::-;27526:24;27522:1;27514:6;27510:14;27503:48;27386:172;:::o;27564:176::-;27704:28;27700:1;27692:6;27688:14;27681:52;27564:176;:::o;27746:168::-;27886:20;27882:1;27874:6;27870:14;27863:44;27746:168;:::o;27920:171::-;28060:23;28056:1;28048:6;28044:14;28037:47;27920:171;:::o;28097:182::-;28237:34;28233:1;28225:6;28221:14;28214:58;28097:182;:::o;28285:172::-;28425:24;28421:1;28413:6;28409:14;28402:48;28285:172;:::o;28463:114::-;;:::o;28583:164::-;28723:16;28719:1;28711:6;28707:14;28700:40;28583:164;:::o;28753:162::-;28893:14;28889:1;28881:6;28877:14;28870:38;28753:162;:::o;28921:122::-;28994:24;29012:5;28994:24;:::i;:::-;28987:5;28984:35;28974:63;;29033:1;29030;29023:12;28974:63;28921:122;:::o;29049:116::-;29119:21;29134:5;29119:21;:::i;:::-;29112:5;29109:32;29099:60;;29155:1;29152;29145:12;29099:60;29049:116;:::o;29171:120::-;29243:23;29260:5;29243:23;:::i;:::-;29236:5;29233:34;29223:62;;29281:1;29278;29271:12;29223:62;29171:120;:::o;29297:122::-;29370:24;29388:5;29370:24;:::i;:::-;29363:5;29360:35;29350:63;;29409:1;29406;29399:12;29350:63;29297:122;:::o

Swarm Source

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