ETH Price: $3,395.76 (+1.36%)
Gas: 7 Gwei

Token

Thumbs Banner (THBSLB)
 

Overview

Max Total Supply

1,100 THBSLB

Holders

731

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ogearl.eth
Balance
1 THBSLB
0x8f56ef1eca605a37ccc7ec427febc0d5c567e9a2
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:
ThumbBanner

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-06-11
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

// File: ERC721A.sol


// Creator: Chiru Labs

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

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

    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 {
        _mint(to, quantity, _data, true);
    }

    /**
     * @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,
        bytes memory _data,
        bool safe
    ) 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 (safe && 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 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 This is 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: ThumbBanner.sol


pragma solidity ^0.8.0;






contract ThumbBanner is ERC721A, Ownable {
    using Strings for uint256;
    mapping(address => uint256) public whitelistClaimed;
    mapping(address => uint256) public publicClaimed;

    string public baseURI;
    string public baseExtension = ".json";
    bool public whitelistEnabled = true;
    bool public paused = true;
    bytes32 public merkleRoot;
    uint256 public maxWhitelist = 2;
    uint256 public maxPublic = 2;
    uint256 public mintPerTx = 2;
    uint256 public maxSupply = 545;


    constructor(string memory _initBaseURI) ERC721A("Thumbs Banner", "THBSLB") {
        setBaseURI(_initBaseURI);
    }

    // whitelist mint
    function whitelistMint(uint256 quantity, bytes32[] calldata _merkleProof)
        public
        payable
    {
        uint256 supply = totalSupply();
        require(quantity > 0, "Quantity Must Be Higher Than Zero");
        require(supply + quantity <= maxSupply, "Max Supply Reached");
        require(whitelistEnabled, "The whitelist sale is not enabled!");
        require(
            whitelistClaimed[msg.sender] + quantity <= maxWhitelist,
            "You're not allowed to mint this Much!"
        );
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRoot, leaf),
            "Invalid proof!"
        );

        whitelistClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

    // public mint
    function mint(uint256 quantity) external payable {
        uint256 supply = totalSupply();
        require(!paused, "The contract is paused!");
        require(!whitelistEnabled, "Public mint is disable!");
        require(quantity > 0, "Quantity Must Be Higher Than Zero!");
        require(supply + quantity <= maxSupply, "Max Supply Reached!");

        if (msg.sender != owner()) {
            require(
            publicClaimed[msg.sender] + quantity <= maxPublic,
                "You're not allowed to mint this Much!"
            );
            require(
                quantity <= maxPublic,
                "You're Not Allowed To Mint more than maxMint Amount"
            );
        }
        publicClaimed[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function setMax(uint256 _whitelist, uint256 _public) public onlyOwner {
        maxWhitelist = _whitelist;
        maxPublic = _public;
    }

    function setMintPerTx(uint256 quantity) public onlyOwner {
        mintPerTx = quantity;
    }

    function setMaxSuppy(uint256 _amount) public onlyOwner {
        maxSupply = _amount;
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function setWhitelistEnabled(bool _state) public onlyOwner {
        whitelistEnabled = _state;
    }

    function flipSaleState() public onlyOwner {
        paused = !paused;
    }

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

    function mintForAddresses(uint256 quantity, address _address) public onlyOwner {
        require(!paused, "The contract is paused!");
        _safeMint(_address, quantity);
    }

    function setBaseExtension(string memory _newBaseExtension)
        public
        onlyOwner
    {
        baseExtension = _newBaseExtension;
    }

    function withdraw() public onlyOwner {
        (bool hs, ) = payable(0xf8B8Ea28136911eeCAC2617e080089F623A6DCd6).call{value: address(this).balance * 90 / 100}("");
        require(hs);

        (bool ts, ) = payable(owner()).call{value: address(this).balance}("");
        require(ts);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"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":[{"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":"flipSaleState","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":[],"name":"maxPublic","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"mintForAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPerTx","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelist","type":"uint256"},{"internalType":"uint256","name":"_public","type":"uint256"}],"name":"setMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c9080519060200190620000519291906200036a565b506001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff0219169083151502179055506002600f5560026010556002601155610221601255348015620000aa57600080fd5b5060405162004e8838038062004e888339818101604052810190620000d0919062000498565b6040518060400160405280600d81526020017f5468756d62732042616e6e6572000000000000000000000000000000000000008152506040518060400160405280600681526020017f544842534c4200000000000000000000000000000000000000000000000000008152508160029080519060200190620001549291906200036a565b5080600390805190602001906200016d9291906200036a565b506200017e620001be60201b60201c565b6000819055505050620001a66200019a620001c760201b60201c565b620001cf60201b60201c565b620001b7816200029560201b60201c565b50620006f0565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a5620001c760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002cb6200034060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000324576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031b9062000510565b60405180910390fd5b80600b90805190602001906200033c9291906200036a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200037890620005d8565b90600052602060002090601f0160209004810192826200039c5760008555620003e8565b82601f10620003b757805160ff1916838001178555620003e8565b82800160010185558215620003e8579182015b82811115620003e7578251825591602001919060010190620003ca565b5b509050620003f79190620003fb565b5090565b5b8082111562000416576000816000905550600101620003fc565b5090565b6000620004316200042b846200055b565b62000532565b90508281526020810184848401111562000450576200044f620006a7565b5b6200045d848285620005a2565b509392505050565b600082601f8301126200047d576200047c620006a2565b5b81516200048f8482602086016200041a565b91505092915050565b600060208284031215620004b157620004b0620006b1565b5b600082015167ffffffffffffffff811115620004d257620004d1620006ac565b5b620004e08482850162000465565b91505092915050565b6000620004f860208362000591565b91506200050582620006c7565b602082019050919050565b600060208201905081810360008301526200052b81620004e9565b9050919050565b60006200053e62000551565b90506200054c82826200060e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000579576200057862000673565b5b6200058482620006b6565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620005c2578082015181840152602081019050620005a5565b83811115620005d2576000848401525b50505050565b60006002820490506001821680620005f157607f821691505b6020821081141562000608576200060762000644565b5b50919050565b6200061982620006b6565b810181811067ffffffffffffffff821117156200063b576200063a62000673565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61478880620007006000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063bf0d96c3116100ab578063d78e89bd1161006f578063d78e89bd1461081b578063da3ef23f14610846578063db4bec441461086f578063e985e9c5146108ac578063f2fde38b146108e95761023b565b8063bf0d96c314610741578063c66828621461076c578063c87b56dd14610797578063d2cab056146107d4578063d5abeb01146107f05761023b565b80639ec571d5116100f25780639ec571d51461066d578063a0712d6814610696578063a22cb465146106b2578063b5b1cd7c146106db578063b88d4fde146107185761023b565b8063715018a6146105ac5780637cb64759146105c35780637dc42975146105ec5780638da5cb5b1461061757806395d89b41146106425761023b565b80633ccfd60b116101bc5780635c975abb116101805780635c975abb146104b35780636352211e146104de578063698c87651461051b5780636c0360eb1461054457806370a082311461056f5761023b565b80633ccfd60b146103f657806342842e0e1461040d578063481fbef01461043657806351fb012d1461045f57806355f804b31461048a5761023b565b806318160ddd1161020357806318160ddd1461033757806323b872dd146103625780632eb4a7ab1461038b57806334918dfd146103b65780633b91ceef146103cd5761023b565b806301ffc9a714610240578063052d9e7e1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136ec565b610912565b6040516102749190613cc3565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613692565b6109f4565b005b3480156102b257600080fd5b506102bb610a8d565b6040516102c89190613cf9565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f3919061378f565b610b1f565b6040516103059190613c5c565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190613652565b610b9b565b005b34801561034357600080fd5b5061034c610ca6565b6040516103599190613ebb565b60405180910390f35b34801561036e57600080fd5b506103896004803603810190610384919061353c565b610cbd565b005b34801561039757600080fd5b506103a0610ccd565b6040516103ad9190613cde565b60405180910390f35b3480156103c257600080fd5b506103cb610cd3565b005b3480156103d957600080fd5b506103f460048036038101906103ef919061385c565b610d7b565b005b34801561040257600080fd5b5061040b610e09565b005b34801561041957600080fd5b50610434600480360381019061042f919061353c565b610fa8565b005b34801561044257600080fd5b5061045d6004803603810190610458919061378f565b610fc8565b005b34801561046b57600080fd5b5061047461104e565b6040516104819190613cc3565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613746565b611061565b005b3480156104bf57600080fd5b506104c86110f7565b6040516104d59190613cc3565b60405180910390f35b3480156104ea57600080fd5b506105056004803603810190610500919061378f565b61110a565b6040516105129190613c5c565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906137bc565b611120565b005b34801561055057600080fd5b506105596111fa565b6040516105669190613cf9565b60405180910390f35b34801561057b57600080fd5b50610596600480360381019061059191906134cf565b611288565b6040516105a39190613ebb565b60405180910390f35b3480156105b857600080fd5b506105c1611358565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906136bf565b6113e0565b005b3480156105f857600080fd5b50610601611466565b60405161060e9190613ebb565b60405180910390f35b34801561062357600080fd5b5061062c61146c565b6040516106399190613c5c565b60405180910390f35b34801561064e57600080fd5b50610657611496565b6040516106649190613cf9565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061378f565b611528565b005b6106b060048036038101906106ab919061378f565b6115ae565b005b3480156106be57600080fd5b506106d960048036038101906106d49190613612565b611860565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906134cf565b6119d8565b60405161070f9190613ebb565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061358f565b6119f0565b005b34801561074d57600080fd5b50610756611a6c565b6040516107639190613ebb565b60405180910390f35b34801561077857600080fd5b50610781611a72565b60405161078e9190613cf9565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061378f565b611b00565b6040516107cb9190613cf9565b60405180910390f35b6107ee60048036038101906107e991906137fc565b611baa565b005b3480156107fc57600080fd5b50610805611e46565b6040516108129190613ebb565b60405180910390f35b34801561082757600080fd5b50610830611e4c565b60405161083d9190613ebb565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613746565b611e52565b005b34801561087b57600080fd5b50610896600480360381019061089191906134cf565b611ee8565b6040516108a39190613ebb565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce91906134fc565b611f00565b6040516108e09190613cc3565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b91906134cf565b611f94565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109dd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ed57506109ec8261208c565b5b9050919050565b6109fc6120f6565b73ffffffffffffffffffffffffffffffffffffffff16610a1a61146c565b73ffffffffffffffffffffffffffffffffffffffff1614610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790613d9b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060028054610a9c90614195565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac890614195565b8015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b2a826120fe565b610b60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba68261110a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2d6120f6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c5f5750610c5d81610c586120f6565b611f00565b155b15610c96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca183838361214c565b505050565b6000610cb06121fe565b6001546000540303905090565b610cc8838383612207565b505050565b600e5481565b610cdb6120f6565b73ffffffffffffffffffffffffffffffffffffffff16610cf961146c565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613d9b565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610d836120f6565b73ffffffffffffffffffffffffffffffffffffffff16610da161146c565b73ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90613d9b565b60405180910390fd5b81600f81905550806010819055505050565b610e116120f6565b73ffffffffffffffffffffffffffffffffffffffff16610e2f61146c565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613d9b565b60405180910390fd5b600073f8b8ea28136911eecac2617e080089f623a6dcd673ffffffffffffffffffffffffffffffffffffffff166064605a47610ec19190614047565b610ecb9190614016565b604051610ed790613c47565b60006040518083038185875af1925050503d8060008114610f14576040519150601f19603f3d011682016040523d82523d6000602084013e610f19565b606091505b5050905080610f2757600080fd5b6000610f3161146c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f5490613c47565b60006040518083038185875af1925050503d8060008114610f91576040519150601f19603f3d011682016040523d82523d6000602084013e610f96565b606091505b5050905080610fa457600080fd5b5050565b610fc3838383604051806020016040528060008152506119f0565b505050565b610fd06120f6565b73ffffffffffffffffffffffffffffffffffffffff16610fee61146c565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90613d9b565b60405180910390fd5b8060118190555050565b600d60009054906101000a900460ff1681565b6110696120f6565b73ffffffffffffffffffffffffffffffffffffffff1661108761146c565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490613d9b565b60405180910390fd5b80600b90805190602001906110f3929190613235565b5050565b600d60019054906101000a900460ff1681565b6000611115826126bd565b600001519050919050565b6111286120f6565b73ffffffffffffffffffffffffffffffffffffffff1661114661146c565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613d9b565b60405180910390fd5b600d60019054906101000a900460ff16156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390613dbb565b60405180910390fd5b6111f6818361294c565b5050565b600b805461120790614195565b80601f016020809104026020016040519081016040528092919081815260200182805461123390614195565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113606120f6565b73ffffffffffffffffffffffffffffffffffffffff1661137e61146c565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90613d9b565b60405180910390fd5b6113de600061296a565b565b6113e86120f6565b73ffffffffffffffffffffffffffffffffffffffff1661140661146c565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613d9b565b60405180910390fd5b80600e8190555050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a590614195565b80601f01602080910402602001604051908101604052809291908181526020018280546114d190614195565b801561151e5780601f106114f35761010080835404028352916020019161151e565b820191906000526020600020905b81548152906001019060200180831161150157829003601f168201915b5050505050905090565b6115306120f6565b73ffffffffffffffffffffffffffffffffffffffff1661154e61146c565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613d9b565b60405180910390fd5b8060128190555050565b60006115b8610ca6565b9050600d60019054906101000a900460ff161561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190613dbb565b60405180910390fd5b600d60009054906101000a900460ff161561165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613e1b565b60405180910390fd5b6000821161169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613dfb565b60405180910390fd5b60125482826116ac9190613fc0565b11156116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490613e9b565b60405180910390fd5b6116f561146c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117fc5760105482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117759190613fc0565b11156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613d1b565b60405180910390fd5b6010548211156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613e3b565b60405180910390fd5b5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184b9190613fc0565b9250508190555061185c338361294c565b5050565b6118686120f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118da6120f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119876120f6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119cc9190613cc3565b60405180910390a35050565b600a6020528060005260406000206000915090505481565b6119fb848484612207565b611a1a8373ffffffffffffffffffffffffffffffffffffffff16612a30565b8015611a2f5750611a2d84848484612a53565b155b15611a66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f5481565b600c8054611a7f90614195565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90614195565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b505050505081565b6060611b0b826120fe565b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613ddb565b60405180910390fd5b6000611b54612bb3565b90506000815111611b745760405180602001604052806000815250611ba2565b80611b7e84612c45565b600c604051602001611b9293929190613c16565b6040516020818303038152906040525b915050919050565b6000611bb4610ca6565b905060008411611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613d7b565b60405180910390fd5b6012548482611c089190613fc0565b1115611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613e7b565b60405180910390fd5b600d60009054906101000a900460ff16611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613e5b565b60405180910390fd5b600f5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ce69190613fc0565b1115611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613d1b565b60405180910390fd5b600033604051602001611d3a9190613bfb565b604051602081830303815290604052805190602001209050611da0848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612da6565b611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd690613d3b565b60405180910390fd5b84600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2e9190613fc0565b92505081905550611e3f338661294c565b5050505050565b60125481565b60115481565b611e5a6120f6565b73ffffffffffffffffffffffffffffffffffffffff16611e7861146c565b73ffffffffffffffffffffffffffffffffffffffff1614611ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec590613d9b565b60405180910390fd5b80600c9080519060200190611ee4929190613235565b5050565b60096020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9c6120f6565b73ffffffffffffffffffffffffffffffffffffffff16611fba61146c565b73ffffffffffffffffffffffffffffffffffffffff1614612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790613d9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613d5b565b60405180910390fd5b6120898161296a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816121096121fe565b11158015612118575060005482105b8015612145575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612212826126bd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461227d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661229e6120f6565b73ffffffffffffffffffffffffffffffffffffffff1614806122cd57506122cc856122c76120f6565b611f00565b5b8061231257506122db6120f6565b73ffffffffffffffffffffffffffffffffffffffff166122fa84610b1f565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061234b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123bf8585856001612dbd565b6123cb6000848761214c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264b57600054821461264a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b68585856001612dc3565b5050505050565b6126c56132bb565b6000829050806126d36121fe565b111580156126e2575060005481105b15612915576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161291357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f7578092505050612947565b5b60011561291257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461290d578092505050612947565b6127f8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612966828260405180602001604052806000815250612dc9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a796120f6565b8786866040518563ffffffff1660e01b8152600401612a9b9493929190613c77565b602060405180830381600087803b158015612ab557600080fd5b505af1925050508015612ae657506040513d601f19601f82011682018060405250810190612ae39190613719565b60015b612b60573d8060008114612b16576040519150601f19603f3d011682016040523d82523d6000602084013e612b1b565b606091505b50600081511415612b58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612bc290614195565b80601f0160208091040260200160405190810160405280929190818152602001828054612bee90614195565b8015612c3b5780601f10612c1057610100808354040283529160200191612c3b565b820191906000526020600020905b815481529060010190602001808311612c1e57829003601f168201915b5050505050905090565b60606000821415612c8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da1565b600082905060005b60008214612cbf578080612ca8906141f8565b915050600a82612cb89190614016565b9150612c95565b60008167ffffffffffffffff811115612cdb57612cda614352565b5b6040519080825280601f01601f191660200182016040528015612d0d5781602001600182028036833780820191505090505b5090505b60008514612d9a57600182612d2691906140a1565b9150600a85612d359190614265565b6030612d419190613fc0565b60f81b818381518110612d5757612d56614323565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d939190614016565b9450612d11565b8093505050505b919050565b600082612db38584612ddb565b1490509392505050565b50505050565b50505050565b612dd68383836001612e50565b505050565b60008082905060005b8451811015612e45576000858281518110612e0257612e01614323565b5b60200260200101519050808311612e2457612e1d838261321e565b9250612e31565b612e2e818461321e565b92505b508080612e3d906141f8565b915050612de4565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ebd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ef8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f056000868387612dbd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156130cf57506130ce8773ffffffffffffffffffffffffffffffffffffffff16612a30565b5b15613195575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131446000888480600101955088612a53565b61317a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156130d557826000541461319057600080fd5b613201565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613196575b8160008190555050506132176000868387612dc3565b5050505050565b600082600052816020526040600020905092915050565b82805461324190614195565b90600052602060002090601f01602090048101928261326357600085556132aa565b82601f1061327c57805160ff19168380011785556132aa565b828001600101855582156132aa579182015b828111156132a957825182559160200191906001019061328e565b5b5090506132b791906132fe565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133175760008160009055506001016132ff565b5090565b600061332e61332984613efb565b613ed6565b90508281526020810184848401111561334a57613349614390565b5b613355848285614153565b509392505050565b600061337061336b84613f2c565b613ed6565b90508281526020810184848401111561338c5761338b614390565b5b613397848285614153565b509392505050565b6000813590506133ae816146df565b92915050565b60008083601f8401126133ca576133c9614386565b5b8235905067ffffffffffffffff8111156133e7576133e6614381565b5b6020830191508360208202830111156134035761340261438b565b5b9250929050565b600081359050613419816146f6565b92915050565b60008135905061342e8161470d565b92915050565b60008135905061344381614724565b92915050565b60008151905061345881614724565b92915050565b600082601f83011261347357613472614386565b5b813561348384826020860161331b565b91505092915050565b600082601f8301126134a1576134a0614386565b5b81356134b184826020860161335d565b91505092915050565b6000813590506134c98161473b565b92915050565b6000602082840312156134e5576134e461439a565b5b60006134f38482850161339f565b91505092915050565b600080604083850312156135135761351261439a565b5b60006135218582860161339f565b92505060206135328582860161339f565b9150509250929050565b6000806000606084860312156135555761355461439a565b5b60006135638682870161339f565b93505060206135748682870161339f565b9250506040613585868287016134ba565b9150509250925092565b600080600080608085870312156135a9576135a861439a565b5b60006135b78782880161339f565b94505060206135c88782880161339f565b93505060406135d9878288016134ba565b925050606085013567ffffffffffffffff8111156135fa576135f9614395565b5b6136068782880161345e565b91505092959194509250565b600080604083850312156136295761362861439a565b5b60006136378582860161339f565b92505060206136488582860161340a565b9150509250929050565b600080604083850312156136695761366861439a565b5b60006136778582860161339f565b9250506020613688858286016134ba565b9150509250929050565b6000602082840312156136a8576136a761439a565b5b60006136b68482850161340a565b91505092915050565b6000602082840312156136d5576136d461439a565b5b60006136e38482850161341f565b91505092915050565b6000602082840312156137025761370161439a565b5b600061371084828501613434565b91505092915050565b60006020828403121561372f5761372e61439a565b5b600061373d84828501613449565b91505092915050565b60006020828403121561375c5761375b61439a565b5b600082013567ffffffffffffffff81111561377a57613779614395565b5b6137868482850161348c565b91505092915050565b6000602082840312156137a5576137a461439a565b5b60006137b3848285016134ba565b91505092915050565b600080604083850312156137d3576137d261439a565b5b60006137e1858286016134ba565b92505060206137f28582860161339f565b9150509250929050565b6000806000604084860312156138155761381461439a565b5b6000613823868287016134ba565b935050602084013567ffffffffffffffff81111561384457613843614395565b5b613850868287016133b4565b92509250509250925092565b600080604083850312156138735761387261439a565b5b6000613881858286016134ba565b9250506020613892858286016134ba565b9150509250929050565b6138a5816140d5565b82525050565b6138bc6138b7826140d5565b614241565b82525050565b6138cb816140e7565b82525050565b6138da816140f3565b82525050565b60006138eb82613f72565b6138f58185613f88565b9350613905818560208601614162565b61390e8161439f565b840191505092915050565b600061392482613f7d565b61392e8185613fa4565b935061393e818560208601614162565b6139478161439f565b840191505092915050565b600061395d82613f7d565b6139678185613fb5565b9350613977818560208601614162565b80840191505092915050565b6000815461399081614195565b61399a8186613fb5565b945060018216600081146139b557600181146139c6576139f9565b60ff198316865281860193506139f9565b6139cf85613f5d565b60005b838110156139f1578154818901526001820191506020810190506139d2565b838801955050505b50505092915050565b6000613a0f602583613fa4565b9150613a1a826143bd565b604082019050919050565b6000613a32600e83613fa4565b9150613a3d8261440c565b602082019050919050565b6000613a55602683613fa4565b9150613a6082614435565b604082019050919050565b6000613a78602183613fa4565b9150613a8382614484565b604082019050919050565b6000613a9b602083613fa4565b9150613aa6826144d3565b602082019050919050565b6000613abe601783613fa4565b9150613ac9826144fc565b602082019050919050565b6000613ae1602f83613fa4565b9150613aec82614525565b604082019050919050565b6000613b04602283613fa4565b9150613b0f82614574565b604082019050919050565b6000613b27601783613fa4565b9150613b32826145c3565b602082019050919050565b6000613b4a603383613fa4565b9150613b55826145ec565b604082019050919050565b6000613b6d600083613f99565b9150613b788261463b565b600082019050919050565b6000613b90602283613fa4565b9150613b9b8261463e565b604082019050919050565b6000613bb3601283613fa4565b9150613bbe8261468d565b602082019050919050565b6000613bd6601383613fa4565b9150613be1826146b6565b602082019050919050565b613bf581614149565b82525050565b6000613c0782846138ab565b60148201915081905092915050565b6000613c228286613952565b9150613c2e8285613952565b9150613c3a8284613983565b9150819050949350505050565b6000613c5282613b60565b9150819050919050565b6000602082019050613c71600083018461389c565b92915050565b6000608082019050613c8c600083018761389c565b613c99602083018661389c565b613ca66040830185613bec565b8181036060830152613cb881846138e0565b905095945050505050565b6000602082019050613cd860008301846138c2565b92915050565b6000602082019050613cf360008301846138d1565b92915050565b60006020820190508181036000830152613d138184613919565b905092915050565b60006020820190508181036000830152613d3481613a02565b9050919050565b60006020820190508181036000830152613d5481613a25565b9050919050565b60006020820190508181036000830152613d7481613a48565b9050919050565b60006020820190508181036000830152613d9481613a6b565b9050919050565b60006020820190508181036000830152613db481613a8e565b9050919050565b60006020820190508181036000830152613dd481613ab1565b9050919050565b60006020820190508181036000830152613df481613ad4565b9050919050565b60006020820190508181036000830152613e1481613af7565b9050919050565b60006020820190508181036000830152613e3481613b1a565b9050919050565b60006020820190508181036000830152613e5481613b3d565b9050919050565b60006020820190508181036000830152613e7481613b83565b9050919050565b60006020820190508181036000830152613e9481613ba6565b9050919050565b60006020820190508181036000830152613eb481613bc9565b9050919050565b6000602082019050613ed06000830184613bec565b92915050565b6000613ee0613ef1565b9050613eec82826141c7565b919050565b6000604051905090565b600067ffffffffffffffff821115613f1657613f15614352565b5b613f1f8261439f565b9050602081019050919050565b600067ffffffffffffffff821115613f4757613f46614352565b5b613f508261439f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fcb82614149565b9150613fd683614149565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400b5761400a614296565b5b828201905092915050565b600061402182614149565b915061402c83614149565b92508261403c5761403b6142c5565b5b828204905092915050565b600061405282614149565b915061405d83614149565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561409657614095614296565b5b828202905092915050565b60006140ac82614149565b91506140b783614149565b9250828210156140ca576140c9614296565b5b828203905092915050565b60006140e082614129565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614180578082015181840152602081019050614165565b8381111561418f576000848401525b50505050565b600060028204905060018216806141ad57607f821691505b602082108114156141c1576141c06142f4565b5b50919050565b6141d08261439f565b810181811067ffffffffffffffff821117156141ef576141ee614352565b5b80604052505050565b600061420382614149565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423657614235614296565b5b600182019050919050565b600061424c82614253565b9050919050565b600061425e826143b0565b9050919050565b600061427082614149565b915061427b83614149565b92508261428b5761428a6142c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742069732064697361626c6521000000000000000000600082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b6146e8816140d5565b81146146f357600080fd5b50565b6146ff816140e7565b811461470a57600080fd5b50565b614716816140f3565b811461472157600080fd5b50565b61472d816140fd565b811461473857600080fd5b50565b61474481614149565b811461474f57600080fd5b5056fea2646970667358221220996ff38078ef71414453f38131a1d0b2cae2b32c527a0bd021cfa0f44411aaad64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063bf0d96c3116100ab578063d78e89bd1161006f578063d78e89bd1461081b578063da3ef23f14610846578063db4bec441461086f578063e985e9c5146108ac578063f2fde38b146108e95761023b565b8063bf0d96c314610741578063c66828621461076c578063c87b56dd14610797578063d2cab056146107d4578063d5abeb01146107f05761023b565b80639ec571d5116100f25780639ec571d51461066d578063a0712d6814610696578063a22cb465146106b2578063b5b1cd7c146106db578063b88d4fde146107185761023b565b8063715018a6146105ac5780637cb64759146105c35780637dc42975146105ec5780638da5cb5b1461061757806395d89b41146106425761023b565b80633ccfd60b116101bc5780635c975abb116101805780635c975abb146104b35780636352211e146104de578063698c87651461051b5780636c0360eb1461054457806370a082311461056f5761023b565b80633ccfd60b146103f657806342842e0e1461040d578063481fbef01461043657806351fb012d1461045f57806355f804b31461048a5761023b565b806318160ddd1161020357806318160ddd1461033757806323b872dd146103625780632eb4a7ab1461038b57806334918dfd146103b65780633b91ceef146103cd5761023b565b806301ffc9a714610240578063052d9e7e1461027d57806306fdde03146102a6578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b50610267600480360381019061026291906136ec565b610912565b6040516102749190613cc3565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190613692565b6109f4565b005b3480156102b257600080fd5b506102bb610a8d565b6040516102c89190613cf9565b60405180910390f35b3480156102dd57600080fd5b506102f860048036038101906102f3919061378f565b610b1f565b6040516103059190613c5c565b60405180910390f35b34801561031a57600080fd5b5061033560048036038101906103309190613652565b610b9b565b005b34801561034357600080fd5b5061034c610ca6565b6040516103599190613ebb565b60405180910390f35b34801561036e57600080fd5b506103896004803603810190610384919061353c565b610cbd565b005b34801561039757600080fd5b506103a0610ccd565b6040516103ad9190613cde565b60405180910390f35b3480156103c257600080fd5b506103cb610cd3565b005b3480156103d957600080fd5b506103f460048036038101906103ef919061385c565b610d7b565b005b34801561040257600080fd5b5061040b610e09565b005b34801561041957600080fd5b50610434600480360381019061042f919061353c565b610fa8565b005b34801561044257600080fd5b5061045d6004803603810190610458919061378f565b610fc8565b005b34801561046b57600080fd5b5061047461104e565b6040516104819190613cc3565b60405180910390f35b34801561049657600080fd5b506104b160048036038101906104ac9190613746565b611061565b005b3480156104bf57600080fd5b506104c86110f7565b6040516104d59190613cc3565b60405180910390f35b3480156104ea57600080fd5b506105056004803603810190610500919061378f565b61110a565b6040516105129190613c5c565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906137bc565b611120565b005b34801561055057600080fd5b506105596111fa565b6040516105669190613cf9565b60405180910390f35b34801561057b57600080fd5b50610596600480360381019061059191906134cf565b611288565b6040516105a39190613ebb565b60405180910390f35b3480156105b857600080fd5b506105c1611358565b005b3480156105cf57600080fd5b506105ea60048036038101906105e591906136bf565b6113e0565b005b3480156105f857600080fd5b50610601611466565b60405161060e9190613ebb565b60405180910390f35b34801561062357600080fd5b5061062c61146c565b6040516106399190613c5c565b60405180910390f35b34801561064e57600080fd5b50610657611496565b6040516106649190613cf9565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f919061378f565b611528565b005b6106b060048036038101906106ab919061378f565b6115ae565b005b3480156106be57600080fd5b506106d960048036038101906106d49190613612565b611860565b005b3480156106e757600080fd5b5061070260048036038101906106fd91906134cf565b6119d8565b60405161070f9190613ebb565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a919061358f565b6119f0565b005b34801561074d57600080fd5b50610756611a6c565b6040516107639190613ebb565b60405180910390f35b34801561077857600080fd5b50610781611a72565b60405161078e9190613cf9565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b9919061378f565b611b00565b6040516107cb9190613cf9565b60405180910390f35b6107ee60048036038101906107e991906137fc565b611baa565b005b3480156107fc57600080fd5b50610805611e46565b6040516108129190613ebb565b60405180910390f35b34801561082757600080fd5b50610830611e4c565b60405161083d9190613ebb565b60405180910390f35b34801561085257600080fd5b5061086d60048036038101906108689190613746565b611e52565b005b34801561087b57600080fd5b50610896600480360381019061089191906134cf565b611ee8565b6040516108a39190613ebb565b60405180910390f35b3480156108b857600080fd5b506108d360048036038101906108ce91906134fc565b611f00565b6040516108e09190613cc3565b60405180910390f35b3480156108f557600080fd5b50610910600480360381019061090b91906134cf565b611f94565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109dd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109ed57506109ec8261208c565b5b9050919050565b6109fc6120f6565b73ffffffffffffffffffffffffffffffffffffffff16610a1a61146c565b73ffffffffffffffffffffffffffffffffffffffff1614610a70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6790613d9b565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b606060028054610a9c90614195565b80601f0160208091040260200160405190810160405280929190818152602001828054610ac890614195565b8015610b155780601f10610aea57610100808354040283529160200191610b15565b820191906000526020600020905b815481529060010190602001808311610af857829003601f168201915b5050505050905090565b6000610b2a826120fe565b610b60576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ba68261110a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c0e576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c2d6120f6565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c5f5750610c5d81610c586120f6565b611f00565b155b15610c96576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ca183838361214c565b505050565b6000610cb06121fe565b6001546000540303905090565b610cc8838383612207565b505050565b600e5481565b610cdb6120f6565b73ffffffffffffffffffffffffffffffffffffffff16610cf961146c565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690613d9b565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b610d836120f6565b73ffffffffffffffffffffffffffffffffffffffff16610da161146c565b73ffffffffffffffffffffffffffffffffffffffff1614610df7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dee90613d9b565b60405180910390fd5b81600f81905550806010819055505050565b610e116120f6565b73ffffffffffffffffffffffffffffffffffffffff16610e2f61146c565b73ffffffffffffffffffffffffffffffffffffffff1614610e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7c90613d9b565b60405180910390fd5b600073f8b8ea28136911eecac2617e080089f623a6dcd673ffffffffffffffffffffffffffffffffffffffff166064605a47610ec19190614047565b610ecb9190614016565b604051610ed790613c47565b60006040518083038185875af1925050503d8060008114610f14576040519150601f19603f3d011682016040523d82523d6000602084013e610f19565b606091505b5050905080610f2757600080fd5b6000610f3161146c565b73ffffffffffffffffffffffffffffffffffffffff1647604051610f5490613c47565b60006040518083038185875af1925050503d8060008114610f91576040519150601f19603f3d011682016040523d82523d6000602084013e610f96565b606091505b5050905080610fa457600080fd5b5050565b610fc3838383604051806020016040528060008152506119f0565b505050565b610fd06120f6565b73ffffffffffffffffffffffffffffffffffffffff16610fee61146c565b73ffffffffffffffffffffffffffffffffffffffff1614611044576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103b90613d9b565b60405180910390fd5b8060118190555050565b600d60009054906101000a900460ff1681565b6110696120f6565b73ffffffffffffffffffffffffffffffffffffffff1661108761146c565b73ffffffffffffffffffffffffffffffffffffffff16146110dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d490613d9b565b60405180910390fd5b80600b90805190602001906110f3929190613235565b5050565b600d60019054906101000a900460ff1681565b6000611115826126bd565b600001519050919050565b6111286120f6565b73ffffffffffffffffffffffffffffffffffffffff1661114661146c565b73ffffffffffffffffffffffffffffffffffffffff161461119c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119390613d9b565b60405180910390fd5b600d60019054906101000a900460ff16156111ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e390613dbb565b60405180910390fd5b6111f6818361294c565b5050565b600b805461120790614195565b80601f016020809104026020016040519081016040528092919081815260200182805461123390614195565b80156112805780601f1061125557610100808354040283529160200191611280565b820191906000526020600020905b81548152906001019060200180831161126357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112f0576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6113606120f6565b73ffffffffffffffffffffffffffffffffffffffff1661137e61146c565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90613d9b565b60405180910390fd5b6113de600061296a565b565b6113e86120f6565b73ffffffffffffffffffffffffffffffffffffffff1661140661146c565b73ffffffffffffffffffffffffffffffffffffffff161461145c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145390613d9b565b60405180910390fd5b80600e8190555050565b60105481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546114a590614195565b80601f01602080910402602001604051908101604052809291908181526020018280546114d190614195565b801561151e5780601f106114f35761010080835404028352916020019161151e565b820191906000526020600020905b81548152906001019060200180831161150157829003601f168201915b5050505050905090565b6115306120f6565b73ffffffffffffffffffffffffffffffffffffffff1661154e61146c565b73ffffffffffffffffffffffffffffffffffffffff16146115a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159b90613d9b565b60405180910390fd5b8060128190555050565b60006115b8610ca6565b9050600d60019054906101000a900460ff161561160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190613dbb565b60405180910390fd5b600d60009054906101000a900460ff161561165a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165190613e1b565b60405180910390fd5b6000821161169d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169490613dfb565b60405180910390fd5b60125482826116ac9190613fc0565b11156116ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e490613e9b565b60405180910390fd5b6116f561146c565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117fc5760105482600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546117759190613fc0565b11156117b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ad90613d1b565b60405180910390fd5b6010548211156117fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117f290613e3b565b60405180910390fd5b5b81600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184b9190613fc0565b9250508190555061185c338361294c565b5050565b6118686120f6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cd576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118da6120f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119876120f6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119cc9190613cc3565b60405180910390a35050565b600a6020528060005260406000206000915090505481565b6119fb848484612207565b611a1a8373ffffffffffffffffffffffffffffffffffffffff16612a30565b8015611a2f5750611a2d84848484612a53565b155b15611a66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600f5481565b600c8054611a7f90614195565b80601f0160208091040260200160405190810160405280929190818152602001828054611aab90614195565b8015611af85780601f10611acd57610100808354040283529160200191611af8565b820191906000526020600020905b815481529060010190602001808311611adb57829003601f168201915b505050505081565b6060611b0b826120fe565b611b4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4190613ddb565b60405180910390fd5b6000611b54612bb3565b90506000815111611b745760405180602001604052806000815250611ba2565b80611b7e84612c45565b600c604051602001611b9293929190613c16565b6040516020818303038152906040525b915050919050565b6000611bb4610ca6565b905060008411611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613d7b565b60405180910390fd5b6012548482611c089190613fc0565b1115611c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4090613e7b565b60405180910390fd5b600d60009054906101000a900460ff16611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613e5b565b60405180910390fd5b600f5484600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ce69190613fc0565b1115611d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1e90613d1b565b60405180910390fd5b600033604051602001611d3a9190613bfb565b604051602081830303815290604052805190602001209050611da0848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600e5483612da6565b611ddf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd690613d3b565b60405180910390fd5b84600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e2e9190613fc0565b92505081905550611e3f338661294c565b5050505050565b60125481565b60115481565b611e5a6120f6565b73ffffffffffffffffffffffffffffffffffffffff16611e7861146c565b73ffffffffffffffffffffffffffffffffffffffff1614611ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec590613d9b565b60405180910390fd5b80600c9080519060200190611ee4929190613235565b5050565b60096020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f9c6120f6565b73ffffffffffffffffffffffffffffffffffffffff16611fba61146c565b73ffffffffffffffffffffffffffffffffffffffff1614612010576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200790613d9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612080576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207790613d5b565b60405180910390fd5b6120898161296a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000816121096121fe565b11158015612118575060005482105b8015612145575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612212826126bd565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461227d576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661229e6120f6565b73ffffffffffffffffffffffffffffffffffffffff1614806122cd57506122cc856122c76120f6565b611f00565b5b8061231257506122db6120f6565b73ffffffffffffffffffffffffffffffffffffffff166122fa84610b1f565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061234b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156123b2576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6123bf8585856001612dbd565b6123cb6000848761214c565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561264b57600054821461264a57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126b68585856001612dc3565b5050505050565b6126c56132bb565b6000829050806126d36121fe565b111580156126e2575060005481105b15612915576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161291357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146127f7578092505050612947565b5b60011561291257818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461290d578092505050612947565b6127f8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b612966828260405180602001604052806000815250612dc9565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a796120f6565b8786866040518563ffffffff1660e01b8152600401612a9b9493929190613c77565b602060405180830381600087803b158015612ab557600080fd5b505af1925050508015612ae657506040513d601f19601f82011682018060405250810190612ae39190613719565b60015b612b60573d8060008114612b16576040519150601f19603f3d011682016040523d82523d6000602084013e612b1b565b606091505b50600081511415612b58576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054612bc290614195565b80601f0160208091040260200160405190810160405280929190818152602001828054612bee90614195565b8015612c3b5780601f10612c1057610100808354040283529160200191612c3b565b820191906000526020600020905b815481529060010190602001808311612c1e57829003601f168201915b5050505050905090565b60606000821415612c8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612da1565b600082905060005b60008214612cbf578080612ca8906141f8565b915050600a82612cb89190614016565b9150612c95565b60008167ffffffffffffffff811115612cdb57612cda614352565b5b6040519080825280601f01601f191660200182016040528015612d0d5781602001600182028036833780820191505090505b5090505b60008514612d9a57600182612d2691906140a1565b9150600a85612d359190614265565b6030612d419190613fc0565b60f81b818381518110612d5757612d56614323565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d939190614016565b9450612d11565b8093505050505b919050565b600082612db38584612ddb565b1490509392505050565b50505050565b50505050565b612dd68383836001612e50565b505050565b60008082905060005b8451811015612e45576000858281518110612e0257612e01614323565b5b60200260200101519050808311612e2457612e1d838261321e565b9250612e31565b612e2e818461321e565b92505b508080612e3d906141f8565b915050612de4565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612ebd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ef8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612f056000868387612dbd565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600085820190508380156130cf57506130ce8773ffffffffffffffffffffffffffffffffffffffff16612a30565b5b15613195575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46131446000888480600101955088612a53565b61317a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808214156130d557826000541461319057600080fd5b613201565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415613196575b8160008190555050506132176000868387612dc3565b5050505050565b600082600052816020526040600020905092915050565b82805461324190614195565b90600052602060002090601f01602090048101928261326357600085556132aa565b82601f1061327c57805160ff19168380011785556132aa565b828001600101855582156132aa579182015b828111156132a957825182559160200191906001019061328e565b5b5090506132b791906132fe565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156133175760008160009055506001016132ff565b5090565b600061332e61332984613efb565b613ed6565b90508281526020810184848401111561334a57613349614390565b5b613355848285614153565b509392505050565b600061337061336b84613f2c565b613ed6565b90508281526020810184848401111561338c5761338b614390565b5b613397848285614153565b509392505050565b6000813590506133ae816146df565b92915050565b60008083601f8401126133ca576133c9614386565b5b8235905067ffffffffffffffff8111156133e7576133e6614381565b5b6020830191508360208202830111156134035761340261438b565b5b9250929050565b600081359050613419816146f6565b92915050565b60008135905061342e8161470d565b92915050565b60008135905061344381614724565b92915050565b60008151905061345881614724565b92915050565b600082601f83011261347357613472614386565b5b813561348384826020860161331b565b91505092915050565b600082601f8301126134a1576134a0614386565b5b81356134b184826020860161335d565b91505092915050565b6000813590506134c98161473b565b92915050565b6000602082840312156134e5576134e461439a565b5b60006134f38482850161339f565b91505092915050565b600080604083850312156135135761351261439a565b5b60006135218582860161339f565b92505060206135328582860161339f565b9150509250929050565b6000806000606084860312156135555761355461439a565b5b60006135638682870161339f565b93505060206135748682870161339f565b9250506040613585868287016134ba565b9150509250925092565b600080600080608085870312156135a9576135a861439a565b5b60006135b78782880161339f565b94505060206135c88782880161339f565b93505060406135d9878288016134ba565b925050606085013567ffffffffffffffff8111156135fa576135f9614395565b5b6136068782880161345e565b91505092959194509250565b600080604083850312156136295761362861439a565b5b60006136378582860161339f565b92505060206136488582860161340a565b9150509250929050565b600080604083850312156136695761366861439a565b5b60006136778582860161339f565b9250506020613688858286016134ba565b9150509250929050565b6000602082840312156136a8576136a761439a565b5b60006136b68482850161340a565b91505092915050565b6000602082840312156136d5576136d461439a565b5b60006136e38482850161341f565b91505092915050565b6000602082840312156137025761370161439a565b5b600061371084828501613434565b91505092915050565b60006020828403121561372f5761372e61439a565b5b600061373d84828501613449565b91505092915050565b60006020828403121561375c5761375b61439a565b5b600082013567ffffffffffffffff81111561377a57613779614395565b5b6137868482850161348c565b91505092915050565b6000602082840312156137a5576137a461439a565b5b60006137b3848285016134ba565b91505092915050565b600080604083850312156137d3576137d261439a565b5b60006137e1858286016134ba565b92505060206137f28582860161339f565b9150509250929050565b6000806000604084860312156138155761381461439a565b5b6000613823868287016134ba565b935050602084013567ffffffffffffffff81111561384457613843614395565b5b613850868287016133b4565b92509250509250925092565b600080604083850312156138735761387261439a565b5b6000613881858286016134ba565b9250506020613892858286016134ba565b9150509250929050565b6138a5816140d5565b82525050565b6138bc6138b7826140d5565b614241565b82525050565b6138cb816140e7565b82525050565b6138da816140f3565b82525050565b60006138eb82613f72565b6138f58185613f88565b9350613905818560208601614162565b61390e8161439f565b840191505092915050565b600061392482613f7d565b61392e8185613fa4565b935061393e818560208601614162565b6139478161439f565b840191505092915050565b600061395d82613f7d565b6139678185613fb5565b9350613977818560208601614162565b80840191505092915050565b6000815461399081614195565b61399a8186613fb5565b945060018216600081146139b557600181146139c6576139f9565b60ff198316865281860193506139f9565b6139cf85613f5d565b60005b838110156139f1578154818901526001820191506020810190506139d2565b838801955050505b50505092915050565b6000613a0f602583613fa4565b9150613a1a826143bd565b604082019050919050565b6000613a32600e83613fa4565b9150613a3d8261440c565b602082019050919050565b6000613a55602683613fa4565b9150613a6082614435565b604082019050919050565b6000613a78602183613fa4565b9150613a8382614484565b604082019050919050565b6000613a9b602083613fa4565b9150613aa6826144d3565b602082019050919050565b6000613abe601783613fa4565b9150613ac9826144fc565b602082019050919050565b6000613ae1602f83613fa4565b9150613aec82614525565b604082019050919050565b6000613b04602283613fa4565b9150613b0f82614574565b604082019050919050565b6000613b27601783613fa4565b9150613b32826145c3565b602082019050919050565b6000613b4a603383613fa4565b9150613b55826145ec565b604082019050919050565b6000613b6d600083613f99565b9150613b788261463b565b600082019050919050565b6000613b90602283613fa4565b9150613b9b8261463e565b604082019050919050565b6000613bb3601283613fa4565b9150613bbe8261468d565b602082019050919050565b6000613bd6601383613fa4565b9150613be1826146b6565b602082019050919050565b613bf581614149565b82525050565b6000613c0782846138ab565b60148201915081905092915050565b6000613c228286613952565b9150613c2e8285613952565b9150613c3a8284613983565b9150819050949350505050565b6000613c5282613b60565b9150819050919050565b6000602082019050613c71600083018461389c565b92915050565b6000608082019050613c8c600083018761389c565b613c99602083018661389c565b613ca66040830185613bec565b8181036060830152613cb881846138e0565b905095945050505050565b6000602082019050613cd860008301846138c2565b92915050565b6000602082019050613cf360008301846138d1565b92915050565b60006020820190508181036000830152613d138184613919565b905092915050565b60006020820190508181036000830152613d3481613a02565b9050919050565b60006020820190508181036000830152613d5481613a25565b9050919050565b60006020820190508181036000830152613d7481613a48565b9050919050565b60006020820190508181036000830152613d9481613a6b565b9050919050565b60006020820190508181036000830152613db481613a8e565b9050919050565b60006020820190508181036000830152613dd481613ab1565b9050919050565b60006020820190508181036000830152613df481613ad4565b9050919050565b60006020820190508181036000830152613e1481613af7565b9050919050565b60006020820190508181036000830152613e3481613b1a565b9050919050565b60006020820190508181036000830152613e5481613b3d565b9050919050565b60006020820190508181036000830152613e7481613b83565b9050919050565b60006020820190508181036000830152613e9481613ba6565b9050919050565b60006020820190508181036000830152613eb481613bc9565b9050919050565b6000602082019050613ed06000830184613bec565b92915050565b6000613ee0613ef1565b9050613eec82826141c7565b919050565b6000604051905090565b600067ffffffffffffffff821115613f1657613f15614352565b5b613f1f8261439f565b9050602081019050919050565b600067ffffffffffffffff821115613f4757613f46614352565b5b613f508261439f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613fcb82614149565b9150613fd683614149565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561400b5761400a614296565b5b828201905092915050565b600061402182614149565b915061402c83614149565b92508261403c5761403b6142c5565b5b828204905092915050565b600061405282614149565b915061405d83614149565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561409657614095614296565b5b828202905092915050565b60006140ac82614149565b91506140b783614149565b9250828210156140ca576140c9614296565b5b828203905092915050565b60006140e082614129565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614180578082015181840152602081019050614165565b8381111561418f576000848401525b50505050565b600060028204905060018216806141ad57607f821691505b602082108114156141c1576141c06142f4565b5b50919050565b6141d08261439f565b810181811067ffffffffffffffff821117156141ef576141ee614352565b5b80604052505050565b600061420382614149565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423657614235614296565b5b600182019050919050565b600061424c82614253565b9050919050565b600061425e826143b0565b9050919050565b600061427082614149565b915061427b83614149565b92508261428b5761428a6142c5565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f596f75277265206e6f7420616c6c6f77656420746f206d696e7420746869732060008201527f4d75636821000000000000000000000000000000000000000000000000000000602082015250565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f00000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5175616e74697479204d75737420426520486967686572205468616e205a657260008201527f6f21000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c6963206d696e742069732064697361626c6521000000000000000000600082015250565b7f596f75277265204e6f7420416c6c6f77656420546f204d696e74206d6f72652060008201527f7468616e206d61784d696e7420416d6f756e7400000000000000000000000000602082015250565b50565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d617820537570706c7920526561636865640000000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642100000000000000000000000000600082015250565b6146e8816140d5565b81146146f357600080fd5b50565b6146ff816140e7565b811461470a57600080fd5b50565b614716816140f3565b811461472157600080fd5b50565b61472d816140fd565b811461473857600080fd5b50565b61474481614149565b811461474f57600080fd5b5056fea2646970667358221220996ff38078ef71414453f38131a1d0b2cae2b32c527a0bd021cfa0f44411aaad64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47487:4537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29677:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51068:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32790:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34293:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33856:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28926:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35158:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47828:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51179:77;;;;;;;;;;;;;:::i;:::-;;50599:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51724:297;;;;;;;;;;;;;:::i;:::-;;35399:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50751:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47754:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51264:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47796:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32598:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51376:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47682:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30046:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7415:103;;;;;;;;;;;;;:::i;:::-;;50956:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47898:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6764:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32959:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50855:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49000:808;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34569:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47625:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35655:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47860:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47710:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49949:642;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48158:814;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47968:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47933:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51565:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47567:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34927:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7673:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29677:305;29779:4;29831:25;29816:40;;;:11;:40;;;;:105;;;;29888:33;29873:48;;;:11;:48;;;;29816:105;:158;;;;29938:36;29962:11;29938:23;:36::i;:::-;29816:158;29796:178;;29677:305;;;:::o;51068:103::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51157:6:::1;51138:16;;:25;;;;;;;;;;;;;;;;;;51068:103:::0;:::o;32790:100::-;32844:13;32877:5;32870:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32790:100;:::o;34293:204::-;34361:7;34386:16;34394:7;34386;:16::i;:::-;34381:64;;34411:34;;;;;;;;;;;;;;34381:64;34465:15;:24;34481:7;34465:24;;;;;;;;;;;;;;;;;;;;;34458:31;;34293:204;;;:::o;33856:371::-;33929:13;33945:24;33961:7;33945:15;:24::i;:::-;33929:40;;33990:5;33984:11;;:2;:11;;;33980:48;;;34004:24;;;;;;;;;;;;;;33980:48;34061:5;34045:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34071:37;34088:5;34095:12;:10;:12::i;:::-;34071:16;:37::i;:::-;34070:38;34045:63;34041:138;;;34132:35;;;;;;;;;;;;;;34041:138;34191:28;34200:2;34204:7;34213:5;34191:8;:28::i;:::-;33918:309;33856:371;;:::o;28926:303::-;28970:7;29195:15;:13;:15::i;:::-;29180:12;;29164:13;;:28;:46;29157:53;;28926:303;:::o;35158:170::-;35292:28;35302:4;35308:2;35312:7;35292:9;:28::i;:::-;35158:170;;;:::o;47828:25::-;;;;:::o;51179:77::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51242:6:::1;;;;;;;;;;;51241:7;51232:6;;:16;;;;;;;;;;;;;;;;;;51179:77::o:0;50599:144::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50695:10:::1;50680:12;:25;;;;50728:7;50716:9;:19;;;;50599:144:::0;;:::o;51724:297::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51773:7:::1;51794:42;51786:56;;51879:3;51874:2;51850:21;:26;;;;:::i;:::-;:32;;;;:::i;:::-;51786:101;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51772:115;;;51906:2;51898:11;;;::::0;::::1;;51923:7;51944;:5;:7::i;:::-;51936:21;;51965;51936:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51922:69;;;52010:2;52002:11;;;::::0;::::1;;51761:260;;51724:297::o:0;35399:185::-;35537:39;35554:4;35560:2;35564:7;35537:39;;;;;;;;;;;;:16;:39::i;:::-;35399:185;;;:::o;50751:96::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50831:8:::1;50819:9;:20;;;;50751:96:::0;:::o;47754:35::-;;;;;;;;;;;;;:::o;51264:104::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51349:11:::1;51339:7;:21;;;;;;;;;;;;:::i;:::-;;51264:104:::0;:::o;47796:25::-;;;;;;;;;;;;;:::o;32598:125::-;32662:7;32689:21;32702:7;32689:12;:21::i;:::-;:26;;;32682:33;;32598:125;;;:::o;51376:181::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51475:6:::1;;;;;;;;;;;51474:7;51466:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;51520:29;51530:8;51540;51520:9;:29::i;:::-;51376:181:::0;;:::o;47682:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30046:206::-;30110:7;30151:1;30134:19;;:5;:19;;;30130:60;;;30162:28;;;;;;;;;;;;;;30130:60;30216:12;:19;30229:5;30216:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30208:36;;30201:43;;30046:206;;;:::o;7415:103::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7480:30:::1;7507:1;7480:18;:30::i;:::-;7415:103::o:0;50956:104::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51041:11:::1;51028:10;:24;;;;50956:104:::0;:::o;47898:28::-;;;;:::o;6764:87::-;6810:7;6837:6;;;;;;;;;;;6830:13;;6764:87;:::o;32959:104::-;33015:13;33048:7;33041:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32959:104;:::o;50855:93::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50933:7:::1;50921:9;:19;;;;50855:93:::0;:::o;49000:808::-;49060:14;49077:13;:11;:13::i;:::-;49060:30;;49110:6;;;;;;;;;;;49109:7;49101:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;49164:16;;;;;;;;;;;49163:17;49155:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;49238:1;49227:8;:12;49219:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;49318:9;;49306:8;49297:6;:17;;;;:::i;:::-;:30;;49289:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;49382:7;:5;:7::i;:::-;49368:21;;:10;:21;;;49364:347;;49468:9;;49456:8;49428:13;:25;49442:10;49428:25;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:49;;49406:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;49603:9;;49591:8;:21;;49565:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;49364:347;49750:8;49721:13;:25;49735:10;49721:25;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;49769:31;49779:10;49791:8;49769:9;:31::i;:::-;49049:759;49000:808;:::o;34569:287::-;34680:12;:10;:12::i;:::-;34668:24;;:8;:24;;;34664:54;;;34701:17;;;;;;;;;;;;;;34664:54;34776:8;34731:18;:32;34750:12;:10;:12::i;:::-;34731:32;;;;;;;;;;;;;;;:42;34764:8;34731:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34829:8;34800:48;;34815:12;:10;:12::i;:::-;34800:48;;;34839:8;34800:48;;;;;;:::i;:::-;;;;;;;;34569:287;;:::o;47625:48::-;;;;;;;;;;;;;;;;;:::o;35655:369::-;35822:28;35832:4;35838:2;35842:7;35822:9;:28::i;:::-;35865:15;:2;:13;;;:15::i;:::-;:76;;;;;35885:56;35916:4;35922:2;35926:7;35935:5;35885:30;:56::i;:::-;35884:57;35865:76;35861:156;;;35965:40;;;;;;;;;;;;;;35861:156;35655:369;;;;:::o;47860:31::-;;;;:::o;47710:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;49949:642::-;50067:13;50120:16;50128:7;50120;:16::i;:::-;50098:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;50224:28;50255:10;:8;:10::i;:::-;50224:41;;50327:1;50302:14;50296:28;:32;:287;;;;;;;;;;;;;;;;;50420:14;50461:18;:7;:16;:18::i;:::-;50506:13;50377:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50296:287;50276:307;;;49949:642;;;:::o;48158:814::-;48281:14;48298:13;:11;:13::i;:::-;48281:30;;48341:1;48330:8;:12;48322:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;48420:9;;48408:8;48399:6;:17;;;;:::i;:::-;:30;;48391:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;48471:16;;;;;;;;;;;48463:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48602:12;;48590:8;48559:16;:28;48576:10;48559:28;;;;;;;;;;;;;;;;:39;;;;:::i;:::-;:55;;48537:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;48690:12;48732:10;48715:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;48705:39;;;;;;48690:54;;48777:50;48796:12;;48777:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48810:10;;48822:4;48777:18;:50::i;:::-;48755:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;48914:8;48882:16;:28;48899:10;48882:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;48933:31;48943:10;48955:8;48933:9;:31::i;:::-;48270:702;;48158:814;;;:::o;47968:30::-;;;;:::o;47933:28::-;;;;:::o;51565:151::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51691:17:::1;51675:13;:33;;;;;;;;;;;;:::i;:::-;;51565:151:::0;:::o;47567:51::-;;;;;;;;;;;;;;;;;:::o;34927:164::-;35024:4;35048:18;:25;35067:5;35048:25;;;;;;;;;;;;;;;:35;35074:8;35048:35;;;;;;;;;;;;;;;;;;;;;;;;;35041:42;;34927:164;;;;:::o;7673:201::-;6995:12;:10;:12::i;:::-;6984:23;;:7;:5;:7::i;:::-;:23;;;6976:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7782:1:::1;7762:22;;:8;:22;;;;7754:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7838:28;7857:8;7838:18;:28::i;:::-;7673:201:::0;:::o;19571:157::-;19656:4;19695:25;19680:40;;;:11;:40;;;;19673:47;;19571:157;;;:::o;5488:98::-;5541:7;5568:10;5561:17;;5488:98;:::o;36279:174::-;36336:4;36379:7;36360:15;:13;:15::i;:::-;:26;;:53;;;;;36400:13;;36390:7;:23;36360:53;:85;;;;;36418:11;:20;36430:7;36418:20;;;;;;;;;;;:27;;;;;;;;;;;;36417:28;36360:85;36353:92;;36279:174;;;:::o;44436:196::-;44578:2;44551:15;:24;44567:7;44551:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44616:7;44612:2;44596:28;;44605:5;44596:28;;;;;;;;;;;;44436:196;;;:::o;28700:92::-;28756:7;28783:1;28776:8;;28700:92;:::o;39379:2130::-;39494:35;39532:21;39545:7;39532:12;:21::i;:::-;39494:59;;39592:4;39570:26;;:13;:18;;;:26;;;39566:67;;39605:28;;;;;;;;;;;;;;39566:67;39646:22;39688:4;39672:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39709:36;39726:4;39732:12;:10;:12::i;:::-;39709:16;:36::i;:::-;39672:73;:126;;;;39786:12;:10;:12::i;:::-;39762:36;;:20;39774:7;39762:11;:20::i;:::-;:36;;;39672:126;39646:153;;39817:17;39812:66;;39843:35;;;;;;;;;;;;;;39812:66;39907:1;39893:16;;:2;:16;;;39889:52;;;39918:23;;;;;;;;;;;;;;39889:52;39954:43;39976:4;39982:2;39986:7;39995:1;39954:21;:43::i;:::-;40062:35;40079:1;40083:7;40092:4;40062:8;:35::i;:::-;40423:1;40393:12;:18;40406:4;40393:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40467:1;40439:12;:16;40452:2;40439:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40485:31;40519:11;:20;40531:7;40519:20;;;;;;;;;;;40485:54;;40570:2;40554:8;:13;;;:18;;;;;;;;;;;;;;;;;;40620:15;40587:8;:23;;;:49;;;;;;;;;;;;;;;;;;40888:19;40920:1;40910:7;:11;40888:33;;40936:31;40970:11;:24;40982:11;40970:24;;;;;;;;;;;40936:58;;41038:1;41013:27;;:8;:13;;;;;;;;;;;;:27;;;41009:384;;;41223:13;;41208:11;:28;41204:174;;41277:4;41261:8;:13;;;:20;;;;;;;;;;;;;;;;;;41330:13;:28;;;41304:8;:23;;;:54;;;;;;;;;;;;;;;;;;41204:174;41009:384;40368:1036;;;41440:7;41436:2;41421:27;;41430:4;41421:27;;;;;;;;;;;;41459:42;41480:4;41486:2;41490:7;41499:1;41459:20;:42::i;:::-;39483:2026;;39379:2130;;;:::o;31427:1109::-;31489:21;;:::i;:::-;31523:12;31538:7;31523:22;;31606:4;31587:15;:13;:15::i;:::-;:23;;:47;;;;;31621:13;;31614:4;:20;31587:47;31583:886;;;31655:31;31689:11;:17;31701:4;31689:17;;;;;;;;;;;31655:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31730:9;:16;;;31725:729;;31801:1;31775:28;;:9;:14;;;:28;;;31771:101;;31839:9;31832:16;;;;;;31771:101;32174:261;32181:4;32174:261;;;32214:6;;;;;;;;32259:11;:17;32271:4;32259:17;;;;;;;;;;;32247:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32333:1;32307:28;;:9;:14;;;:28;;;32303:109;;32375:9;32368:16;;;;;;32303:109;32174:261;;;31725:729;31636:833;31583:886;32497:31;;;;;;;;;;;;;;31427:1109;;;;:::o;36461:104::-;36530:27;36540:2;36544:8;36530:27;;;;;;;;;;;;:9;:27::i;:::-;36461:104;;:::o;8034:191::-;8108:16;8127:6;;;;;;;;;;;8108:25;;8153:8;8144:6;;:17;;;;;;;;;;;;;;;;;;8208:8;8177:40;;8198:8;8177:40;;;;;;;;;;;;8097:128;8034:191;:::o;9465:326::-;9525:4;9782:1;9760:7;:19;;;:23;9753:30;;9465:326;;;:::o;45124:667::-;45287:4;45324:2;45308:36;;;45345:12;:10;:12::i;:::-;45359:4;45365:7;45374:5;45308:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45304:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45559:1;45542:6;:13;:18;45538:235;;;45588:40;;;;;;;;;;;;;;45538:235;45731:6;45725:13;45716:6;45712:2;45708:15;45701:38;45304:480;45437:45;;;45427:55;;;:6;:55;;;;45420:62;;;45124:667;;;;;;:::o;49833:108::-;49893:13;49926:7;49919:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49833:108;:::o;3050:723::-;3106:13;3336:1;3327:5;:10;3323:53;;;3354:10;;;;;;;;;;;;;;;;;;;;;3323:53;3386:12;3401:5;3386:20;;3417:14;3442:78;3457:1;3449:4;:9;3442:78;;3475:8;;;;;:::i;:::-;;;;3506:2;3498:10;;;;;:::i;:::-;;;3442:78;;;3530:19;3562:6;3552:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3530:39;;3580:154;3596:1;3587:5;:10;3580:154;;3624:1;3614:11;;;;;:::i;:::-;;;3691:2;3683:5;:10;;;;:::i;:::-;3670:2;:24;;;;:::i;:::-;3657:39;;3640:6;3647;3640:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3720:2;3711:11;;;;;:::i;:::-;;;3580:154;;;3758:6;3744:21;;;;;3050:723;;;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;1362:40;;1220:190;;;;;:::o;46439:159::-;;;;;:::o;47257:158::-;;;;;:::o;36928:163::-;37051:32;37057:2;37061:8;37071:5;37078:4;37051:5;:32::i;:::-;36928:163;;;:::o;1771:675::-;1854:7;1874:20;1897:4;1874:27;;1917:9;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2163:42;2178:12;2192;2163:14;:42::i;:::-;2148:57;;2016:382;;;2340:42;2355:12;2369;2340:14;:42::i;:::-;2325:57;;2016:382;1955:454;1950:3;;;;;:::i;:::-;;;;1912:497;;;;2426:12;2419:19;;;1771:675;;;;:::o;37350:1775::-;37489:20;37512:13;;37489:36;;37554:1;37540:16;;:2;:16;;;37536:48;;;37565:19;;;;;;;;;;;;;;37536:48;37611:1;37599:8;:13;37595:44;;;37621:18;;;;;;;;;;;;;;37595:44;37652:61;37682:1;37686:2;37690:12;37704:8;37652:21;:61::i;:::-;38025:8;37990:12;:16;38003:2;37990:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38089:8;38049:12;:16;38062:2;38049:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38148:2;38115:11;:25;38127:12;38115:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38215:15;38165:11;:25;38177:12;38165:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38248:20;38271:12;38248:35;;38298:11;38327:8;38312:12;:23;38298:37;;38356:4;:23;;;;;38364:15;:2;:13;;;:15::i;:::-;38356:23;38352:641;;;38400:314;38456:12;38452:2;38431:38;;38448:1;38431:38;;;;;;;;;;;;38497:69;38536:1;38540:2;38544:14;;;;;;38560:5;38497:30;:69::i;:::-;38492:174;;38602:40;;;;;;;;;;;;;;38492:174;38709:3;38693:12;:19;;38400:314;;38795:12;38778:13;;:29;38774:43;;38809:8;;;38774:43;38352:641;;;38858:120;38914:14;;;;;;38910:2;38889:40;;38906:1;38889:40;;;;;;;;;;;;38973:3;38957:12;:19;;38858:120;;38352:641;39023:12;39007:13;:28;;;;37965:1082;;39057:60;39086:1;39090:2;39094:12;39108:8;39057:20;:60::i;:::-;37478:1647;37350:1775;;;;:::o;2454:224::-;2522:13;2585:1;2579:4;2572:15;2614:1;2608:4;2601:15;2655:4;2649;2639:21;2630:30;;2454:224;;;;:::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;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:474::-;9816:6;9824;9873:2;9861:9;9852:7;9848:23;9844:32;9841:119;;;9879:79;;:::i;:::-;9841:119;9999:1;10024:53;10069:7;10060:6;10049:9;10045:22;10024:53;:::i;:::-;10014:63;;9970:117;10126:2;10152:53;10197:7;10188:6;10177:9;10173:22;10152:53;:::i;:::-;10142:63;;10097:118;9748:474;;;;;:::o;10228:118::-;10315:24;10333:5;10315:24;:::i;:::-;10310:3;10303:37;10228:118;;:::o;10352:157::-;10457:45;10477:24;10495:5;10477:24;:::i;:::-;10457:45;:::i;:::-;10452:3;10445:58;10352:157;;:::o;10515:109::-;10596:21;10611:5;10596:21;:::i;:::-;10591:3;10584:34;10515:109;;:::o;10630:118::-;10717:24;10735:5;10717:24;:::i;:::-;10712:3;10705:37;10630:118;;:::o;10754:360::-;10840:3;10868:38;10900:5;10868:38;:::i;:::-;10922:70;10985:6;10980:3;10922:70;:::i;:::-;10915:77;;11001:52;11046:6;11041:3;11034:4;11027:5;11023:16;11001:52;:::i;:::-;11078:29;11100:6;11078:29;:::i;:::-;11073:3;11069:39;11062:46;;10844:270;10754:360;;;;:::o;11120:364::-;11208:3;11236:39;11269:5;11236:39;:::i;:::-;11291:71;11355:6;11350:3;11291:71;:::i;:::-;11284:78;;11371:52;11416:6;11411:3;11404:4;11397:5;11393:16;11371:52;:::i;:::-;11448:29;11470:6;11448:29;:::i;:::-;11443:3;11439:39;11432:46;;11212:272;11120:364;;;;:::o;11490:377::-;11596:3;11624:39;11657:5;11624:39;:::i;:::-;11679:89;11761:6;11756:3;11679:89;:::i;:::-;11672:96;;11777:52;11822:6;11817:3;11810:4;11803:5;11799:16;11777:52;:::i;:::-;11854:6;11849:3;11845:16;11838:23;;11600:267;11490:377;;;;:::o;11897:845::-;12000:3;12037:5;12031:12;12066:36;12092:9;12066:36;:::i;:::-;12118:89;12200:6;12195:3;12118:89;:::i;:::-;12111:96;;12238:1;12227:9;12223:17;12254:1;12249:137;;;;12400:1;12395:341;;;;12216:520;;12249:137;12333:4;12329:9;12318;12314:25;12309:3;12302:38;12369:6;12364:3;12360:16;12353:23;;12249:137;;12395:341;12462:38;12494:5;12462:38;:::i;:::-;12522:1;12536:154;12550:6;12547:1;12544:13;12536:154;;;12624:7;12618:14;12614:1;12609:3;12605:11;12598:35;12674:1;12665:7;12661:15;12650:26;;12572:4;12569:1;12565:12;12560:17;;12536:154;;;12719:6;12714:3;12710:16;12703:23;;12402:334;;12216:520;;12004:738;;11897:845;;;;:::o;12748:366::-;12890:3;12911:67;12975:2;12970:3;12911:67;:::i;:::-;12904:74;;12987:93;13076:3;12987:93;:::i;:::-;13105:2;13100:3;13096:12;13089:19;;12748:366;;;:::o;13120:::-;13262:3;13283:67;13347:2;13342:3;13283:67;:::i;:::-;13276:74;;13359:93;13448:3;13359:93;:::i;:::-;13477:2;13472:3;13468:12;13461:19;;13120:366;;;:::o;13492:::-;13634:3;13655:67;13719:2;13714:3;13655:67;:::i;:::-;13648:74;;13731:93;13820:3;13731:93;:::i;:::-;13849:2;13844:3;13840:12;13833:19;;13492:366;;;:::o;13864:::-;14006:3;14027:67;14091:2;14086:3;14027:67;:::i;:::-;14020:74;;14103:93;14192:3;14103:93;:::i;:::-;14221:2;14216:3;14212:12;14205:19;;13864:366;;;:::o;14236:::-;14378:3;14399:67;14463:2;14458:3;14399:67;:::i;:::-;14392:74;;14475:93;14564:3;14475:93;:::i;:::-;14593:2;14588:3;14584:12;14577:19;;14236:366;;;:::o;14608:::-;14750:3;14771:67;14835:2;14830:3;14771:67;:::i;:::-;14764:74;;14847:93;14936:3;14847:93;:::i;:::-;14965:2;14960:3;14956:12;14949:19;;14608:366;;;:::o;14980:::-;15122:3;15143:67;15207:2;15202:3;15143:67;:::i;:::-;15136:74;;15219:93;15308:3;15219:93;:::i;:::-;15337:2;15332:3;15328:12;15321:19;;14980:366;;;:::o;15352:::-;15494:3;15515:67;15579:2;15574:3;15515:67;:::i;:::-;15508:74;;15591:93;15680:3;15591:93;:::i;:::-;15709:2;15704:3;15700:12;15693:19;;15352:366;;;:::o;15724:::-;15866:3;15887:67;15951:2;15946:3;15887:67;:::i;:::-;15880:74;;15963:93;16052:3;15963:93;:::i;:::-;16081:2;16076:3;16072:12;16065:19;;15724:366;;;:::o;16096:::-;16238:3;16259:67;16323:2;16318:3;16259:67;:::i;:::-;16252:74;;16335:93;16424:3;16335:93;:::i;:::-;16453:2;16448:3;16444:12;16437:19;;16096:366;;;:::o;16468:398::-;16627:3;16648:83;16729:1;16724:3;16648:83;:::i;:::-;16641:90;;16740:93;16829:3;16740:93;:::i;:::-;16858:1;16853:3;16849:11;16842:18;;16468:398;;;:::o;16872:366::-;17014:3;17035:67;17099:2;17094:3;17035:67;:::i;:::-;17028:74;;17111:93;17200:3;17111:93;:::i;:::-;17229:2;17224:3;17220:12;17213:19;;16872:366;;;:::o;17244:::-;17386:3;17407:67;17471:2;17466:3;17407:67;:::i;:::-;17400:74;;17483:93;17572:3;17483:93;:::i;:::-;17601:2;17596:3;17592:12;17585:19;;17244:366;;;:::o;17616:::-;17758:3;17779:67;17843:2;17838:3;17779:67;:::i;:::-;17772:74;;17855:93;17944:3;17855:93;:::i;:::-;17973:2;17968:3;17964:12;17957:19;;17616:366;;;:::o;17988:118::-;18075:24;18093:5;18075:24;:::i;:::-;18070:3;18063:37;17988:118;;:::o;18112:256::-;18224:3;18239:75;18310:3;18301:6;18239:75;:::i;:::-;18339:2;18334:3;18330:12;18323:19;;18359:3;18352:10;;18112:256;;;;:::o;18374:589::-;18599:3;18621:95;18712:3;18703:6;18621:95;:::i;:::-;18614:102;;18733:95;18824:3;18815:6;18733:95;:::i;:::-;18726:102;;18845:92;18933:3;18924:6;18845:92;:::i;:::-;18838:99;;18954:3;18947:10;;18374:589;;;;;;:::o;18969:379::-;19153:3;19175:147;19318:3;19175:147;:::i;:::-;19168:154;;19339:3;19332:10;;18969:379;;;:::o;19354:222::-;19447:4;19485:2;19474:9;19470:18;19462:26;;19498:71;19566:1;19555:9;19551:17;19542:6;19498:71;:::i;:::-;19354:222;;;;:::o;19582:640::-;19777:4;19815:3;19804:9;19800:19;19792:27;;19829:71;19897:1;19886:9;19882:17;19873:6;19829:71;:::i;:::-;19910:72;19978:2;19967:9;19963:18;19954:6;19910:72;:::i;:::-;19992;20060:2;20049:9;20045:18;20036:6;19992:72;:::i;:::-;20111:9;20105:4;20101:20;20096:2;20085:9;20081:18;20074:48;20139:76;20210:4;20201:6;20139:76;:::i;:::-;20131:84;;19582:640;;;;;;;:::o;20228:210::-;20315:4;20353:2;20342:9;20338:18;20330:26;;20366:65;20428:1;20417:9;20413:17;20404:6;20366:65;:::i;:::-;20228:210;;;;:::o;20444:222::-;20537:4;20575:2;20564:9;20560:18;20552:26;;20588:71;20656:1;20645:9;20641:17;20632:6;20588:71;:::i;:::-;20444:222;;;;:::o;20672:313::-;20785:4;20823:2;20812:9;20808:18;20800:26;;20872:9;20866:4;20862:20;20858:1;20847:9;20843:17;20836:47;20900:78;20973:4;20964:6;20900:78;:::i;:::-;20892:86;;20672:313;;;;:::o;20991:419::-;21157:4;21195:2;21184:9;21180:18;21172:26;;21244:9;21238:4;21234:20;21230:1;21219:9;21215:17;21208:47;21272:131;21398:4;21272:131;:::i;:::-;21264:139;;20991:419;;;:::o;21416:::-;21582:4;21620:2;21609:9;21605:18;21597:26;;21669:9;21663:4;21659:20;21655:1;21644:9;21640:17;21633:47;21697:131;21823:4;21697:131;:::i;:::-;21689:139;;21416:419;;;:::o;21841:::-;22007:4;22045:2;22034:9;22030:18;22022:26;;22094:9;22088:4;22084:20;22080:1;22069:9;22065:17;22058:47;22122:131;22248:4;22122:131;:::i;:::-;22114:139;;21841:419;;;:::o;22266:::-;22432:4;22470:2;22459:9;22455:18;22447:26;;22519:9;22513:4;22509:20;22505:1;22494:9;22490:17;22483:47;22547:131;22673:4;22547:131;:::i;:::-;22539:139;;22266:419;;;:::o;22691:::-;22857:4;22895:2;22884:9;22880:18;22872:26;;22944:9;22938:4;22934:20;22930:1;22919:9;22915:17;22908:47;22972:131;23098:4;22972:131;:::i;:::-;22964:139;;22691:419;;;:::o;23116:::-;23282:4;23320:2;23309:9;23305:18;23297:26;;23369:9;23363:4;23359:20;23355:1;23344:9;23340:17;23333:47;23397:131;23523:4;23397:131;:::i;:::-;23389:139;;23116:419;;;:::o;23541:::-;23707:4;23745:2;23734:9;23730:18;23722:26;;23794:9;23788:4;23784:20;23780:1;23769:9;23765:17;23758:47;23822:131;23948:4;23822:131;:::i;:::-;23814:139;;23541:419;;;:::o;23966:::-;24132:4;24170:2;24159:9;24155:18;24147:26;;24219:9;24213:4;24209:20;24205:1;24194:9;24190:17;24183:47;24247:131;24373:4;24247:131;:::i;:::-;24239:139;;23966:419;;;:::o;24391:::-;24557:4;24595:2;24584:9;24580:18;24572:26;;24644:9;24638:4;24634:20;24630:1;24619:9;24615:17;24608:47;24672:131;24798:4;24672:131;:::i;:::-;24664:139;;24391:419;;;:::o;24816:::-;24982:4;25020:2;25009:9;25005:18;24997:26;;25069:9;25063:4;25059:20;25055:1;25044:9;25040:17;25033:47;25097:131;25223:4;25097:131;:::i;:::-;25089:139;;24816:419;;;:::o;25241:::-;25407:4;25445:2;25434:9;25430:18;25422:26;;25494:9;25488:4;25484:20;25480:1;25469:9;25465:17;25458:47;25522:131;25648:4;25522:131;:::i;:::-;25514:139;;25241:419;;;:::o;25666:::-;25832:4;25870:2;25859:9;25855:18;25847:26;;25919:9;25913:4;25909:20;25905:1;25894:9;25890:17;25883:47;25947:131;26073:4;25947:131;:::i;:::-;25939:139;;25666:419;;;:::o;26091:::-;26257:4;26295:2;26284:9;26280:18;26272:26;;26344:9;26338:4;26334:20;26330:1;26319:9;26315:17;26308:47;26372:131;26498:4;26372:131;:::i;:::-;26364:139;;26091:419;;;:::o;26516:222::-;26609:4;26647:2;26636:9;26632:18;26624:26;;26660:71;26728:1;26717:9;26713:17;26704:6;26660:71;:::i;:::-;26516:222;;;;:::o;26744:129::-;26778:6;26805:20;;:::i;:::-;26795:30;;26834:33;26862:4;26854:6;26834:33;:::i;:::-;26744:129;;;:::o;26879:75::-;26912:6;26945:2;26939:9;26929:19;;26879:75;:::o;26960:307::-;27021:4;27111:18;27103:6;27100:30;27097:56;;;27133:18;;:::i;:::-;27097:56;27171:29;27193:6;27171:29;:::i;:::-;27163:37;;27255:4;27249;27245:15;27237:23;;26960:307;;;:::o;27273:308::-;27335:4;27425:18;27417:6;27414:30;27411:56;;;27447:18;;:::i;:::-;27411:56;27485:29;27507:6;27485:29;:::i;:::-;27477:37;;27569:4;27563;27559:15;27551:23;;27273:308;;;:::o;27587:141::-;27636:4;27659:3;27651:11;;27682:3;27679:1;27672:14;27716:4;27713:1;27703:18;27695:26;;27587:141;;;:::o;27734:98::-;27785:6;27819:5;27813:12;27803:22;;27734:98;;;:::o;27838:99::-;27890:6;27924:5;27918:12;27908:22;;27838:99;;;:::o;27943:168::-;28026:11;28060:6;28055:3;28048:19;28100:4;28095:3;28091:14;28076:29;;27943:168;;;;:::o;28117:147::-;28218:11;28255:3;28240:18;;28117:147;;;;:::o;28270:169::-;28354:11;28388:6;28383:3;28376:19;28428:4;28423:3;28419:14;28404:29;;28270:169;;;;:::o;28445:148::-;28547:11;28584:3;28569:18;;28445:148;;;;:::o;28599:305::-;28639:3;28658:20;28676:1;28658:20;:::i;:::-;28653:25;;28692:20;28710:1;28692:20;:::i;:::-;28687:25;;28846:1;28778:66;28774:74;28771:1;28768:81;28765:107;;;28852:18;;:::i;:::-;28765:107;28896:1;28893;28889:9;28882:16;;28599:305;;;;:::o;28910:185::-;28950:1;28967:20;28985:1;28967:20;:::i;:::-;28962:25;;29001:20;29019:1;29001:20;:::i;:::-;28996:25;;29040:1;29030:35;;29045:18;;:::i;:::-;29030:35;29087:1;29084;29080:9;29075:14;;28910:185;;;;:::o;29101:348::-;29141:7;29164:20;29182:1;29164:20;:::i;:::-;29159:25;;29198:20;29216:1;29198:20;:::i;:::-;29193:25;;29386:1;29318:66;29314:74;29311:1;29308:81;29303:1;29296:9;29289:17;29285:105;29282:131;;;29393:18;;:::i;:::-;29282:131;29441:1;29438;29434:9;29423:20;;29101:348;;;;:::o;29455:191::-;29495:4;29515:20;29533:1;29515:20;:::i;:::-;29510:25;;29549:20;29567:1;29549:20;:::i;:::-;29544:25;;29588:1;29585;29582:8;29579:34;;;29593:18;;:::i;:::-;29579:34;29638:1;29635;29631:9;29623:17;;29455:191;;;;:::o;29652:96::-;29689:7;29718:24;29736:5;29718:24;:::i;:::-;29707:35;;29652:96;;;:::o;29754:90::-;29788:7;29831:5;29824:13;29817:21;29806:32;;29754:90;;;:::o;29850:77::-;29887:7;29916:5;29905:16;;29850:77;;;:::o;29933:149::-;29969:7;30009:66;30002:5;29998:78;29987:89;;29933:149;;;:::o;30088:126::-;30125:7;30165:42;30158:5;30154:54;30143:65;;30088:126;;;:::o;30220:77::-;30257:7;30286:5;30275:16;;30220:77;;;:::o;30303:154::-;30387:6;30382:3;30377;30364:30;30449:1;30440:6;30435:3;30431:16;30424:27;30303:154;;;:::o;30463:307::-;30531:1;30541:113;30555:6;30552:1;30549:13;30541:113;;;30640:1;30635:3;30631:11;30625:18;30621:1;30616:3;30612:11;30605:39;30577:2;30574:1;30570:10;30565:15;;30541:113;;;30672:6;30669:1;30666:13;30663:101;;;30752:1;30743:6;30738:3;30734:16;30727:27;30663:101;30512:258;30463:307;;;:::o;30776:320::-;30820:6;30857:1;30851:4;30847:12;30837:22;;30904:1;30898:4;30894:12;30925:18;30915:81;;30981:4;30973:6;30969:17;30959:27;;30915:81;31043:2;31035:6;31032:14;31012:18;31009:38;31006:84;;;31062:18;;:::i;:::-;31006:84;30827:269;30776:320;;;:::o;31102:281::-;31185:27;31207:4;31185:27;:::i;:::-;31177:6;31173:40;31315:6;31303:10;31300:22;31279:18;31267:10;31264:34;31261:62;31258:88;;;31326:18;;:::i;:::-;31258:88;31366:10;31362:2;31355:22;31145:238;31102:281;;:::o;31389:233::-;31428:3;31451:24;31469:5;31451:24;:::i;:::-;31442:33;;31497:66;31490:5;31487:77;31484:103;;;31567:18;;:::i;:::-;31484:103;31614:1;31607:5;31603:13;31596:20;;31389:233;;;:::o;31628:100::-;31667:7;31696:26;31716:5;31696:26;:::i;:::-;31685:37;;31628:100;;;:::o;31734:94::-;31773:7;31802:20;31816:5;31802:20;:::i;:::-;31791:31;;31734:94;;;:::o;31834:176::-;31866:1;31883:20;31901:1;31883:20;:::i;:::-;31878:25;;31917:20;31935:1;31917:20;:::i;:::-;31912:25;;31956:1;31946:35;;31961:18;;:::i;:::-;31946:35;32002:1;31999;31995:9;31990:14;;31834:176;;;;:::o;32016:180::-;32064:77;32061:1;32054:88;32161:4;32158:1;32151:15;32185:4;32182:1;32175:15;32202:180;32250:77;32247:1;32240:88;32347:4;32344:1;32337:15;32371:4;32368:1;32361:15;32388:180;32436:77;32433:1;32426:88;32533:4;32530:1;32523:15;32557:4;32554:1;32547:15;32574:180;32622:77;32619:1;32612:88;32719:4;32716:1;32709:15;32743:4;32740:1;32733:15;32760:180;32808:77;32805:1;32798:88;32905:4;32902:1;32895:15;32929:4;32926:1;32919:15;32946:117;33055:1;33052;33045:12;33069:117;33178:1;33175;33168:12;33192:117;33301:1;33298;33291:12;33315:117;33424:1;33421;33414:12;33438:117;33547:1;33544;33537:12;33561:117;33670:1;33667;33660:12;33684:102;33725:6;33776:2;33772:7;33767:2;33760:5;33756:14;33752:28;33742:38;;33684:102;;;:::o;33792:94::-;33825:8;33873:5;33869:2;33865:14;33844:35;;33792:94;;;:::o;33892:224::-;34032:34;34028:1;34020:6;34016:14;34009:58;34101:7;34096:2;34088:6;34084:15;34077:32;33892:224;:::o;34122:164::-;34262:16;34258:1;34250:6;34246:14;34239:40;34122:164;:::o;34292:225::-;34432:34;34428:1;34420:6;34416:14;34409:58;34501:8;34496:2;34488:6;34484:15;34477:33;34292:225;:::o;34523:220::-;34663:34;34659:1;34651:6;34647:14;34640:58;34732:3;34727:2;34719:6;34715:15;34708:28;34523:220;:::o;34749:182::-;34889:34;34885:1;34877:6;34873:14;34866:58;34749:182;:::o;34937:173::-;35077:25;35073:1;35065:6;35061:14;35054:49;34937:173;:::o;35116:234::-;35256:34;35252:1;35244:6;35240:14;35233:58;35325:17;35320:2;35312:6;35308:15;35301:42;35116:234;:::o;35356:221::-;35496:34;35492:1;35484:6;35480:14;35473:58;35565:4;35560:2;35552:6;35548:15;35541:29;35356:221;:::o;35583:173::-;35723:25;35719:1;35711:6;35707:14;35700:49;35583:173;:::o;35762:238::-;35902:34;35898:1;35890:6;35886:14;35879:58;35971:21;35966:2;35958:6;35954:15;35947:46;35762:238;:::o;36006:114::-;;:::o;36126:221::-;36266:34;36262:1;36254:6;36250:14;36243:58;36335:4;36330:2;36322:6;36318:15;36311:29;36126:221;:::o;36353:168::-;36493:20;36489:1;36481:6;36477:14;36470:44;36353:168;:::o;36527:169::-;36667:21;36663:1;36655:6;36651:14;36644:45;36527:169;:::o;36702:122::-;36775:24;36793:5;36775:24;:::i;:::-;36768:5;36765:35;36755:63;;36814:1;36811;36804:12;36755:63;36702:122;:::o;36830:116::-;36900:21;36915:5;36900:21;:::i;:::-;36893:5;36890:32;36880:60;;36936:1;36933;36926:12;36880:60;36830:116;:::o;36952:122::-;37025:24;37043:5;37025:24;:::i;:::-;37018:5;37015:35;37005:63;;37064:1;37061;37054:12;37005:63;36952:122;:::o;37080:120::-;37152:23;37169:5;37152:23;:::i;:::-;37145:5;37142:34;37132:62;;37190:1;37187;37180:12;37132:62;37080:120;:::o;37206:122::-;37279:24;37297:5;37279:24;:::i;:::-;37272:5;37269:35;37259:63;;37318:1;37315;37308:12;37259:63;37206:122;:::o

Swarm Source

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