ETH Price: $3,154.10 (+0.32%)
Gas: 1 Gwei

Token

ShitBeastGrlz (SBG)
 

Overview

Max Total Supply

6,666 SBG

Holders

2,089

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
deadhand.eth
Balance
2 SBG
0x2045be8e44b7641ce2092b40bb04d724ccd75402
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:
ShitBeastGrlz

Compiler Version
v0.8.13+commit.abaa5c0e

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-08
*/

// SPDX-License-Identifier: MIT

/** _____ _     _ _  ______                _   _____      _     
/  ___| |   (_) | | ___ \              | | |  __ \    | |    
\ `--.| |__  _| |_| |_/ / ___  __ _ ___| |_| |  \/_ __| |____
 `--. \ '_ \| | __| ___ \/ _ \/ _` / __| __| | __| '__| |_  /
/\__/ / | | | | |_| |_/ /  __/ (_| \__ \ |_| |_\ \ |  | |/ / 
\____/|_| |_|_|\__\____/ \___|\__,_|___/\__|\____/_|  |_/___|                                                      
*/
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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/contracts/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 0;
    }

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

    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: contracts/no.sol



pragma solidity >=0.8.9 <0.9.0;




// Smart contract for  Test
contract ShitBeastGrlz is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  uint256 public maxSupply = 6666;
  uint256 public price = 0.004 ether;
  uint256 public cost;
  uint256 public maxPerWallet  = 10;
  uint256 public totalFree = 1000;
  uint256 public maxMintAmountPerTx = 5;
  uint256 public maxPerFree = 2;
  uint256 public maxPerFreeWallet = 2;


  string public uriPrefix = 'ipfs://QmTYXoWPZuAdgTvyVF85tgDxP769PzyRrsJNGTFaBGxYAX/';
  string public uriSuffix = '.json';

  constructor() ERC721A("ShitBeastGrlz", "SBG") {
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    cost = price;
    if(totalSupply() + _mintAmount < totalFree + 1) {
      cost = 0;
      require(_mintAmount <= maxPerFree && cost == 0, "Too many Free mints!");
      require(numberMinted(msg.sender) + _mintAmount <= maxPerFreeWallet,"No More Free!");
    }
    require(numberMinted(msg.sender) + _mintAmount <= maxPerWallet,"Too many per wallet!");
    _safeMint(_msgSender(), _mintAmount);
  }
  
  function airdrop(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }
  
  function setCost(uint256 _cost) public onlyOwner {
    price = _cost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxPerFree(uint256 _maxPerFree) public onlyOwner {
    maxPerFree = _maxPerFree;
  }

  function setMaxPerWallet(uint256 _maxPerWallet) public onlyOwner {
    maxPerWallet = _maxPerWallet;
  }

  function setTotalFree(uint256 _totalFree) public onlyOwner {
    totalFree = _totalFree;
  }

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

  function setMaxPerFreeWallet(uint256 _maxPerFreeWallet) public onlyOwner {
    maxPerFreeWallet = _maxPerFreeWallet;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

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

  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(), uriSuffix))
        : '';
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerFreeWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFree","type":"uint256"}],"name":"setMaxPerFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerFreeWallet","type":"uint256"}],"name":"setMaxPerFreeWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_totalFree","type":"uint256"}],"name":"setTotalFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","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":"totalFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611a0a600a55660e35fa931a0000600b55600a600d556103e8600e556005600f5560026010556002601155604051806060016040528060368152602001620043de60369139601290805190602001906200006092919062000278565b506040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060139080519060200190620000ae92919062000278565b50348015620000bc57600080fd5b506040518060400160405280600d81526020017f53686974426561737447726c7a000000000000000000000000000000000000008152506040518060400160405280600381526020017f534247000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200014192919062000278565b5080600390805190602001906200015a92919062000278565b506200016b620001a160201b60201c565b60008190555050506200019362000187620001aa60201b60201c565b620001b260201b60201c565b60016009819055506200038c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002869062000357565b90600052602060002090601f016020900481019282620002aa5760008555620002f6565b82601f10620002c557805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f5578251825591602001919060010190620002d8565b5b50905062000305919062000309565b5090565b5b80821115620003245760008160009055506001016200030a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200037057607f821691505b60208210810362000386576200038562000328565b5b50919050565b614042806200039c6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b88d4fde14610745578063bc63f02e1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b8063a035b1fe116100f2578063a035b1fe14610681578063a0712d68146106ac578063a09fa941146106c8578063a22cb465146106f3578063b071401b1461071c5761023b565b8063715018a6146105c05780637ec4a659146105d75780638da5cb5b1461060057806394354fd01461062b57806395d89b41146106565761023b565b806342842e0e116101bc5780635e85d3a3116101805780635e85d3a3146104c957806362b99ad4146104f25780636352211e1461051d5780636f8b44b01461055a57806370a08231146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a5780635503a0e814610475578063563aaf11146104a05761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613062565b61091f565b60405161027491906130aa565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061315e565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131b6565b610a93565b6040516102dc9190613224565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061326b565b610b0f565b005b34801561031a57600080fd5b50610323610c19565b60405161033091906132ba565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061340a565b610c1f565b005b34801561036e57600080fd5b50610377610cb5565b60405161038491906132ba565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613453565b610ccc565b005b3480156103c257600080fd5b506103cb610cdc565b6040516103d891906132ba565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce2565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613453565b610e33565b005b34801561042d57600080fd5b50610448600480360381019061044391906131b6565b610e53565b005b34801561045657600080fd5b5061045f610ed9565b60405161046c91906132ba565b60405180910390f35b34801561048157600080fd5b5061048a610edf565b604051610497919061315e565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906131b6565b610f6d565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906131b6565b610ff3565b005b3480156104fe57600080fd5b50610507611079565b604051610514919061315e565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906131b6565b611107565b6040516105519190613224565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906131b6565b61111d565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906134a6565b6111a3565b6040516105b791906132ba565b60405180910390f35b3480156105cc57600080fd5b506105d5611272565b005b3480156105e357600080fd5b506105fe60048036038101906105f9919061340a565b6112fa565b005b34801561060c57600080fd5b50610615611390565b6040516106229190613224565b60405180910390f35b34801561063757600080fd5b506106406113ba565b60405161064d91906132ba565b60405180910390f35b34801561066257600080fd5b5061066b6113c0565b604051610678919061315e565b60405180910390f35b34801561068d57600080fd5b50610696611452565b6040516106a391906132ba565b60405180910390f35b6106c660048036038101906106c191906131b6565b611458565b005b3480156106d457600080fd5b506106dd6116a5565b6040516106ea91906132ba565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906134ff565b6116ab565b005b34801561072857600080fd5b50610743600480360381019061073e91906131b6565b611822565b005b34801561075157600080fd5b5061076c600480360381019061076791906135e0565b6118a8565b005b34801561077a57600080fd5b5061079560048036038101906107909190613663565b611924565b005b3480156107a357600080fd5b506107ac611a58565b6040516107b991906132ba565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131b6565b611a5e565b6040516107f6919061315e565b60405180910390f35b34801561080b57600080fd5b50610814611b08565b60405161082191906132ba565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134a6565b611b0e565b60405161085e91906132ba565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131b6565b611b20565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131b6565b611ba6565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136a3565b611c2c565b6040516108ed91906130aa565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134a6565b611cc0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611db7565b5b9050919050565b606060028054610a1090613712565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90613712565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e21565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a82611107565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba0611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd25750610bd081610bcb611e6f565b611c2c565b155b15610c09576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c14838383611e77565b505050565b600c5481565b610c27611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610c45611390565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061378f565b60405180910390fd5b8060139080519060200190610cb1929190612f10565b5050565b6000610cbf611f29565b6001546000540303905090565b610cd7838383611f32565b505050565b600e5481565b610cea611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610d08611390565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061378f565b60405180910390fd5b600260095403610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906137fb565b60405180910390fd5b60026009819055506000610db5611390565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd89061384c565b60006040518083038185875af1925050503d8060008114610e15576040519150601f19603f3d011682016040523d82523d6000602084013e610e1a565b606091505b5050905080610e2857600080fd5b506001600981905550565b610e4e838383604051806020016040528060008152506118a8565b505050565b610e5b611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610e79611390565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061378f565b60405180910390fd5b80600b8190555050565b600d5481565b60138054610eec90613712565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1890613712565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b505050505081565b610f75611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610f93611390565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061378f565b60405180910390fd5b80600e8190555050565b610ffb611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611019611390565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061378f565b60405180910390fd5b8060118190555050565b6012805461108690613712565b80601f01602080910402602001604051908101604052809291908181526020018280546110b290613712565b80156110ff5780601f106110d4576101008083540402835291602001916110ff565b820191906000526020600020905b8154815290600101906020018083116110e257829003601f168201915b505050505081565b6000611112826123e6565b600001519050919050565b611125611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611143611390565b73ffffffffffffffffffffffffffffffffffffffff1614611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061378f565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127a611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611298611390565b73ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e59061378f565b60405180910390fd5b6112f86000612675565b565b611302611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611320611390565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d9061378f565b60405180910390fd5b806012908051906020019061138c929190612f10565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546113cf90613712565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90613712565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b5050505050905090565b600b5481565b8060008111801561146b5750600f548111155b6114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a1906138ad565b60405180910390fd5b600a54816114b6610cb5565b6114c091906138fc565b1115611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f89061399e565b60405180910390fd5b8180600c5461151091906139be565b341015611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990613a64565b60405180910390fd5b600b54600c819055506001600e5461156a91906138fc565b83611573610cb5565b61157d91906138fc565b1015611637576000600c81905550601054831115801561159f57506000600c54145b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613ad0565b60405180910390fd5b601154836115eb33611b0e565b6115f591906138fc565b1115611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613b3c565b60405180910390fd5b5b600d548361164433611b0e565b61164e91906138fc565b111561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690613ba8565b60405180910390fd5b6116a061169a611e6f565b8461273b565b505050565b60115481565b6116b3611e6f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611717576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611724611e6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d1611e6f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181691906130aa565b60405180910390a35050565b61182a611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611848611390565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118959061378f565b60405180910390fd5b80600f8190555050565b6118b3848484611f32565b6118d28373ffffffffffffffffffffffffffffffffffffffff16612759565b80156118e757506118e58484848461277c565b155b1561191e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b816000811180156119375750600f548111155b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906138ad565b60405180910390fd5b600a5481611982610cb5565b61198c91906138fc565b11156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c49061399e565b60405180910390fd5b6119d5611e6f565b73ffffffffffffffffffffffffffffffffffffffff166119f3611390565b73ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a409061378f565b60405180910390fd5b611a53828461273b565b505050565b60105481565b6060611a6982611e21565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90613c3a565b60405180910390fd5b6000611ab26128cc565b90506000815111611ad25760405180602001604052806000815250611b00565b80611adc8461295e565b6013604051602001611af093929190613d2a565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b1982612abe565b9050919050565b611b28611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611b46611390565b73ffffffffffffffffffffffffffffffffffffffff1614611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b939061378f565b60405180910390fd5b80600d8190555050565b611bae611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611390565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c199061378f565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cc8611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611ce6611390565b73ffffffffffffffffffffffffffffffffffffffff1614611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d339061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613dcd565b60405180910390fd5b611db481612675565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e2c611f29565b11158015611e3b575060005482105b8015611e68575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f3d826123e6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fc9611e6f565b73ffffffffffffffffffffffffffffffffffffffff161480611ff85750611ff785611ff2611e6f565b611c2c565b5b8061203d5750612006611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661202584610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612076576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120dc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e98585856001612b28565b6120f560008487611e77565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361237457600054821461237357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123df8585856001612b2e565b5050505050565b6123ee612f96565b6000829050806123fc611f29565b1115801561240b575060005481105b1561263e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161263c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612520578092505050612670565b5b60011561263b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612636578092505050612670565b612521565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612755828260405180602001604052806000815250612b34565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a2611e6f565b8786866040518563ffffffff1660e01b81526004016127c49493929190613e42565b6020604051808303816000875af192505050801561280057506040513d601f19601f820116820180604052508101906127fd9190613ea3565b60015b612879573d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b506000815103612871576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546128db90613712565b80601f016020809104026020016040519081016040528092919081815260200182805461290790613712565b80156129545780601f1061292957610100808354040283529160200191612954565b820191906000526020600020905b81548152906001019060200180831161293757829003601f168201915b5050505050905090565b6060600082036129a5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ab9565b600082905060005b600082146129d75780806129c090613ed0565b915050600a826129d09190613f47565b91506129ad565b60008167ffffffffffffffff8111156129f3576129f26132df565b5b6040519080825280601f01601f191660200182016040528015612a255781602001600182028036833780820191505090505b5090505b60008514612ab257600182612a3e9190613f78565b9150600a85612a4d9190613fac565b6030612a5991906138fc565b60f81b818381518110612a6f57612a6e613fdd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aab9190613f47565b9450612a29565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b418383836001612b46565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bb2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612bec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf96000868387612b28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dc35750612dc28773ffffffffffffffffffffffffffffffffffffffff16612759565b5b15612e88575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e38600088848060010195508861277c565b612e6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612dc9578260005414612e8357600080fd5b612ef3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e89575b816000819055505050612f096000868387612b2e565b5050505050565b828054612f1c90613712565b90600052602060002090601f016020900481019282612f3e5760008555612f85565b82601f10612f5757805160ff1916838001178555612f85565b82800160010185558215612f85579182015b82811115612f84578251825591602001919060010190612f69565b5b509050612f929190612fd9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ff2576000816000905550600101612fda565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61303f8161300a565b811461304a57600080fd5b50565b60008135905061305c81613036565b92915050565b60006020828403121561307857613077613000565b5b60006130868482850161304d565b91505092915050565b60008115159050919050565b6130a48161308f565b82525050565b60006020820190506130bf600083018461309b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130ff5780820151818401526020810190506130e4565b8381111561310e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613130826130c5565b61313a81856130d0565b935061314a8185602086016130e1565b61315381613114565b840191505092915050565b600060208201905081810360008301526131788184613125565b905092915050565b6000819050919050565b61319381613180565b811461319e57600080fd5b50565b6000813590506131b08161318a565b92915050565b6000602082840312156131cc576131cb613000565b5b60006131da848285016131a1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061320e826131e3565b9050919050565b61321e81613203565b82525050565b60006020820190506132396000830184613215565b92915050565b61324881613203565b811461325357600080fd5b50565b6000813590506132658161323f565b92915050565b6000806040838503121561328257613281613000565b5b600061329085828601613256565b92505060206132a1858286016131a1565b9150509250929050565b6132b481613180565b82525050565b60006020820190506132cf60008301846132ab565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331782613114565b810181811067ffffffffffffffff82111715613336576133356132df565b5b80604052505050565b6000613349612ff6565b9050613355828261330e565b919050565b600067ffffffffffffffff821115613375576133746132df565b5b61337e82613114565b9050602081019050919050565b82818337600083830152505050565b60006133ad6133a88461335a565b61333f565b9050828152602081018484840111156133c9576133c86132da565b5b6133d484828561338b565b509392505050565b600082601f8301126133f1576133f06132d5565b5b813561340184826020860161339a565b91505092915050565b6000602082840312156134205761341f613000565b5b600082013567ffffffffffffffff81111561343e5761343d613005565b5b61344a848285016133dc565b91505092915050565b60008060006060848603121561346c5761346b613000565b5b600061347a86828701613256565b935050602061348b86828701613256565b925050604061349c868287016131a1565b9150509250925092565b6000602082840312156134bc576134bb613000565b5b60006134ca84828501613256565b91505092915050565b6134dc8161308f565b81146134e757600080fd5b50565b6000813590506134f9816134d3565b92915050565b6000806040838503121561351657613515613000565b5b600061352485828601613256565b9250506020613535858286016134ea565b9150509250929050565b600067ffffffffffffffff82111561355a576135596132df565b5b61356382613114565b9050602081019050919050565b600061358361357e8461353f565b61333f565b90508281526020810184848401111561359f5761359e6132da565b5b6135aa84828561338b565b509392505050565b600082601f8301126135c7576135c66132d5565b5b81356135d7848260208601613570565b91505092915050565b600080600080608085870312156135fa576135f9613000565b5b600061360887828801613256565b945050602061361987828801613256565b935050604061362a878288016131a1565b925050606085013567ffffffffffffffff81111561364b5761364a613005565b5b613657878288016135b2565b91505092959194509250565b6000806040838503121561367a57613679613000565b5b6000613688858286016131a1565b925050602061369985828601613256565b9150509250929050565b600080604083850312156136ba576136b9613000565b5b60006136c885828601613256565b92505060206136d985828601613256565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061372a57607f821691505b60208210810361373d5761373c6136e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137796020836130d0565b915061378482613743565b602082019050919050565b600060208201905081810360008301526137a88161376c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137e5601f836130d0565b91506137f0826137af565b602082019050919050565b60006020820190508181036000830152613814816137d8565b9050919050565b600081905092915050565b50565b600061383660008361381b565b915061384182613826565b600082019050919050565b600061385782613829565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138976014836130d0565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061390782613180565b915061391283613180565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613947576139466138cd565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139886014836130d0565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60006139c982613180565b91506139d483613180565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0d57613a0c6138cd565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a4e6013836130d0565b9150613a5982613a18565b602082019050919050565b60006020820190508181036000830152613a7d81613a41565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613aba6014836130d0565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f4e6f204d6f726520467265652100000000000000000000000000000000000000600082015250565b6000613b26600d836130d0565b9150613b3182613af0565b602082019050919050565b60006020820190508181036000830152613b5581613b19565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613b926014836130d0565b9150613b9d82613b5c565b602082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c24602f836130d0565b9150613c2f82613bc8565b604082019050919050565b60006020820190508181036000830152613c5381613c17565b9050919050565b600081905092915050565b6000613c70826130c5565b613c7a8185613c5a565b9350613c8a8185602086016130e1565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cb881613712565b613cc28186613c5a565b94506001821660008114613cdd5760018114613cee57613d21565b60ff19831686528186019350613d21565b613cf785613c96565b60005b83811015613d1957815481890152600182019150602081019050613cfa565b838801955050505b50505092915050565b6000613d368286613c65565b9150613d428285613c65565b9150613d4e8284613cab565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613db76026836130d0565b9150613dc282613d5b565b604082019050919050565b60006020820190508181036000830152613de681613daa565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e1482613ded565b613e1e8185613df8565b9350613e2e8185602086016130e1565b613e3781613114565b840191505092915050565b6000608082019050613e576000830187613215565b613e646020830186613215565b613e7160408301856132ab565b8181036060830152613e838184613e09565b905095945050505050565b600081519050613e9d81613036565b92915050565b600060208284031215613eb957613eb8613000565b5b6000613ec784828501613e8e565b91505092915050565b6000613edb82613180565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f0d57613f0c6138cd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f5282613180565b9150613f5d83613180565b925082613f6d57613f6c613f18565b5b828204905092915050565b6000613f8382613180565b9150613f8e83613180565b925082821015613fa157613fa06138cd565b5b828203905092915050565b6000613fb782613180565b9150613fc283613180565b925082613fd257613fd1613f18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220795de2e540c51d5cbf26c05b57c666ec619c427019ccaf9db58bdaa69e8804a564736f6c634300080d0033697066733a2f2f516d5459586f57505a75416467547679564638357467447850373639507a795272734a4e475446614247785941582f

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063dc33e6811161006f578063dc33e6811461082a578063e268e4d314610867578063e945971c14610890578063e985e9c5146108b9578063f2fde38b146108f65761023b565b8063b88d4fde14610745578063bc63f02e1461076e578063c7c39ffc14610797578063c87b56dd146107c2578063d5abeb01146107ff5761023b565b8063a035b1fe116100f2578063a035b1fe14610681578063a0712d68146106ac578063a09fa941146106c8578063a22cb465146106f3578063b071401b1461071c5761023b565b8063715018a6146105c05780637ec4a659146105d75780638da5cb5b1461060057806394354fd01461062b57806395d89b41146106565761023b565b806342842e0e116101bc5780635e85d3a3116101805780635e85d3a3146104c957806362b99ad4146104f25780636352211e1461051d5780636f8b44b01461055a57806370a08231146105835761023b565b806342842e0e146103f857806344a0d68a14610421578063453c23101461044a5780635503a0e814610475578063563aaf11146104a05761023b565b806316ba10e01161020357806316ba10e01461033957806318160ddd1461036257806323b872dd1461038d578063333e44e6146103b65780633ccfd60b146103e15761023b565b806301ffc9a71461024057806306fdde031461027d578063081812fc146102a8578063095ea7b3146102e557806313faede61461030e575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190613062565b61091f565b60405161027491906130aa565b60405180910390f35b34801561028957600080fd5b50610292610a01565b60405161029f919061315e565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906131b6565b610a93565b6040516102dc9190613224565b60405180910390f35b3480156102f157600080fd5b5061030c6004803603810190610307919061326b565b610b0f565b005b34801561031a57600080fd5b50610323610c19565b60405161033091906132ba565b60405180910390f35b34801561034557600080fd5b50610360600480360381019061035b919061340a565b610c1f565b005b34801561036e57600080fd5b50610377610cb5565b60405161038491906132ba565b60405180910390f35b34801561039957600080fd5b506103b460048036038101906103af9190613453565b610ccc565b005b3480156103c257600080fd5b506103cb610cdc565b6040516103d891906132ba565b60405180910390f35b3480156103ed57600080fd5b506103f6610ce2565b005b34801561040457600080fd5b5061041f600480360381019061041a9190613453565b610e33565b005b34801561042d57600080fd5b50610448600480360381019061044391906131b6565b610e53565b005b34801561045657600080fd5b5061045f610ed9565b60405161046c91906132ba565b60405180910390f35b34801561048157600080fd5b5061048a610edf565b604051610497919061315e565b60405180910390f35b3480156104ac57600080fd5b506104c760048036038101906104c291906131b6565b610f6d565b005b3480156104d557600080fd5b506104f060048036038101906104eb91906131b6565b610ff3565b005b3480156104fe57600080fd5b50610507611079565b604051610514919061315e565b60405180910390f35b34801561052957600080fd5b50610544600480360381019061053f91906131b6565b611107565b6040516105519190613224565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c91906131b6565b61111d565b005b34801561058f57600080fd5b506105aa60048036038101906105a591906134a6565b6111a3565b6040516105b791906132ba565b60405180910390f35b3480156105cc57600080fd5b506105d5611272565b005b3480156105e357600080fd5b506105fe60048036038101906105f9919061340a565b6112fa565b005b34801561060c57600080fd5b50610615611390565b6040516106229190613224565b60405180910390f35b34801561063757600080fd5b506106406113ba565b60405161064d91906132ba565b60405180910390f35b34801561066257600080fd5b5061066b6113c0565b604051610678919061315e565b60405180910390f35b34801561068d57600080fd5b50610696611452565b6040516106a391906132ba565b60405180910390f35b6106c660048036038101906106c191906131b6565b611458565b005b3480156106d457600080fd5b506106dd6116a5565b6040516106ea91906132ba565b60405180910390f35b3480156106ff57600080fd5b5061071a600480360381019061071591906134ff565b6116ab565b005b34801561072857600080fd5b50610743600480360381019061073e91906131b6565b611822565b005b34801561075157600080fd5b5061076c600480360381019061076791906135e0565b6118a8565b005b34801561077a57600080fd5b5061079560048036038101906107909190613663565b611924565b005b3480156107a357600080fd5b506107ac611a58565b6040516107b991906132ba565b60405180910390f35b3480156107ce57600080fd5b506107e960048036038101906107e491906131b6565b611a5e565b6040516107f6919061315e565b60405180910390f35b34801561080b57600080fd5b50610814611b08565b60405161082191906132ba565b60405180910390f35b34801561083657600080fd5b50610851600480360381019061084c91906134a6565b611b0e565b60405161085e91906132ba565b60405180910390f35b34801561087357600080fd5b5061088e600480360381019061088991906131b6565b611b20565b005b34801561089c57600080fd5b506108b760048036038101906108b291906131b6565b611ba6565b005b3480156108c557600080fd5b506108e060048036038101906108db91906136a3565b611c2c565b6040516108ed91906130aa565b60405180910390f35b34801561090257600080fd5b5061091d600480360381019061091891906134a6565b611cc0565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109ea57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fa57506109f982611db7565b5b9050919050565b606060028054610a1090613712565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3c90613712565b8015610a895780601f10610a5e57610100808354040283529160200191610a89565b820191906000526020600020905b815481529060010190602001808311610a6c57829003601f168201915b5050505050905090565b6000610a9e82611e21565b610ad4576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b1a82611107565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b81576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ba0611e6f565b73ffffffffffffffffffffffffffffffffffffffff1614158015610bd25750610bd081610bcb611e6f565b611c2c565b155b15610c09576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c14838383611e77565b505050565b600c5481565b610c27611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610c45611390565b73ffffffffffffffffffffffffffffffffffffffff1614610c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c929061378f565b60405180910390fd5b8060139080519060200190610cb1929190612f10565b5050565b6000610cbf611f29565b6001546000540303905090565b610cd7838383611f32565b505050565b600e5481565b610cea611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610d08611390565b73ffffffffffffffffffffffffffffffffffffffff1614610d5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d559061378f565b60405180910390fd5b600260095403610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906137fb565b60405180910390fd5b60026009819055506000610db5611390565b73ffffffffffffffffffffffffffffffffffffffff1647604051610dd89061384c565b60006040518083038185875af1925050503d8060008114610e15576040519150601f19603f3d011682016040523d82523d6000602084013e610e1a565b606091505b5050905080610e2857600080fd5b506001600981905550565b610e4e838383604051806020016040528060008152506118a8565b505050565b610e5b611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610e79611390565b73ffffffffffffffffffffffffffffffffffffffff1614610ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec69061378f565b60405180910390fd5b80600b8190555050565b600d5481565b60138054610eec90613712565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1890613712565b8015610f655780601f10610f3a57610100808354040283529160200191610f65565b820191906000526020600020905b815481529060010190602001808311610f4857829003601f168201915b505050505081565b610f75611e6f565b73ffffffffffffffffffffffffffffffffffffffff16610f93611390565b73ffffffffffffffffffffffffffffffffffffffff1614610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe09061378f565b60405180910390fd5b80600e8190555050565b610ffb611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611019611390565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110669061378f565b60405180910390fd5b8060118190555050565b6012805461108690613712565b80601f01602080910402602001604051908101604052809291908181526020018280546110b290613712565b80156110ff5780601f106110d4576101008083540402835291602001916110ff565b820191906000526020600020905b8154815290600101906020018083116110e257829003601f168201915b505050505081565b6000611112826123e6565b600001519050919050565b611125611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611143611390565b73ffffffffffffffffffffffffffffffffffffffff1614611199576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111909061378f565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361120a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61127a611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611298611390565b73ffffffffffffffffffffffffffffffffffffffff16146112ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e59061378f565b60405180910390fd5b6112f86000612675565b565b611302611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611320611390565b73ffffffffffffffffffffffffffffffffffffffff1614611376576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136d9061378f565b60405180910390fd5b806012908051906020019061138c929190612f10565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546113cf90613712565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90613712565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b5050505050905090565b600b5481565b8060008111801561146b5750600f548111155b6114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a1906138ad565b60405180910390fd5b600a54816114b6610cb5565b6114c091906138fc565b1115611501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f89061399e565b60405180910390fd5b8180600c5461151091906139be565b341015611552576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154990613a64565b60405180910390fd5b600b54600c819055506001600e5461156a91906138fc565b83611573610cb5565b61157d91906138fc565b1015611637576000600c81905550601054831115801561159f57506000600c54145b6115de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d590613ad0565b60405180910390fd5b601154836115eb33611b0e565b6115f591906138fc565b1115611636576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162d90613b3c565b60405180910390fd5b5b600d548361164433611b0e565b61164e91906138fc565b111561168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690613ba8565b60405180910390fd5b6116a061169a611e6f565b8461273b565b505050565b60115481565b6116b3611e6f565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611717576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611724611e6f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117d1611e6f565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161181691906130aa565b60405180910390a35050565b61182a611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611848611390565b73ffffffffffffffffffffffffffffffffffffffff161461189e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118959061378f565b60405180910390fd5b80600f8190555050565b6118b3848484611f32565b6118d28373ffffffffffffffffffffffffffffffffffffffff16612759565b80156118e757506118e58484848461277c565b155b1561191e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b816000811180156119375750600f548111155b611976576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196d906138ad565b60405180910390fd5b600a5481611982610cb5565b61198c91906138fc565b11156119cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c49061399e565b60405180910390fd5b6119d5611e6f565b73ffffffffffffffffffffffffffffffffffffffff166119f3611390565b73ffffffffffffffffffffffffffffffffffffffff1614611a49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a409061378f565b60405180910390fd5b611a53828461273b565b505050565b60105481565b6060611a6982611e21565b611aa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9f90613c3a565b60405180910390fd5b6000611ab26128cc565b90506000815111611ad25760405180602001604052806000815250611b00565b80611adc8461295e565b6013604051602001611af093929190613d2a565b6040516020818303038152906040525b915050919050565b600a5481565b6000611b1982612abe565b9050919050565b611b28611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611b46611390565b73ffffffffffffffffffffffffffffffffffffffff1614611b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b939061378f565b60405180910390fd5b80600d8190555050565b611bae611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611bcc611390565b73ffffffffffffffffffffffffffffffffffffffff1614611c22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c199061378f565b60405180910390fd5b8060108190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611cc8611e6f565b73ffffffffffffffffffffffffffffffffffffffff16611ce6611390565b73ffffffffffffffffffffffffffffffffffffffff1614611d3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d339061378f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da290613dcd565b60405180910390fd5b611db481612675565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611e2c611f29565b11158015611e3b575060005482105b8015611e68575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611f3d826123e6565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611fc9611e6f565b73ffffffffffffffffffffffffffffffffffffffff161480611ff85750611ff785611ff2611e6f565b611c2c565b5b8061203d5750612006611e6f565b73ffffffffffffffffffffffffffffffffffffffff1661202584610a93565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612076576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036120dc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120e98585856001612b28565b6120f560008487611e77565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361237457600054821461237357878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46123df8585856001612b2e565b5050505050565b6123ee612f96565b6000829050806123fc611f29565b1115801561240b575060005481105b1561263e576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161263c57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612520578092505050612670565b5b60011561263b57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612636578092505050612670565b612521565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612755828260405180602001604052806000815250612b34565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127a2611e6f565b8786866040518563ffffffff1660e01b81526004016127c49493929190613e42565b6020604051808303816000875af192505050801561280057506040513d601f19601f820116820180604052508101906127fd9190613ea3565b60015b612879573d8060008114612830576040519150601f19603f3d011682016040523d82523d6000602084013e612835565b606091505b506000815103612871576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601280546128db90613712565b80601f016020809104026020016040519081016040528092919081815260200182805461290790613712565b80156129545780601f1061292957610100808354040283529160200191612954565b820191906000526020600020905b81548152906001019060200180831161293757829003601f168201915b5050505050905090565b6060600082036129a5576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ab9565b600082905060005b600082146129d75780806129c090613ed0565b915050600a826129d09190613f47565b91506129ad565b60008167ffffffffffffffff8111156129f3576129f26132df565b5b6040519080825280601f01601f191660200182016040528015612a255781602001600182028036833780820191505090505b5090505b60008514612ab257600182612a3e9190613f78565b9150600a85612a4d9190613fac565b6030612a5991906138fc565b60f81b818381518110612a6f57612a6e613fdd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612aab9190613f47565b9450612a29565b8093505050505b919050565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612b418383836001612b46565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612bb2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612bec576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612bf96000868387612b28565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612dc35750612dc28773ffffffffffffffffffffffffffffffffffffffff16612759565b5b15612e88575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612e38600088848060010195508861277c565b612e6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612dc9578260005414612e8357600080fd5b612ef3565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612e89575b816000819055505050612f096000868387612b2e565b5050505050565b828054612f1c90613712565b90600052602060002090601f016020900481019282612f3e5760008555612f85565b82601f10612f5757805160ff1916838001178555612f85565b82800160010185558215612f85579182015b82811115612f84578251825591602001919060010190612f69565b5b509050612f929190612fd9565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ff2576000816000905550600101612fda565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61303f8161300a565b811461304a57600080fd5b50565b60008135905061305c81613036565b92915050565b60006020828403121561307857613077613000565b5b60006130868482850161304d565b91505092915050565b60008115159050919050565b6130a48161308f565b82525050565b60006020820190506130bf600083018461309b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156130ff5780820151818401526020810190506130e4565b8381111561310e576000848401525b50505050565b6000601f19601f8301169050919050565b6000613130826130c5565b61313a81856130d0565b935061314a8185602086016130e1565b61315381613114565b840191505092915050565b600060208201905081810360008301526131788184613125565b905092915050565b6000819050919050565b61319381613180565b811461319e57600080fd5b50565b6000813590506131b08161318a565b92915050565b6000602082840312156131cc576131cb613000565b5b60006131da848285016131a1565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061320e826131e3565b9050919050565b61321e81613203565b82525050565b60006020820190506132396000830184613215565b92915050565b61324881613203565b811461325357600080fd5b50565b6000813590506132658161323f565b92915050565b6000806040838503121561328257613281613000565b5b600061329085828601613256565b92505060206132a1858286016131a1565b9150509250929050565b6132b481613180565b82525050565b60006020820190506132cf60008301846132ab565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61331782613114565b810181811067ffffffffffffffff82111715613336576133356132df565b5b80604052505050565b6000613349612ff6565b9050613355828261330e565b919050565b600067ffffffffffffffff821115613375576133746132df565b5b61337e82613114565b9050602081019050919050565b82818337600083830152505050565b60006133ad6133a88461335a565b61333f565b9050828152602081018484840111156133c9576133c86132da565b5b6133d484828561338b565b509392505050565b600082601f8301126133f1576133f06132d5565b5b813561340184826020860161339a565b91505092915050565b6000602082840312156134205761341f613000565b5b600082013567ffffffffffffffff81111561343e5761343d613005565b5b61344a848285016133dc565b91505092915050565b60008060006060848603121561346c5761346b613000565b5b600061347a86828701613256565b935050602061348b86828701613256565b925050604061349c868287016131a1565b9150509250925092565b6000602082840312156134bc576134bb613000565b5b60006134ca84828501613256565b91505092915050565b6134dc8161308f565b81146134e757600080fd5b50565b6000813590506134f9816134d3565b92915050565b6000806040838503121561351657613515613000565b5b600061352485828601613256565b9250506020613535858286016134ea565b9150509250929050565b600067ffffffffffffffff82111561355a576135596132df565b5b61356382613114565b9050602081019050919050565b600061358361357e8461353f565b61333f565b90508281526020810184848401111561359f5761359e6132da565b5b6135aa84828561338b565b509392505050565b600082601f8301126135c7576135c66132d5565b5b81356135d7848260208601613570565b91505092915050565b600080600080608085870312156135fa576135f9613000565b5b600061360887828801613256565b945050602061361987828801613256565b935050604061362a878288016131a1565b925050606085013567ffffffffffffffff81111561364b5761364a613005565b5b613657878288016135b2565b91505092959194509250565b6000806040838503121561367a57613679613000565b5b6000613688858286016131a1565b925050602061369985828601613256565b9150509250929050565b600080604083850312156136ba576136b9613000565b5b60006136c885828601613256565b92505060206136d985828601613256565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061372a57607f821691505b60208210810361373d5761373c6136e3565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137796020836130d0565b915061378482613743565b602082019050919050565b600060208201905081810360008301526137a88161376c565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006137e5601f836130d0565b91506137f0826137af565b602082019050919050565b60006020820190508181036000830152613814816137d8565b9050919050565b600081905092915050565b50565b600061383660008361381b565b915061384182613826565b600082019050919050565b600061385782613829565b9150819050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b60006138976014836130d0565b91506138a282613861565b602082019050919050565b600060208201905081810360008301526138c68161388a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061390782613180565b915061391283613180565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613947576139466138cd565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006139886014836130d0565b915061399382613952565b602082019050919050565b600060208201905081810360008301526139b78161397b565b9050919050565b60006139c982613180565b91506139d483613180565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a0d57613a0c6138cd565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613a4e6013836130d0565b9150613a5982613a18565b602082019050919050565b60006020820190508181036000830152613a7d81613a41565b9050919050565b7f546f6f206d616e792046726565206d696e747321000000000000000000000000600082015250565b6000613aba6014836130d0565b9150613ac582613a84565b602082019050919050565b60006020820190508181036000830152613ae981613aad565b9050919050565b7f4e6f204d6f726520467265652100000000000000000000000000000000000000600082015250565b6000613b26600d836130d0565b9150613b3182613af0565b602082019050919050565b60006020820190508181036000830152613b5581613b19565b9050919050565b7f546f6f206d616e79207065722077616c6c657421000000000000000000000000600082015250565b6000613b926014836130d0565b9150613b9d82613b5c565b602082019050919050565b60006020820190508181036000830152613bc181613b85565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613c24602f836130d0565b9150613c2f82613bc8565b604082019050919050565b60006020820190508181036000830152613c5381613c17565b9050919050565b600081905092915050565b6000613c70826130c5565b613c7a8185613c5a565b9350613c8a8185602086016130e1565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613cb881613712565b613cc28186613c5a565b94506001821660008114613cdd5760018114613cee57613d21565b60ff19831686528186019350613d21565b613cf785613c96565b60005b83811015613d1957815481890152600182019150602081019050613cfa565b838801955050505b50505092915050565b6000613d368286613c65565b9150613d428285613c65565b9150613d4e8284613cab565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613db76026836130d0565b9150613dc282613d5b565b604082019050919050565b60006020820190508181036000830152613de681613daa565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613e1482613ded565b613e1e8185613df8565b9350613e2e8185602086016130e1565b613e3781613114565b840191505092915050565b6000608082019050613e576000830187613215565b613e646020830186613215565b613e7160408301856132ab565b8181036060830152613e838184613e09565b905095945050505050565b600081519050613e9d81613036565b92915050565b600060208284031215613eb957613eb8613000565b5b6000613ec784828501613e8e565b91505092915050565b6000613edb82613180565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f0d57613f0c6138cd565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613f5282613180565b9150613f5d83613180565b925082613f6d57613f6c613f18565b5b828204905092915050565b6000613f8382613180565b9150613f8e83613180565b925082821015613fa157613fa06138cd565b5b828203905092915050565b6000613fb782613180565b9150613fc283613180565b925082613fd257613fd1613f18565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea2646970667358221220795de2e540c51d5cbf26c05b57c666ec619c427019ccaf9db58bdaa69e8804a564736f6c634300080d0033

Deployed Bytecode Sourcemap

47986:3470:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30138:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33251:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34754:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34317:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48160:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50708:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29387:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35619:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48222:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50814:150;;;;;;;;;;;;;:::i;:::-;;35860:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49740:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48184:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48465;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50137:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50338:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48378:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33059:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49821:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30507:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7896:103;;;;;;;;;;;;;:::i;:::-;;50602:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7245:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48258:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33420:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48121:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48940:523;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48334:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35030:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50466:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36116:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49471:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48300:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51080:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48085:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49625:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50025:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49921:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35388:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8154:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30138:305;30240:4;30292:25;30277:40;;;:11;:40;;;;:105;;;;30349:33;30334:48;;;:11;:48;;;;30277:105;:158;;;;30399:36;30423:11;30399:23;:36::i;:::-;30277:158;30257:178;;30138:305;;;:::o;33251:100::-;33305:13;33338:5;33331:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33251:100;:::o;34754:204::-;34822:7;34847:16;34855:7;34847;:16::i;:::-;34842:64;;34872:34;;;;;;;;;;;;;;34842:64;34926:15;:24;34942:7;34926:24;;;;;;;;;;;;;;;;;;;;;34919:31;;34754:204;;;:::o;34317:371::-;34390:13;34406:24;34422:7;34406:15;:24::i;:::-;34390:40;;34451:5;34445:11;;:2;:11;;;34441:48;;34465:24;;;;;;;;;;;;;;34441:48;34522:5;34506:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34532:37;34549:5;34556:12;:10;:12::i;:::-;34532:16;:37::i;:::-;34531:38;34506:63;34502:138;;;34593:35;;;;;;;;;;;;;;34502:138;34652:28;34661:2;34665:7;34674:5;34652:8;:28::i;:::-;34379:309;34317:371;;:::o;48160:19::-;;;;:::o;50708:100::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50792:10:::1;50780:9;:22;;;;;;;;;;;;:::i;:::-;;50708:100:::0;:::o;29387:303::-;29431:7;29656:15;:13;:15::i;:::-;29641:12;;29625:13;;:28;:46;29618:53;;29387:303;:::o;35619:170::-;35753:28;35763:4;35769:2;35773:7;35753:9;:28::i;:::-;35619:170;;;:::o;48222:31::-;;;;:::o;50814:150::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2219:1:::1;2817:7;;:19:::0;2809:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2219:1;2950:7;:18;;;;50872:7:::2;50893;:5;:7::i;:::-;50885:21;;50914;50885:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50871:69;;;50955:2;50947:11;;;::::0;::::2;;50864:100;2175:1:::1;3129:7;:22;;;;50814:150::o:0;35860:185::-;35998:39;36015:4;36021:2;36025:7;35998:39;;;;;;;;;;;;:16;:39::i;:::-;35860:185;;;:::o;49740:75::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49804:5:::1;49796;:13;;;;49740:75:::0;:::o;48184:33::-;;;;:::o;48465:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50137:94::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50215:10:::1;50203:9;:22;;;;50137:94:::0;:::o;50338:122::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50437:17:::1;50418:16;:36;;;;50338:122:::0;:::o;48378:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;33059:125::-;33123:7;33150:21;33163:7;33150:12;:21::i;:::-;:26;;;33143:33;;33059:125;;;:::o;49821:94::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49899:10:::1;49887:9;:22;;;;49821:94:::0;:::o;30507:206::-;30571:7;30612:1;30595:19;;:5;:19;;;30591:60;;30623:28;;;;;;;;;;;;;;30591:60;30677:12;:19;30690:5;30677:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30669:36;;30662:43;;30507:206;;;:::o;7896:103::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7961:30:::1;7988:1;7961:18;:30::i;:::-;7896:103::o:0;50602:100::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50686:10:::1;50674:9;:22;;;;;;;;;;;;:::i;:::-;;50602:100:::0;:::o;7245:87::-;7291:7;7318:6;;;;;;;;;;;7311:13;;7245:87;:::o;48258:37::-;;;;:::o;33420:104::-;33476:13;33509:7;33502:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33420:104;:::o;48121:34::-;;;;:::o;48940:523::-;49005:11;48637:1;48623:11;:15;:52;;;;;48657:18;;48642:11;:33;;48623:52;48615:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48746:9;;48731:11;48715:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48707:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;49038:11:::1;48885;48878:4;;:18;;;;:::i;:::-;48865:9;:31;;48857:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;49065:5:::2;;49058:4;:12;;;;49122:1;49110:9;;:13;;;;:::i;:::-;49096:11;49080:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:43;49077:245;;;49141:1;49134:4;:8;;;;49174:10;;49159:11;:25;;:38;;;;;49196:1;49188:4;;:9;49159:38;49151:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;49281:16;;49266:11;49239:24;49252:10;49239:12;:24::i;:::-;:38;;;;:::i;:::-;:58;;49231:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49077:245;49378:12;;49363:11;49336:24;49349:10;49336:12;:24::i;:::-;:38;;;;:::i;:::-;:54;;49328:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;49421:36;49431:12;:10;:12::i;:::-;49445:11;49421:9;:36::i;:::-;48787:1:::1;48940:523:::0;;:::o;48334:35::-;;;;:::o;35030:287::-;35141:12;:10;:12::i;:::-;35129:24;;:8;:24;;;35125:54;;35162:17;;;;;;;;;;;;;;35125:54;35237:8;35192:18;:32;35211:12;:10;:12::i;:::-;35192:32;;;;;;;;;;;;;;;:42;35225:8;35192:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;35290:8;35261:48;;35276:12;:10;:12::i;:::-;35261:48;;;35300:8;35261:48;;;;;;:::i;:::-;;;;;;;;35030:287;;:::o;50466:130::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50571:19:::1;50550:18;:40;;;;50466:130:::0;:::o;36116:369::-;36283:28;36293:4;36299:2;36303:7;36283:9;:28::i;:::-;36326:15;:2;:13;;;:15::i;:::-;:76;;;;;36346:56;36377:4;36383:2;36387:7;36396:5;36346:30;:56::i;:::-;36345:57;36326:76;36322:156;;;36426:40;;;;;;;;;;;;;;36322:156;36116:369;;;;:::o;49471:148::-;49550:11;48637:1;48623:11;:15;:52;;;;;48657:18;;48642:11;:33;;48623:52;48615:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48746:9;;48731:11;48715:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48707:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7476:12:::1;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49580:33:::2;49590:9;49601:11;49580:9;:33::i;:::-;49471:148:::0;;;:::o;48300:29::-;;;;:::o;51080:373::-;51154:13;51184:17;51192:8;51184:7;:17::i;:::-;51176:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;51262:28;51293:10;:8;:10::i;:::-;51262:41;;51348:1;51323:14;51317:28;:32;:130;;;;;;;;;;;;;;;;;51385:14;51401:19;:8;:17;:19::i;:::-;51422:9;51368:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51317:130;51310:137;;;51080:373;;;:::o;48085:31::-;;;;:::o;49625:107::-;49683:7;49706:20;49720:5;49706:13;:20::i;:::-;49699:27;;49625:107;;;:::o;50025:106::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50112:13:::1;50097:12;:28;;;;50025:106:::0;:::o;49921:98::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50002:11:::1;49989:10;:24;;;;49921:98:::0;:::o;35388:164::-;35485:4;35509:18;:25;35528:5;35509:25;;;;;;;;;;;;;;;:35;35535:8;35509:35;;;;;;;;;;;;;;;;;;;;;;;;;35502:42;;35388:164;;;;:::o;8154:201::-;7476:12;:10;:12::i;:::-;7465:23;;:7;:5;:7::i;:::-;:23;;;7457:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8263:1:::1;8243:22;;:8;:22;;::::0;8235:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8319:28;8338:8;8319:18;:28::i;:::-;8154:201:::0;:::o;20029:157::-;20114:4;20153:25;20138:40;;;:11;:40;;;;20131:47;;20029:157;;;:::o;36740:174::-;36797:4;36840:7;36821:15;:13;:15::i;:::-;:26;;:53;;;;;36861:13;;36851:7;:23;36821:53;:85;;;;;36879:11;:20;36891:7;36879:20;;;;;;;;;;;:27;;;;;;;;;;;;36878:28;36821:85;36814:92;;36740:174;;;:::o;5969:98::-;6022:7;6049:10;6042:17;;5969:98;:::o;44897:196::-;45039:2;45012:15;:24;45028:7;45012:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;45077:7;45073:2;45057:28;;45066:5;45057:28;;;;;;;;;;;;44897:196;;;:::o;50237:95::-;50302:7;50325:1;50318:8;;50237:95;:::o;39840:2130::-;39955:35;39993:21;40006:7;39993:12;:21::i;:::-;39955:59;;40053:4;40031:26;;:13;:18;;;:26;;;40027:67;;40066:28;;;;;;;;;;;;;;40027:67;40107:22;40149:4;40133:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;40170:36;40187:4;40193:12;:10;:12::i;:::-;40170:16;:36::i;:::-;40133:73;:126;;;;40247:12;:10;:12::i;:::-;40223:36;;:20;40235:7;40223:11;:20::i;:::-;:36;;;40133:126;40107:153;;40278:17;40273:66;;40304:35;;;;;;;;;;;;;;40273:66;40368:1;40354:16;;:2;:16;;;40350:52;;40379:23;;;;;;;;;;;;;;40350:52;40415:43;40437:4;40443:2;40447:7;40456:1;40415:21;:43::i;:::-;40523:35;40540:1;40544:7;40553:4;40523:8;:35::i;:::-;40884:1;40854:12;:18;40867:4;40854:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40928:1;40900:12;:16;40913:2;40900:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40946:31;40980:11;:20;40992:7;40980:20;;;;;;;;;;;40946:54;;41031:2;41015:8;:13;;;:18;;;;;;;;;;;;;;;;;;41081:15;41048:8;:23;;;:49;;;;;;;;;;;;;;;;;;41349:19;41381:1;41371:7;:11;41349:33;;41397:31;41431:11;:24;41443:11;41431:24;;;;;;;;;;;41397:58;;41499:1;41474:27;;:8;:13;;;;;;;;;;;;:27;;;41470:384;;41684:13;;41669:11;:28;41665:174;;41738:4;41722:8;:13;;;:20;;;;;;;;;;;;;;;;;;41791:13;:28;;;41765:8;:23;;;:54;;;;;;;;;;;;;;;;;;41665:174;41470:384;40829:1036;;;41901:7;41897:2;41882:27;;41891:4;41882:27;;;;;;;;;;;;41920:42;41941:4;41947:2;41951:7;41960:1;41920:20;:42::i;:::-;39944:2026;;39840:2130;;;:::o;31888:1109::-;31950:21;;:::i;:::-;31984:12;31999:7;31984:22;;32067:4;32048:15;:13;:15::i;:::-;:23;;:47;;;;;32082:13;;32075:4;:20;32048:47;32044:886;;;32116:31;32150:11;:17;32162:4;32150:17;;;;;;;;;;;32116:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32191:9;:16;;;32186:729;;32262:1;32236:28;;:9;:14;;;:28;;;32232:101;;32300:9;32293:16;;;;;;32232:101;32635:261;32642:4;32635:261;;;32675:6;;;;;;;;32720:11;:17;32732:4;32720:17;;;;;;;;;;;32708:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32794:1;32768:28;;:9;:14;;;:28;;;32764:109;;32836:9;32829:16;;;;;;32764:109;32635:261;;;32186:729;32097:833;32044:886;32958:31;;;;;;;;;;;;;;31888:1109;;;;:::o;8515:191::-;8589:16;8608:6;;;;;;;;;;;8589:25;;8634:8;8625:6;;:17;;;;;;;;;;;;;;;;;;8689:8;8658:40;;8679:8;8658:40;;;;;;;;;;;;8578:128;8515:191;:::o;36922:104::-;36991:27;37001:2;37005:8;36991:27;;;;;;;;;;;;:9;:27::i;:::-;36922:104;;:::o;9946:326::-;10006:4;10263:1;10241:7;:19;;;:23;10234:30;;9946:326;;;:::o;45585:667::-;45748:4;45785:2;45769:36;;;45806:12;:10;:12::i;:::-;45820:4;45826:7;45835:5;45769:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45765:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46020:1;46003:6;:13;:18;45999:235;;46049:40;;;;;;;;;;;;;;45999:235;46192:6;46186:13;46177:6;46173:2;46169:15;46162:38;45765:480;45898:45;;;45888:55;;;:6;:55;;;;45881:62;;;45585:667;;;;;;:::o;50970:104::-;51030:13;51059:9;51052:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50970:104;:::o;3531:723::-;3587:13;3817:1;3808:5;:10;3804:53;;3835:10;;;;;;;;;;;;;;;;;;;;;3804:53;3867:12;3882:5;3867:20;;3898:14;3923:78;3938:1;3930:4;:9;3923:78;;3956:8;;;;;:::i;:::-;;;;3987:2;3979:10;;;;;:::i;:::-;;;3923:78;;;4011:19;4043:6;4033:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4011:39;;4061:154;4077:1;4068:5;:10;4061:154;;4105:1;4095:11;;;;;:::i;:::-;;;4172:2;4164:5;:10;;;;:::i;:::-;4151:2;:24;;;;:::i;:::-;4138:39;;4121:6;4128;4121:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4201:2;4192:11;;;;;:::i;:::-;;;4061:154;;;4239:6;4225:21;;;;;3531:723;;;;:::o;30795:137::-;30856:7;30891:12;:19;30904:5;30891:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;30883:41;;30876:48;;30795:137;;;:::o;46900:159::-;;;;;:::o;47718:158::-;;;;;:::o;37389:163::-;37512:32;37518:2;37522:8;37532:5;37539:4;37512:5;:32::i;:::-;37389:163;;;:::o;37811:1775::-;37950:20;37973:13;;37950:36;;38015:1;38001:16;;:2;:16;;;37997:48;;38026:19;;;;;;;;;;;;;;37997:48;38072:1;38060:8;:13;38056:44;;38082:18;;;;;;;;;;;;;;38056:44;38113:61;38143:1;38147:2;38151:12;38165:8;38113:21;:61::i;:::-;38486:8;38451:12;:16;38464:2;38451:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38550:8;38510:12;:16;38523:2;38510:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38609:2;38576:11;:25;38588:12;38576:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38676:15;38626:11;:25;38638:12;38626:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38709:20;38732:12;38709:35;;38759:11;38788:8;38773:12;:23;38759:37;;38817:4;:23;;;;;38825:15;:2;:13;;;:15::i;:::-;38817:23;38813:641;;;38861:314;38917:12;38913:2;38892:38;;38909:1;38892:38;;;;;;;;;;;;38958:69;38997:1;39001:2;39005:14;;;;;;39021:5;38958:30;:69::i;:::-;38953:174;;39063:40;;;;;;;;;;;;;;38953:174;39170:3;39154:12;:19;38861:314;;39256:12;39239:13;;:29;39235:43;;39270:8;;;39235:43;38813:641;;;39319:120;39375:14;;;;;;39371:2;39350:40;;39367:1;39350:40;;;;;;;;;;;;39434:3;39418:12;:19;39319:120;;38813:641;39484:12;39468:13;:28;;;;38426:1082;;39518:60;39547:1;39551:2;39555:12;39569:8;39518:20;:60::i;:::-;37939:1647;37811:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:::-;12189:6;12197;12246:2;12234:9;12225:7;12221:23;12217:32;12214:119;;;12252:79;;:::i;:::-;12214:119;12372:1;12397:53;12442:7;12433:6;12422:9;12418:22;12397:53;:::i;:::-;12387:63;;12343:117;12499:2;12525:53;12570:7;12561:6;12550:9;12546:22;12525:53;:::i;:::-;12515:63;;12470:118;12121:474;;;;;:::o;12601:180::-;12649:77;12646:1;12639:88;12746:4;12743:1;12736:15;12770:4;12767:1;12760:15;12787:320;12831:6;12868:1;12862:4;12858:12;12848:22;;12915:1;12909:4;12905:12;12936:18;12926:81;;12992:4;12984:6;12980:17;12970:27;;12926:81;13054:2;13046:6;13043:14;13023:18;13020:38;13017:84;;13073:18;;:::i;:::-;13017:84;12838:269;12787:320;;;:::o;13113:182::-;13253:34;13249:1;13241:6;13237:14;13230:58;13113:182;:::o;13301:366::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:419::-;13839:4;13877:2;13866:9;13862:18;13854:26;;13926:9;13920:4;13916:20;13912:1;13901:9;13897:17;13890:47;13954:131;14080:4;13954:131;:::i;:::-;13946:139;;13673:419;;;:::o;14098:181::-;14238:33;14234:1;14226:6;14222:14;14215:57;14098:181;:::o;14285:366::-;14427:3;14448:67;14512:2;14507:3;14448:67;:::i;:::-;14441:74;;14524:93;14613:3;14524:93;:::i;:::-;14642:2;14637:3;14633:12;14626:19;;14285:366;;;:::o;14657:419::-;14823:4;14861:2;14850:9;14846:18;14838:26;;14910:9;14904:4;14900:20;14896:1;14885:9;14881:17;14874:47;14938:131;15064:4;14938:131;:::i;:::-;14930:139;;14657:419;;;:::o;15082:147::-;15183:11;15220:3;15205:18;;15082:147;;;;:::o;15235:114::-;;:::o;15355:398::-;15514:3;15535:83;15616:1;15611:3;15535:83;:::i;:::-;15528:90;;15627:93;15716:3;15627:93;:::i;:::-;15745:1;15740:3;15736:11;15729:18;;15355:398;;;:::o;15759:379::-;15943:3;15965:147;16108:3;15965:147;:::i;:::-;15958:154;;16129:3;16122:10;;15759:379;;;:::o;16144:170::-;16284:22;16280:1;16272:6;16268:14;16261:46;16144:170;:::o;16320:366::-;16462:3;16483:67;16547:2;16542:3;16483:67;:::i;:::-;16476:74;;16559:93;16648:3;16559:93;:::i;:::-;16677:2;16672:3;16668:12;16661:19;;16320:366;;;:::o;16692:419::-;16858:4;16896:2;16885:9;16881:18;16873:26;;16945:9;16939:4;16935:20;16931:1;16920:9;16916:17;16909:47;16973:131;17099:4;16973:131;:::i;:::-;16965:139;;16692:419;;;:::o;17117:180::-;17165:77;17162:1;17155:88;17262:4;17259:1;17252:15;17286:4;17283:1;17276:15;17303:305;17343:3;17362:20;17380:1;17362:20;:::i;:::-;17357:25;;17396:20;17414:1;17396:20;:::i;:::-;17391:25;;17550:1;17482:66;17478:74;17475:1;17472:81;17469:107;;;17556:18;;:::i;:::-;17469:107;17600:1;17597;17593:9;17586:16;;17303:305;;;;:::o;17614:170::-;17754:22;17750:1;17742:6;17738:14;17731:46;17614:170;:::o;17790:366::-;17932:3;17953:67;18017:2;18012:3;17953:67;:::i;:::-;17946:74;;18029:93;18118:3;18029:93;:::i;:::-;18147:2;18142:3;18138:12;18131:19;;17790:366;;;:::o;18162:419::-;18328:4;18366:2;18355:9;18351:18;18343:26;;18415:9;18409:4;18405:20;18401:1;18390:9;18386:17;18379:47;18443:131;18569:4;18443:131;:::i;:::-;18435:139;;18162:419;;;:::o;18587:348::-;18627:7;18650:20;18668:1;18650:20;:::i;:::-;18645:25;;18684:20;18702:1;18684:20;:::i;:::-;18679:25;;18872:1;18804:66;18800:74;18797:1;18794:81;18789:1;18782:9;18775:17;18771:105;18768:131;;;18879:18;;:::i;:::-;18768:131;18927:1;18924;18920:9;18909:20;;18587:348;;;;:::o;18941:169::-;19081:21;19077:1;19069:6;19065:14;19058:45;18941:169;:::o;19116:366::-;19258:3;19279:67;19343:2;19338:3;19279:67;:::i;:::-;19272:74;;19355:93;19444:3;19355:93;:::i;:::-;19473:2;19468:3;19464:12;19457:19;;19116:366;;;:::o;19488:419::-;19654:4;19692:2;19681:9;19677:18;19669:26;;19741:9;19735:4;19731:20;19727:1;19716:9;19712:17;19705:47;19769:131;19895:4;19769:131;:::i;:::-;19761:139;;19488:419;;;:::o;19913:170::-;20053:22;20049:1;20041:6;20037:14;20030:46;19913:170;:::o;20089:366::-;20231:3;20252:67;20316:2;20311:3;20252:67;:::i;:::-;20245:74;;20328:93;20417:3;20328:93;:::i;:::-;20446:2;20441:3;20437:12;20430:19;;20089:366;;;:::o;20461:419::-;20627:4;20665:2;20654:9;20650:18;20642:26;;20714:9;20708:4;20704:20;20700:1;20689:9;20685:17;20678:47;20742:131;20868:4;20742:131;:::i;:::-;20734:139;;20461:419;;;:::o;20886:163::-;21026:15;21022:1;21014:6;21010:14;21003:39;20886:163;:::o;21055:366::-;21197:3;21218:67;21282:2;21277:3;21218:67;:::i;:::-;21211:74;;21294:93;21383:3;21294:93;:::i;:::-;21412:2;21407:3;21403:12;21396:19;;21055:366;;;:::o;21427:419::-;21593:4;21631:2;21620:9;21616:18;21608:26;;21680:9;21674:4;21670:20;21666:1;21655:9;21651:17;21644:47;21708:131;21834:4;21708:131;:::i;:::-;21700:139;;21427:419;;;:::o;21852:170::-;21992:22;21988:1;21980:6;21976:14;21969:46;21852:170;:::o;22028:366::-;22170:3;22191:67;22255:2;22250:3;22191:67;:::i;:::-;22184:74;;22267:93;22356:3;22267:93;:::i;:::-;22385:2;22380:3;22376:12;22369:19;;22028:366;;;:::o;22400:419::-;22566:4;22604:2;22593:9;22589:18;22581:26;;22653:9;22647:4;22643:20;22639:1;22628:9;22624:17;22617:47;22681:131;22807:4;22681:131;:::i;:::-;22673:139;;22400:419;;;:::o;22825:234::-;22965:34;22961:1;22953:6;22949:14;22942:58;23034:17;23029:2;23021:6;23017:15;23010:42;22825:234;:::o;23065:366::-;23207:3;23228:67;23292:2;23287:3;23228:67;:::i;:::-;23221:74;;23304:93;23393:3;23304:93;:::i;:::-;23422:2;23417:3;23413:12;23406:19;;23065:366;;;:::o;23437:419::-;23603:4;23641:2;23630:9;23626:18;23618:26;;23690:9;23684:4;23680:20;23676:1;23665:9;23661:17;23654:47;23718:131;23844:4;23718:131;:::i;:::-;23710:139;;23437:419;;;:::o;23862:148::-;23964:11;24001:3;23986:18;;23862:148;;;;:::o;24016:377::-;24122:3;24150:39;24183:5;24150:39;:::i;:::-;24205:89;24287:6;24282:3;24205:89;:::i;:::-;24198:96;;24303:52;24348:6;24343:3;24336:4;24329:5;24325:16;24303:52;:::i;:::-;24380:6;24375:3;24371:16;24364:23;;24126:267;24016:377;;;;:::o;24399:141::-;24448:4;24471:3;24463:11;;24494:3;24491:1;24484:14;24528:4;24525:1;24515:18;24507:26;;24399:141;;;:::o;24570:845::-;24673:3;24710:5;24704:12;24739:36;24765:9;24739:36;:::i;:::-;24791:89;24873:6;24868:3;24791:89;:::i;:::-;24784:96;;24911:1;24900:9;24896:17;24927:1;24922:137;;;;25073:1;25068:341;;;;24889:520;;24922:137;25006:4;25002:9;24991;24987:25;24982:3;24975:38;25042:6;25037:3;25033:16;25026:23;;24922:137;;25068:341;25135:38;25167:5;25135:38;:::i;:::-;25195:1;25209:154;25223:6;25220:1;25217:13;25209:154;;;25297:7;25291:14;25287:1;25282:3;25278:11;25271:35;25347:1;25338:7;25334:15;25323:26;;25245:4;25242:1;25238:12;25233:17;;25209:154;;;25392:6;25387:3;25383:16;25376:23;;25075:334;;24889:520;;24677:738;;24570:845;;;;:::o;25421:589::-;25646:3;25668:95;25759:3;25750:6;25668:95;:::i;:::-;25661:102;;25780:95;25871:3;25862:6;25780:95;:::i;:::-;25773:102;;25892:92;25980:3;25971:6;25892:92;:::i;:::-;25885:99;;26001:3;25994:10;;25421:589;;;;;;:::o;26016:225::-;26156:34;26152:1;26144:6;26140:14;26133:58;26225:8;26220:2;26212:6;26208:15;26201:33;26016:225;:::o;26247:366::-;26389:3;26410:67;26474:2;26469:3;26410:67;:::i;:::-;26403:74;;26486:93;26575:3;26486:93;:::i;:::-;26604:2;26599:3;26595:12;26588:19;;26247:366;;;:::o;26619:419::-;26785:4;26823:2;26812:9;26808:18;26800:26;;26872:9;26866:4;26862:20;26858:1;26847:9;26843:17;26836:47;26900:131;27026:4;26900:131;:::i;:::-;26892:139;;26619:419;;;:::o;27044:98::-;27095:6;27129:5;27123:12;27113:22;;27044:98;;;:::o;27148:168::-;27231:11;27265:6;27260:3;27253:19;27305:4;27300:3;27296:14;27281:29;;27148:168;;;;:::o;27322:360::-;27408:3;27436:38;27468:5;27436:38;:::i;:::-;27490:70;27553:6;27548:3;27490:70;:::i;:::-;27483:77;;27569:52;27614:6;27609:3;27602:4;27595:5;27591:16;27569:52;:::i;:::-;27646:29;27668:6;27646:29;:::i;:::-;27641:3;27637:39;27630:46;;27412:270;27322:360;;;;:::o;27688:640::-;27883:4;27921:3;27910:9;27906:19;27898:27;;27935:71;28003:1;27992:9;27988:17;27979:6;27935:71;:::i;:::-;28016:72;28084:2;28073:9;28069:18;28060:6;28016:72;:::i;:::-;28098;28166:2;28155:9;28151:18;28142:6;28098:72;:::i;:::-;28217:9;28211:4;28207:20;28202:2;28191:9;28187:18;28180:48;28245:76;28316:4;28307:6;28245:76;:::i;:::-;28237:84;;27688:640;;;;;;;:::o;28334:141::-;28390:5;28421:6;28415:13;28406:22;;28437:32;28463:5;28437:32;:::i;:::-;28334:141;;;;:::o;28481:349::-;28550:6;28599:2;28587:9;28578:7;28574:23;28570:32;28567:119;;;28605:79;;:::i;:::-;28567:119;28725:1;28750:63;28805:7;28796:6;28785:9;28781:22;28750:63;:::i;:::-;28740:73;;28696:127;28481:349;;;;:::o;28836:233::-;28875:3;28898:24;28916:5;28898:24;:::i;:::-;28889:33;;28944:66;28937:5;28934:77;28931:103;;29014:18;;:::i;:::-;28931:103;29061:1;29054:5;29050:13;29043:20;;28836:233;;;:::o;29075:180::-;29123:77;29120:1;29113:88;29220:4;29217:1;29210:15;29244:4;29241:1;29234:15;29261:185;29301:1;29318:20;29336:1;29318:20;:::i;:::-;29313:25;;29352:20;29370:1;29352:20;:::i;:::-;29347:25;;29391:1;29381:35;;29396:18;;:::i;:::-;29381:35;29438:1;29435;29431:9;29426:14;;29261:185;;;;:::o;29452:191::-;29492:4;29512:20;29530:1;29512:20;:::i;:::-;29507:25;;29546:20;29564:1;29546:20;:::i;:::-;29541:25;;29585:1;29582;29579:8;29576:34;;;29590:18;;:::i;:::-;29576:34;29635:1;29632;29628:9;29620:17;;29452:191;;;;:::o;29649:176::-;29681:1;29698:20;29716:1;29698:20;:::i;:::-;29693:25;;29732:20;29750:1;29732:20;:::i;:::-;29727:25;;29771:1;29761:35;;29776:18;;:::i;:::-;29761:35;29817:1;29814;29810:9;29805:14;;29649:176;;;;:::o;29831:180::-;29879:77;29876:1;29869:88;29976:4;29973:1;29966:15;30000:4;29997:1;29990:15

Swarm Source

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