ETH Price: $3,177.81 (+2.37%)

Token

Meta Mini (MMC)
 

Overview

Max Total Supply

1,000 MMC

Holders

307

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
MetaMini

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/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: @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: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.0;









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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal _nextTokenId;

    // 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_;
        _nextTokenId = 1;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        for (uint256 curr = tokenId; ; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @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) {
        require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token');

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: transfer to non ERC721Receiver implementer'
        );
    }

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

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _nextTokenId;
        require(to != address(0), 'ERC721A: mint to the zero address');
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), 'ERC721A: token already minted');
        require(quantity > 0, 'ERC721A: quantity must be greater 0');

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

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            require(
                _checkOnERC721Received(address(0), to, updatedIndex, _data),
                'ERC721A: transfer to non ERC721Receiver implementer'
            );
            updatedIndex++;
        }

        _nextTokenId = 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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;
        }

        _ownerships[tokenId] = TokenOwnership(to, 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;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
            }
        }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * 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`.
     */
    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.
     *
     * 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` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

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

pragma solidity ^0.8.0;

contract MetaMini is ERC721A, Ownable {
  using Strings for uint256;
  address public contractOwner;
  bool public paused = false;
  bool public pausedFreeMint = false;
  uint256 public mintPrice = 0.078 ether;
  uint256 public supply    = 1888;
  string private baseURI   = "ipfs://QmRdQhyb831iTbuQbS9Hqke2NBLhui4zjbyQ8CF6UetXYt/";

  mapping(address => bytes1) public manualWhitelist;

  constructor() ERC721A("Meta Mini", "MMC") {
    contractOwner = msg.sender;
  }

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

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

  //Airdrop for Previous Holders
  function mintForAddress(address[] calldata _addresses) public onlyOwner {
    for (uint i=0; i<_addresses.length; i++) {
      _safeMint(_addresses[i], 1);
    }
  }

  //Free Mints for holders
   function freeMint(uint8 quantity) external {
    require(!paused, "Contract paused");
    require(!pausedFreeMint, "Contract paused");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");

    require(manualWhitelist[msg.sender] >= 0x01, "No free mints!");
 
    manualWhitelist[msg.sender] = bytes1(uint8(manualWhitelist[msg.sender]) - quantity);

    _safeMint(msg.sender, quantity);

    }

  function mint(uint256 quantity) external payable {
    require(!paused, "Contract paused");
    require(totalSupply() + quantity <= supply, "You can't mint more then the total supply");
    require(msg.value >= mintPrice * quantity, "Insufficient funds");

    _safeMint(msg.sender, quantity);
  }

  function getBaseURI() public onlyOwner view returns (string memory ) {
    return baseURI;
  }

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

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

  function setMintPrice (uint256 _newPrice) public onlyOwner {
    mintPrice = _newPrice;
  }

  function setPaused (bool _pausedState) public onlyOwner {
    paused = _pausedState;
  }

  function setPausedFree (bool _pauseState) public onlyOwner {
      pausedFreeMint = _pauseState;
  }

  function getContractBalance () public view onlyOwner returns (uint256) {
    return address(this).balance;
  }

  function whitelist(address _user, bytes1 _status) public onlyOwner {
        manualWhitelist[_user] = _status;
    }

  function whitelistAddress(address[] memory _user, bytes1 _status) public onlyOwner {
      for (uint256 i = 0; i < _user.length; i++) {
          manualWhitelist[_user[i]] = _status;
      }
  }

  function changeTreasury(address payable _newWallet) external onlyOwner {
    contractOwner = _newWallet;
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newWallet","type":"address"}],"name":"changeTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"quantity","type":"uint8"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"manualWhitelist","outputs":[{"internalType":"bytes1","name":"","type":"bytes1"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pausedState","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pauseState","type":"bool"}],"name":"setPausedFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bytes1","name":"_status","type":"bytes1"}],"name":"whitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_user","type":"address[]"},{"internalType":"bytes1","name":"_status","type":"bytes1"}],"name":"whitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6008805461ffff60a01b191690556701151c96347b0000600955610760600a5560e06040526036608081815290620029f660a03980516200004991600b9160209091019062000137565b503480156200005757600080fd5b5060408051808201825260098152684d657461204d696e6960b81b6020808301918252835180850190945260038452624d4d4360e81b908401528151919291620000a49160019162000137565b508051620000ba90600290602084019062000137565b5050600160005550620000cd33620000e5565b600880546001600160a01b031916331790556200021a565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014590620001dd565b90600052602060002090601f016020900481019282620001695760008555620001b4565b82601f106200018457805160ff1916838001178555620001b4565b82800160010185558215620001b4579182015b82811115620001b457825182559160200191906001019062000197565b50620001c2929150620001c6565b5090565b5b80821115620001c25760008155600101620001c7565b600181811c90821680620001f257607f821691505b602082108114156200021457634e487b7160e01b600052602260045260246000fd5b50919050565b6127cc806200022a6000396000f3fe6080604052600436106102255760003560e01c806370a0823111610123578063ba326d1d116100ab578063e985e9c51161006f578063e985e9c514610642578063ed5b729e1461068b578063ee5e74e6146106ab578063f2fde38b146106cb578063f4a0a528146106eb57600080fd5b8063ba326d1d14610579578063c87b56dd14610599578063c87c089c146105b9578063ce606ee0146105d9578063d9e9c978146105f957600080fd5b806395d89b41116100f257806395d89b41146104f1578063a0712d6814610506578063a22cb46514610519578063b14f2a3914610539578063b88d4fde1461055957600080fd5b806370a0823114610489578063714c5398146104a9578063715018a6146104be5780638da5cb5b146104d357600080fd5b80633ccfd60b116101b157806355f804b31161017557806355f804b3146103fd5780635c975abb1461041d5780636352211e1461043e5780636817c76c1461045e5780636f9fb98a1461047457600080fd5b80633ccfd60b1461037457806342842e0e1461037c5780634f6ccce71461039c578063505b06b6146103bc57806350dd1278146103dd57600080fd5b8063095ea7b3116101f8578063095ea7b3146102dd57806316c38b3c146102ff57806318160ddd1461031f57806323b872dd146103345780632f745c591461035457600080fd5b806301ffc9a71461022a578063047fc9aa1461025f57806306fdde0314610283578063081812fc146102a5575b600080fd5b34801561023657600080fd5b5061024a610245366004611f0b565b61070b565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610275600a5481565b604051908152602001610256565b34801561028f57600080fd5b50610298610778565b6040516102569190611f87565b3480156102b157600080fd5b506102c56102c0366004611f9a565b61080a565b6040516001600160a01b039091168152602001610256565b3480156102e957600080fd5b506102fd6102f8366004611fc8565b61089a565b005b34801561030b57600080fd5b506102fd61031a366004612009565b6109b2565b34801561032b57600080fd5b506102756109fa565b34801561034057600080fd5b506102fd61034f366004612024565b610a10565b34801561036057600080fd5b5061027561036f366004611fc8565b610a1b565b6102fd610b93565b34801561038857600080fd5b506102fd610397366004612024565b610c20565b3480156103a857600080fd5b506102756103b7366004611f9a565b610c3b565b3480156103c857600080fd5b5060085461024a90600160a81b900460ff1681565b3480156103e957600080fd5b506102fd6103f8366004612065565b610ca3565b34801561040957600080fd5b506102fd610418366004612179565b610d1b565b34801561042957600080fd5b5060085461024a90600160a01b900460ff1681565b34801561044a57600080fd5b506102c5610459366004611f9a565b610d5c565b34801561046a57600080fd5b5061027560095481565b34801561048057600080fd5b50610275610d6e565b34801561049557600080fd5b506102756104a43660046121c2565b610da0565b3480156104b557600080fd5b50610298610e31565b3480156104ca57600080fd5b506102fd610e6b565b3480156104df57600080fd5b506007546001600160a01b03166102c5565b3480156104fd57600080fd5b50610298610ea1565b6102fd610514366004611f9a565b610eb0565b34801561052557600080fd5b506102fd6105343660046121df565b610f6a565b34801561054557600080fd5b506102fd6105543660046121c2565b61102f565b34801561056557600080fd5b506102fd610574366004612214565b61107b565b34801561058557600080fd5b506102fd610594366004612009565b6110b4565b3480156105a557600080fd5b506102986105b4366004611f9a565b6110fc565b3480156105c557600080fd5b506102fd6105d4366004612294565b6111c9565b3480156105e557600080fd5b506008546102c5906001600160a01b031681565b34801561060557600080fd5b506106296106143660046121c2565b600c6020526000908152604090205460f81b81565b6040516001600160f81b03199091168152602001610256565b34801561064e57600080fd5b5061024a61065d3660046122b7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561069757600080fd5b506102fd6106a6366004612308565b6112fe565b3480156106b757600080fd5b506102fd6106c6366004612334565b611356565b3480156106d757600080fd5b506102fd6106e63660046121c2565b6113f6565b3480156106f757600080fd5b506102fd610706366004611f9a565b61148e565b60006001600160e01b031982166380ac58cd60e01b148061073c57506001600160e01b03198216635b5e139f60e01b145b8061075757506001600160e01b0319821663780e9d6360e01b145b8061077257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610787906123f8565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906123f8565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000610817826000541190565b61087e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a582610d5c565b9050806001600160a01b0316836001600160a01b031614156109145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610875565b336001600160a01b03821614806109305750610930813361065d565b6109a25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610875565b6109ad8383836114bd565b505050565b6007546001600160a01b031633146109dc5760405162461bcd60e51b815260040161087590612433565b60088054911515600160a01b0260ff60a01b19909216919091179055565b60006001600054610a0b919061247e565b905090565b6109ad838383611519565b6000610a2683610da0565b8210610a7f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610875565b6000610a896109fa565b905060008060005b83811015610b33576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ae457805192505b876001600160a01b0316836001600160a01b03161415610b205786841415610b125750935061077292505050565b83610b1c81612495565b9450505b5080610b2b81612495565b915050610a91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610875565b6007546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161087590612433565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c0a576040519150601f19603f3d011682016040523d82523d6000602084013e610c0f565b606091505b5050905080610c1d57600080fd5b50565b6109ad8383836040518060200160405280600081525061107b565b6000610c456109fa565b8210610c9f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610875565b5090565b6007546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161087590612433565b60005b818110156109ad57610d09838383818110610ced57610ced6124b0565b9050602002016020810190610d0291906121c2565b6001611860565b80610d1381612495565b915050610cd0565b6007546001600160a01b03163314610d455760405162461bcd60e51b815260040161087590612433565b8051610d5890600b906020840190611e65565b5050565b6000610d678261187a565b5192915050565b6007546000906001600160a01b03163314610d9b5760405162461bcd60e51b815260040161087590612433565b504790565b60006001600160a01b038216610e0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610875565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546060906001600160a01b03163314610e5e5760405162461bcd60e51b815260040161087590612433565b600b8054610787906123f8565b6007546001600160a01b03163314610e955760405162461bcd60e51b815260040161087590612433565b610e9f600061195a565b565b606060028054610787906123f8565b600854600160a01b900460ff1615610eda5760405162461bcd60e51b8152600401610875906124c6565b600a5481610ee66109fa565b610ef091906124ef565b1115610f0e5760405162461bcd60e51b815260040161087590612507565b80600954610f1c9190612550565b341015610f605760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610875565b610c1d3382611860565b6001600160a01b038216331415610fc35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610875565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110595760405162461bcd60e51b815260040161087590612433565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b611086848484611519565b611092848484846119ac565b6110ae5760405162461bcd60e51b81526004016108759061256f565b50505050565b6007546001600160a01b031633146110de5760405162461bcd60e51b815260040161087590612433565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6060611109826000541190565b61116d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610875565b6000600b805461117c906123f8565b9050116111985760405180602001604052806000815250610772565b600b6111a383611aab565b6040516020016111b49291906125de565b60405160208183030381529060405292915050565b600854600160a01b900460ff16156111f35760405162461bcd60e51b8152600401610875906124c6565b600854600160a81b900460ff161561121d5760405162461bcd60e51b8152600401610875906124c6565b600a548160ff1661122c6109fa565b61123691906124ef565b11156112545760405162461bcd60e51b815260040161087590612507565b336000908152600c6020526040902054600160f81b60f89190911b6001600160f81b03191610156112b85760405162461bcd60e51b815260206004820152600e60248201526d4e6f2066726565206d696e74732160901b6044820152606401610875565b336000908152600c60205260409020546112d690829060ff16612699565b336000818152600c60205260409020805460ff191660ff938416179055610c1d918316611860565b6007546001600160a01b031633146113285760405162461bcd60e51b815260040161087590612433565b6001600160a01b03919091166000908152600c60205260409020805460ff191660f89290921c919091179055565b6007546001600160a01b031633146113805760405162461bcd60e51b815260040161087590612433565b60005b82518110156109ad5781600c60008584815181106113a3576113a36124b0565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360f81c021790555080806113ee90612495565b915050611383565b6007546001600160a01b031633146114205760405162461bcd60e51b815260040161087590612433565b6001600160a01b0381166114855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610875565b610c1d8161195a565b6007546001600160a01b031633146114b85760405162461bcd60e51b815260040161087590612433565b600955565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115248261187a565b80519091506000906001600160a01b0316336001600160a01b0316148061155b5750336115508461080a565b6001600160a01b0316145b8061156d5750815161156d903361065d565b9050806115d75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610875565b846001600160a01b031682600001516001600160a01b03161461164b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610875565b6001600160a01b0384166116af5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610875565b6116bf60008484600001516114bd565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906117849085906124ef565b6000818152600360205260409020549091506001600160a01b0316611816576117ae816000541190565b156118165760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d58828260405180602001604052806000815250611ba9565b6040805180820190915260008082526020820152611899826000541190565b6118f85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610875565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611947579392505050565b5080611952816126bc565b9150506118fa565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a9f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119f09033908990889088906004016126d3565b6020604051808303816000875af1925050508015611a2b575060408051601f3d908101601f19168201909252611a2891810190612710565b60015b611a85573d808015611a59576040519150601f19603f3d011682016040523d82523d6000602084013e611a5e565b606091505b508051611a7d5760405162461bcd60e51b81526004016108759061256f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aa3565b5060015b949350505050565b606081611acf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af95780611ae381612495565b9150611af29050600a83612743565b9150611ad3565b60008167ffffffffffffffff811115611b1457611b146120da565b6040519080825280601f01601f191660200182016040528015611b3e576020820181803683370190505b5090505b8415611aa357611b5360018361247e565b9150611b60600a86612757565b611b6b9060306124ef565b60f81b818381518110611b8057611b806124b0565b60200101906001600160f81b031916908160001a905350611ba2600a86612743565b9450611b42565b6000546001600160a01b038416611c0c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610875565b611c17816000541190565b15611c645760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610875565b60008311611cc05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610875565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d1c90879061276b565b6001600160801b03168152602001858360200151611d3a919061276b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e5a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e1e60008884886119ac565b611e3a5760405162461bcd60e51b81526004016108759061256f565b81611e4481612495565b9250508080611e5290612495565b915050611dd1565b506000819055611858565b828054611e71906123f8565b90600052602060002090601f016020900481019282611e935760008555611ed9565b82601f10611eac57805160ff1916838001178555611ed9565b82800160010185558215611ed9579182015b82811115611ed9578251825591602001919060010190611ebe565b50610c9f9291505b80821115610c9f5760008155600101611ee1565b6001600160e01b031981168114610c1d57600080fd5b600060208284031215611f1d57600080fd5b8135611f2881611ef5565b9392505050565b60005b83811015611f4a578181015183820152602001611f32565b838111156110ae5750506000910152565b60008151808452611f73816020860160208601611f2f565b601f01601f19169290920160200192915050565b602081526000611f286020830184611f5b565b600060208284031215611fac57600080fd5b5035919050565b6001600160a01b0381168114610c1d57600080fd5b60008060408385031215611fdb57600080fd5b8235611fe681611fb3565b946020939093013593505050565b8035801515811461200457600080fd5b919050565b60006020828403121561201b57600080fd5b611f2882611ff4565b60008060006060848603121561203957600080fd5b833561204481611fb3565b9250602084013561205481611fb3565b929592945050506040919091013590565b6000806020838503121561207857600080fd5b823567ffffffffffffffff8082111561209057600080fd5b818501915085601f8301126120a457600080fd5b8135818111156120b357600080fd5b8660208260051b85010111156120c857600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612119576121196120da565b604052919050565b600067ffffffffffffffff83111561213b5761213b6120da565b61214e601f8401601f19166020016120f0565b905082815283838301111561216257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561218b57600080fd5b813567ffffffffffffffff8111156121a257600080fd5b8201601f810184136121b357600080fd5b611aa384823560208401612121565b6000602082840312156121d457600080fd5b8135611f2881611fb3565b600080604083850312156121f257600080fd5b82356121fd81611fb3565b915061220b60208401611ff4565b90509250929050565b6000806000806080858703121561222a57600080fd5b843561223581611fb3565b9350602085013561224581611fb3565b925060408501359150606085013567ffffffffffffffff81111561226857600080fd5b8501601f8101871361227957600080fd5b61228887823560208401612121565b91505092959194509250565b6000602082840312156122a657600080fd5b813560ff81168114611f2857600080fd5b600080604083850312156122ca57600080fd5b82356122d581611fb3565b915060208301356122e581611fb3565b809150509250929050565b80356001600160f81b03198116811461200457600080fd5b6000806040838503121561231b57600080fd5b823561232681611fb3565b915061220b602084016122f0565b6000806040838503121561234757600080fd5b823567ffffffffffffffff8082111561235f57600080fd5b818501915085601f83011261237357600080fd5b8135602082821115612387576123876120da565b8160051b92506123988184016120f0565b82815292840181019281810190898511156123b257600080fd5b948201945b848610156123dc57853593506123cc84611fb3565b83825294820194908201906123b7565b96506123eb90508782016122f0565b9450505050509250929050565b600181811c9082168061240c57607f821691505b6020821081141561242d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561249057612490612468565b500390565b60006000198214156124a9576124a9612468565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6020808252600f908201526e10dbdb9d1c9858dd081c185d5cd959608a1b604082015260600190565b6000821982111561250257612502612468565b500190565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b600081600019048311821515161561256a5761256a612468565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516125d4818560208601611f2f565b9290920192915050565b600080845481600182811c9150808316806125fa57607f831692505b602080841082141561261a57634e487b7160e01b86526022600452602486fd5b81801561262e576001811461263f5761266c565b60ff1986168952848901965061266c565b60008b81526020902060005b868110156126645781548b82015290850190830161264b565b505084890196505b50505050505061269061267f82866125c2565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff8416808210156126b3576126b3612468565b90039392505050565b6000816126cb576126cb612468565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270690830184611f5b565b9695505050505050565b60006020828403121561272257600080fd5b8151611f2881611ef5565b634e487b7160e01b600052601260045260246000fd5b6000826127525761275261272d565b500490565b6000826127665761276661272d565b500690565b60006001600160801b0380831681851680830382111561278d5761278d612468565b0194935050505056fea2646970667358221220eda484c99590835ce8bd7b8d668ddbe4672f5cea5c8d3978742c9ab04e935e8c64736f6c634300080b0033697066733a2f2f516d526451687962383331695462755162533948716b65324e424c687569347a6a627951384346365565745859742f

Deployed Bytecode

0x6080604052600436106102255760003560e01c806370a0823111610123578063ba326d1d116100ab578063e985e9c51161006f578063e985e9c514610642578063ed5b729e1461068b578063ee5e74e6146106ab578063f2fde38b146106cb578063f4a0a528146106eb57600080fd5b8063ba326d1d14610579578063c87b56dd14610599578063c87c089c146105b9578063ce606ee0146105d9578063d9e9c978146105f957600080fd5b806395d89b41116100f257806395d89b41146104f1578063a0712d6814610506578063a22cb46514610519578063b14f2a3914610539578063b88d4fde1461055957600080fd5b806370a0823114610489578063714c5398146104a9578063715018a6146104be5780638da5cb5b146104d357600080fd5b80633ccfd60b116101b157806355f804b31161017557806355f804b3146103fd5780635c975abb1461041d5780636352211e1461043e5780636817c76c1461045e5780636f9fb98a1461047457600080fd5b80633ccfd60b1461037457806342842e0e1461037c5780634f6ccce71461039c578063505b06b6146103bc57806350dd1278146103dd57600080fd5b8063095ea7b3116101f8578063095ea7b3146102dd57806316c38b3c146102ff57806318160ddd1461031f57806323b872dd146103345780632f745c591461035457600080fd5b806301ffc9a71461022a578063047fc9aa1461025f57806306fdde0314610283578063081812fc146102a5575b600080fd5b34801561023657600080fd5b5061024a610245366004611f0b565b61070b565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b50610275600a5481565b604051908152602001610256565b34801561028f57600080fd5b50610298610778565b6040516102569190611f87565b3480156102b157600080fd5b506102c56102c0366004611f9a565b61080a565b6040516001600160a01b039091168152602001610256565b3480156102e957600080fd5b506102fd6102f8366004611fc8565b61089a565b005b34801561030b57600080fd5b506102fd61031a366004612009565b6109b2565b34801561032b57600080fd5b506102756109fa565b34801561034057600080fd5b506102fd61034f366004612024565b610a10565b34801561036057600080fd5b5061027561036f366004611fc8565b610a1b565b6102fd610b93565b34801561038857600080fd5b506102fd610397366004612024565b610c20565b3480156103a857600080fd5b506102756103b7366004611f9a565b610c3b565b3480156103c857600080fd5b5060085461024a90600160a81b900460ff1681565b3480156103e957600080fd5b506102fd6103f8366004612065565b610ca3565b34801561040957600080fd5b506102fd610418366004612179565b610d1b565b34801561042957600080fd5b5060085461024a90600160a01b900460ff1681565b34801561044a57600080fd5b506102c5610459366004611f9a565b610d5c565b34801561046a57600080fd5b5061027560095481565b34801561048057600080fd5b50610275610d6e565b34801561049557600080fd5b506102756104a43660046121c2565b610da0565b3480156104b557600080fd5b50610298610e31565b3480156104ca57600080fd5b506102fd610e6b565b3480156104df57600080fd5b506007546001600160a01b03166102c5565b3480156104fd57600080fd5b50610298610ea1565b6102fd610514366004611f9a565b610eb0565b34801561052557600080fd5b506102fd6105343660046121df565b610f6a565b34801561054557600080fd5b506102fd6105543660046121c2565b61102f565b34801561056557600080fd5b506102fd610574366004612214565b61107b565b34801561058557600080fd5b506102fd610594366004612009565b6110b4565b3480156105a557600080fd5b506102986105b4366004611f9a565b6110fc565b3480156105c557600080fd5b506102fd6105d4366004612294565b6111c9565b3480156105e557600080fd5b506008546102c5906001600160a01b031681565b34801561060557600080fd5b506106296106143660046121c2565b600c6020526000908152604090205460f81b81565b6040516001600160f81b03199091168152602001610256565b34801561064e57600080fd5b5061024a61065d3660046122b7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561069757600080fd5b506102fd6106a6366004612308565b6112fe565b3480156106b757600080fd5b506102fd6106c6366004612334565b611356565b3480156106d757600080fd5b506102fd6106e63660046121c2565b6113f6565b3480156106f757600080fd5b506102fd610706366004611f9a565b61148e565b60006001600160e01b031982166380ac58cd60e01b148061073c57506001600160e01b03198216635b5e139f60e01b145b8061075757506001600160e01b0319821663780e9d6360e01b145b8061077257506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060018054610787906123f8565b80601f01602080910402602001604051908101604052809291908181526020018280546107b3906123f8565b80156108005780601f106107d557610100808354040283529160200191610800565b820191906000526020600020905b8154815290600101906020018083116107e357829003601f168201915b5050505050905090565b6000610817826000541190565b61087e5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108a582610d5c565b9050806001600160a01b0316836001600160a01b031614156109145760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610875565b336001600160a01b03821614806109305750610930813361065d565b6109a25760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610875565b6109ad8383836114bd565b505050565b6007546001600160a01b031633146109dc5760405162461bcd60e51b815260040161087590612433565b60088054911515600160a01b0260ff60a01b19909216919091179055565b60006001600054610a0b919061247e565b905090565b6109ad838383611519565b6000610a2683610da0565b8210610a7f5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610875565b6000610a896109fa565b905060008060005b83811015610b33576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610ae457805192505b876001600160a01b0316836001600160a01b03161415610b205786841415610b125750935061077292505050565b83610b1c81612495565b9450505b5080610b2b81612495565b915050610a91565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610875565b6007546001600160a01b03163314610bbd5760405162461bcd60e51b815260040161087590612433565b6008546040516000916001600160a01b03169047908381818185875af1925050503d8060008114610c0a576040519150601f19603f3d011682016040523d82523d6000602084013e610c0f565b606091505b5050905080610c1d57600080fd5b50565b6109ad8383836040518060200160405280600081525061107b565b6000610c456109fa565b8210610c9f5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610875565b5090565b6007546001600160a01b03163314610ccd5760405162461bcd60e51b815260040161087590612433565b60005b818110156109ad57610d09838383818110610ced57610ced6124b0565b9050602002016020810190610d0291906121c2565b6001611860565b80610d1381612495565b915050610cd0565b6007546001600160a01b03163314610d455760405162461bcd60e51b815260040161087590612433565b8051610d5890600b906020840190611e65565b5050565b6000610d678261187a565b5192915050565b6007546000906001600160a01b03163314610d9b5760405162461bcd60e51b815260040161087590612433565b504790565b60006001600160a01b038216610e0c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610875565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546060906001600160a01b03163314610e5e5760405162461bcd60e51b815260040161087590612433565b600b8054610787906123f8565b6007546001600160a01b03163314610e955760405162461bcd60e51b815260040161087590612433565b610e9f600061195a565b565b606060028054610787906123f8565b600854600160a01b900460ff1615610eda5760405162461bcd60e51b8152600401610875906124c6565b600a5481610ee66109fa565b610ef091906124ef565b1115610f0e5760405162461bcd60e51b815260040161087590612507565b80600954610f1c9190612550565b341015610f605760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610875565b610c1d3382611860565b6001600160a01b038216331415610fc35760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610875565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146110595760405162461bcd60e51b815260040161087590612433565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b611086848484611519565b611092848484846119ac565b6110ae5760405162461bcd60e51b81526004016108759061256f565b50505050565b6007546001600160a01b031633146110de5760405162461bcd60e51b815260040161087590612433565b60088054911515600160a81b0260ff60a81b19909216919091179055565b6060611109826000541190565b61116d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610875565b6000600b805461117c906123f8565b9050116111985760405180602001604052806000815250610772565b600b6111a383611aab565b6040516020016111b49291906125de565b60405160208183030381529060405292915050565b600854600160a01b900460ff16156111f35760405162461bcd60e51b8152600401610875906124c6565b600854600160a81b900460ff161561121d5760405162461bcd60e51b8152600401610875906124c6565b600a548160ff1661122c6109fa565b61123691906124ef565b11156112545760405162461bcd60e51b815260040161087590612507565b336000908152600c6020526040902054600160f81b60f89190911b6001600160f81b03191610156112b85760405162461bcd60e51b815260206004820152600e60248201526d4e6f2066726565206d696e74732160901b6044820152606401610875565b336000908152600c60205260409020546112d690829060ff16612699565b336000818152600c60205260409020805460ff191660ff938416179055610c1d918316611860565b6007546001600160a01b031633146113285760405162461bcd60e51b815260040161087590612433565b6001600160a01b03919091166000908152600c60205260409020805460ff191660f89290921c919091179055565b6007546001600160a01b031633146113805760405162461bcd60e51b815260040161087590612433565b60005b82518110156109ad5781600c60008584815181106113a3576113a36124b0565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a81548160ff021916908360f81c021790555080806113ee90612495565b915050611383565b6007546001600160a01b031633146114205760405162461bcd60e51b815260040161087590612433565b6001600160a01b0381166114855760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610875565b610c1d8161195a565b6007546001600160a01b031633146114b85760405162461bcd60e51b815260040161087590612433565b600955565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006115248261187a565b80519091506000906001600160a01b0316336001600160a01b0316148061155b5750336115508461080a565b6001600160a01b0316145b8061156d5750815161156d903361065d565b9050806115d75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610875565b846001600160a01b031682600001516001600160a01b03161461164b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610875565b6001600160a01b0384166116af5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610875565b6116bf60008484600001516114bd565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906117849085906124ef565b6000818152600360205260409020549091506001600160a01b0316611816576117ae816000541190565b156118165760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610d58828260405180602001604052806000815250611ba9565b6040805180820190915260008082526020820152611899826000541190565b6118f85760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610875565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611947579392505050565b5080611952816126bc565b9150506118fa565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006001600160a01b0384163b15611a9f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119f09033908990889088906004016126d3565b6020604051808303816000875af1925050508015611a2b575060408051601f3d908101601f19168201909252611a2891810190612710565b60015b611a85573d808015611a59576040519150601f19603f3d011682016040523d82523d6000602084013e611a5e565b606091505b508051611a7d5760405162461bcd60e51b81526004016108759061256f565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aa3565b5060015b949350505050565b606081611acf5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611af95780611ae381612495565b9150611af29050600a83612743565b9150611ad3565b60008167ffffffffffffffff811115611b1457611b146120da565b6040519080825280601f01601f191660200182016040528015611b3e576020820181803683370190505b5090505b8415611aa357611b5360018361247e565b9150611b60600a86612757565b611b6b9060306124ef565b60f81b818381518110611b8057611b806124b0565b60200101906001600160f81b031916908160001a905350611ba2600a86612743565b9450611b42565b6000546001600160a01b038416611c0c5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610875565b611c17816000541190565b15611c645760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610875565b60008311611cc05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b6064820152608401610875565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d1c90879061276b565b6001600160801b03168152602001858360200151611d3a919061276b565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e5a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e1e60008884886119ac565b611e3a5760405162461bcd60e51b81526004016108759061256f565b81611e4481612495565b9250508080611e5290612495565b915050611dd1565b506000819055611858565b828054611e71906123f8565b90600052602060002090601f016020900481019282611e935760008555611ed9565b82601f10611eac57805160ff1916838001178555611ed9565b82800160010185558215611ed9579182015b82811115611ed9578251825591602001919060010190611ebe565b50610c9f9291505b80821115610c9f5760008155600101611ee1565b6001600160e01b031981168114610c1d57600080fd5b600060208284031215611f1d57600080fd5b8135611f2881611ef5565b9392505050565b60005b83811015611f4a578181015183820152602001611f32565b838111156110ae5750506000910152565b60008151808452611f73816020860160208601611f2f565b601f01601f19169290920160200192915050565b602081526000611f286020830184611f5b565b600060208284031215611fac57600080fd5b5035919050565b6001600160a01b0381168114610c1d57600080fd5b60008060408385031215611fdb57600080fd5b8235611fe681611fb3565b946020939093013593505050565b8035801515811461200457600080fd5b919050565b60006020828403121561201b57600080fd5b611f2882611ff4565b60008060006060848603121561203957600080fd5b833561204481611fb3565b9250602084013561205481611fb3565b929592945050506040919091013590565b6000806020838503121561207857600080fd5b823567ffffffffffffffff8082111561209057600080fd5b818501915085601f8301126120a457600080fd5b8135818111156120b357600080fd5b8660208260051b85010111156120c857600080fd5b60209290920196919550909350505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612119576121196120da565b604052919050565b600067ffffffffffffffff83111561213b5761213b6120da565b61214e601f8401601f19166020016120f0565b905082815283838301111561216257600080fd5b828260208301376000602084830101529392505050565b60006020828403121561218b57600080fd5b813567ffffffffffffffff8111156121a257600080fd5b8201601f810184136121b357600080fd5b611aa384823560208401612121565b6000602082840312156121d457600080fd5b8135611f2881611fb3565b600080604083850312156121f257600080fd5b82356121fd81611fb3565b915061220b60208401611ff4565b90509250929050565b6000806000806080858703121561222a57600080fd5b843561223581611fb3565b9350602085013561224581611fb3565b925060408501359150606085013567ffffffffffffffff81111561226857600080fd5b8501601f8101871361227957600080fd5b61228887823560208401612121565b91505092959194509250565b6000602082840312156122a657600080fd5b813560ff81168114611f2857600080fd5b600080604083850312156122ca57600080fd5b82356122d581611fb3565b915060208301356122e581611fb3565b809150509250929050565b80356001600160f81b03198116811461200457600080fd5b6000806040838503121561231b57600080fd5b823561232681611fb3565b915061220b602084016122f0565b6000806040838503121561234757600080fd5b823567ffffffffffffffff8082111561235f57600080fd5b818501915085601f83011261237357600080fd5b8135602082821115612387576123876120da565b8160051b92506123988184016120f0565b82815292840181019281810190898511156123b257600080fd5b948201945b848610156123dc57853593506123cc84611fb3565b83825294820194908201906123b7565b96506123eb90508782016122f0565b9450505050509250929050565b600181811c9082168061240c57607f821691505b6020821081141561242d57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008282101561249057612490612468565b500390565b60006000198214156124a9576124a9612468565b5060010190565b634e487b7160e01b600052603260045260246000fd5b6020808252600f908201526e10dbdb9d1c9858dd081c185d5cd959608a1b604082015260600190565b6000821982111561250257612502612468565b500190565b60208082526029908201527f596f752063616e2774206d696e74206d6f7265207468656e2074686520746f74604082015268616c20737570706c7960b81b606082015260800190565b600081600019048311821515161561256a5761256a612468565b500290565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b600081516125d4818560208601611f2f565b9290920192915050565b600080845481600182811c9150808316806125fa57607f831692505b602080841082141561261a57634e487b7160e01b86526022600452602486fd5b81801561262e576001811461263f5761266c565b60ff1986168952848901965061266c565b60008b81526020902060005b868110156126645781548b82015290850190830161264b565b505084890196505b50505050505061269061267f82866125c2565b64173539b7b760d91b815260050190565b95945050505050565b600060ff821660ff8416808210156126b3576126b3612468565b90039392505050565b6000816126cb576126cb612468565b506000190190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061270690830184611f5b565b9695505050505050565b60006020828403121561272257600080fd5b8151611f2881611ef5565b634e487b7160e01b600052601260045260246000fd5b6000826127525761275261272d565b500490565b6000826127665761276661272d565b500690565b60006001600160801b0380831681851680830382111561278d5761278d612468565b0194935050505056fea2646970667358221220eda484c99590835ce8bd7b8d668ddbe4672f5cea5c8d3978742c9ab04e935e8c64736f6c634300080b0033

Deployed Bytecode Sourcemap

38878:3100:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24333:372;;;;;;;;;;-1:-1:-1;24333:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;24333:372:0;;;;;;;;39097:31;;;;;;;;;;;;;;;;;;;738:25:1;;;726:2;711:18;39097:31:0;592:177:1;25960:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27521:214::-;;;;;;;;;;-1:-1:-1;27521:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1896:32:1;;;1878:51;;1866:2;1851:18;27521:214:0;1732:203:1;27042:413:0;;;;;;;;;;-1:-1:-1;27042:413:0;;;;;:::i;:::-;;:::i;:::-;;41058:90;;;;;;;;;;-1:-1:-1;41058:90:0;;;;;:::i;:::-;;:::i;22770:104::-;;;;;;;;;;;;;:::i;28397:162::-;;;;;;;;;;-1:-1:-1;28397:162:0;;;;;:::i;:::-;;:::i;23438:823::-;;;;;;;;;;-1:-1:-1;23438:823:0;;;;;:::i;:::-;;:::i;41824:151::-;;;:::i;28630:177::-;;;;;;;;;;-1:-1:-1;28630:177:0;;;;;:::i;:::-;;:::i;22951:187::-;;;;;;;;;;-1:-1:-1;22951:187:0;;;;;:::i;:::-;;:::i;39015:34::-;;;;;;;;;;-1:-1:-1;39015:34:0;;;;-1:-1:-1;;;39015:34:0;;;;;;39694:169;;;;;;;;;;-1:-1:-1;39694:169:0;;;;;:::i;:::-;;:::i;40859:94::-;;;;;;;;;;-1:-1:-1;40859:94:0;;;;;:::i;:::-;;:::i;38984:26::-;;;;;;;;;;-1:-1:-1;38984:26:0;;;;-1:-1:-1;;;38984:26:0;;;;;;25769:124;;;;;;;;;;-1:-1:-1;25769:124:0;;;;;:::i;:::-;;:::i;39054:38::-;;;;;;;;;;;;;;;;41262:112;;;;;;;;;;;;;:::i;24769:221::-;;;;;;;;;;-1:-1:-1;24769:221:0;;;;;:::i;:::-;;:::i;40657:96::-;;;;;;;;;;;;;:::i;38034:103::-;;;;;;;;;;;;;:::i;37383:87::-;;;;;;;;;;-1:-1:-1;37456:6:0;;-1:-1:-1;;;;;37456:6:0;37383:87;;26129:104;;;;;;;;;;;;;:::i;40348:303::-;;;;;;:::i;:::-;;:::i;27807:288::-;;;;;;;;;;-1:-1:-1;27807:288:0;;;;;:::i;:::-;;:::i;41708:110::-;;;;;;;;;;-1:-1:-1;41708:110:0;;;;;:::i;:::-;;:::i;28878:355::-;;;;;;;;;;-1:-1:-1;28878:355:0;;;;;:::i;:::-;;:::i;41154:102::-;;;;;;;;;;-1:-1:-1;41154:102:0;;;;;:::i;:::-;;:::i;39366:288::-;;;;;;;;;;-1:-1:-1;39366:288:0;;;;;:::i;:::-;;:::i;39898:444::-;;;;;;;;;;-1:-1:-1;39898:444:0;;;;;:::i;:::-;;:::i;38951:28::-;;;;;;;;;;-1:-1:-1;38951:28:0;;;;-1:-1:-1;;;;;38951:28:0;;;39223:49;;;;;;;;;;-1:-1:-1;39223:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;7175:26:1;;;7157:45;;7145:2;7130:18;39223:49:0;7013:195:1;28166:164:0;;;;;;;;;;-1:-1:-1;28166:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28287:25:0;;;28263:4;28287:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28166:164;41380:118;;;;;;;;;;-1:-1:-1;41380:118:0;;;;;:::i;:::-;;:::i;41504:198::-;;;;;;;;;;-1:-1:-1;41504:198:0;;;;;:::i;:::-;;:::i;38292:201::-;;;;;;;;;;-1:-1:-1;38292:201:0;;;;;:::i;:::-;;:::i;40959:93::-;;;;;;;;;;-1:-1:-1;40959:93:0;;;;;:::i;:::-;;:::i;24333:372::-;24435:4;-1:-1:-1;;;;;;24472:40:0;;-1:-1:-1;;;24472:40:0;;:105;;-1:-1:-1;;;;;;;24529:48:0;;-1:-1:-1;;;24529:48:0;24472:105;:172;;;-1:-1:-1;;;;;;;24594:50:0;;-1:-1:-1;;;24594:50:0;24472:172;:225;;;-1:-1:-1;;;;;;;;;;13230:40:0;;;24661:36;24452:245;24333:372;-1:-1:-1;;24333:372:0:o;25960:100::-;26014:13;26047:5;26040:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25960:100;:::o;27521:214::-;27589:7;27617:16;27625:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;27617:16;27609:74;;;;-1:-1:-1;;;27609:74:0;;9788:2:1;27609:74:0;;;9770:21:1;9827:2;9807:18;;;9800:30;9866:34;9846:18;;;9839:62;-1:-1:-1;;;9917:18:1;;;9910:43;9970:19;;27609:74:0;;;;;;;;;-1:-1:-1;27703:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27703:24:0;;27521:214::o;27042:413::-;27115:13;27131:24;27147:7;27131:15;:24::i;:::-;27115:40;;27180:5;-1:-1:-1;;;;;27174:11:0;:2;-1:-1:-1;;;;;27174:11:0;;;27166:58;;;;-1:-1:-1;;;27166:58:0;;10202:2:1;27166:58:0;;;10184:21:1;10241:2;10221:18;;;10214:30;10280:34;10260:18;;;10253:62;-1:-1:-1;;;10331:18:1;;;10324:32;10373:19;;27166:58:0;10000:398:1;27166:58:0;20792:10;-1:-1:-1;;;;;27259:21:0;;;;:62;;-1:-1:-1;27284:37:0;27301:5;20792:10;28166:164;:::i;27284:37::-;27237:169;;;;-1:-1:-1;;;27237:169:0;;10605:2:1;27237:169:0;;;10587:21:1;10644:2;10624:18;;;10617:30;10683:34;10663:18;;;10656:62;10754:27;10734:18;;;10727:55;10799:19;;27237:169:0;10403:421:1;27237:169:0;27419:28;27428:2;27432:7;27441:5;27419:8;:28::i;:::-;27104:351;27042:413;;:::o;41058:90::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;41121:6:::1;:21:::0;;;::::1;;-1:-1:-1::0;;;41121:21:0::1;-1:-1:-1::0;;;;41121:21:0;;::::1;::::0;;;::::1;::::0;;41058:90::o;22770:104::-;22823:7;22865:1;22850:12;;:16;;;;:::i;:::-;22843:23;;22770:104;:::o;28397:162::-;28523:28;28533:4;28539:2;28543:7;28523:9;:28::i;23438:823::-;23527:7;23563:16;23573:5;23563:9;:16::i;:::-;23555:5;:24;23547:71;;;;-1:-1:-1;;;23547:71:0;;11654:2:1;23547:71:0;;;11636:21:1;11693:2;11673:18;;;11666:30;11732:34;11712:18;;;11705:62;-1:-1:-1;;;11783:18:1;;;11776:32;11825:19;;23547:71:0;11452:398:1;23547:71:0;23629:22;23654:13;:11;:13::i;:::-;23629:38;;23678:19;23712:25;23766:9;23761:426;23785:14;23781:1;:18;23761:426;;;23821:31;23855:14;;;:11;:14;;;;;;;;;23821:48;;;;;;;;;-1:-1:-1;;;;;23821:48:0;;;;;-1:-1:-1;;;23821:48:0;;;;;;;;;;;;23888:28;23884:103;;23957:14;;;-1:-1:-1;23884:103:0;24026:5;-1:-1:-1;;;;;24005:26:0;:17;-1:-1:-1;;;;;24005:26:0;;24001:175;;;24071:5;24056:11;:20;24052:77;;;-1:-1:-1;24108:1:0;-1:-1:-1;24101:8:0;;-1:-1:-1;;;24101:8:0;24052:77;24147:13;;;;:::i;:::-;;;;24001:175;-1:-1:-1;23801:3:0;;;;:::i;:::-;;;;23761:426;;;-1:-1:-1;24197:56:0;;-1:-1:-1;;;24197:56:0;;12197:2:1;24197:56:0;;;12179:21:1;12236:2;12216:18;;;12209:30;12275:34;12255:18;;;12248:62;-1:-1:-1;;;12326:18:1;;;12319:44;12380:19;;24197:56:0;11995:410:1;41824:151:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;41898:13:::1;::::0;41890:61:::1;::::0;41877:7:::1;::::0;-1:-1:-1;;;;;41898:13:0::1;::::0;41925:21:::1;::::0;41877:7;41890:61;41877:7;41890:61;41925:21;41898:13;41890:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41876:75;;;41966:2;41958:11;;;::::0;::::1;;41869:106;41824:151::o:0;28630:177::-;28760:39;28777:4;28783:2;28787:7;28760:39;;;;;;;;;;;;:16;:39::i;22951:187::-;23018:7;23054:13;:11;:13::i;:::-;23046:5;:21;23038:69;;;;-1:-1:-1;;;23038:69:0;;12822:2:1;23038:69:0;;;12804:21:1;12861:2;12841:18;;;12834:30;12900:34;12880:18;;;12873:62;-1:-1:-1;;;12951:18:1;;;12944:33;12994:19;;23038:69:0;12620:399:1;23038:69:0;-1:-1:-1;23125:5:0;22951:187::o;39694:169::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;39778:6:::1;39773:85;39788:19:::0;;::::1;39773:85;;;39823:27;39833:10;;39844:1;39833:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;39848:1;39823:9;:27::i;:::-;39809:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39773:85;;40859:94:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;40929:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40859:94:::0;:::o;25769:124::-;25833:7;25860:20;25872:7;25860:11;:20::i;:::-;:25;;25769:124;-1:-1:-1;;25769:124:0:o;41262:112::-;37456:6;;41324:7;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;41347:21:0::1;41262:112:::0;:::o;24769:221::-;24833:7;-1:-1:-1;;;;;24861:19:0;;24853:75;;;;-1:-1:-1;;;24853:75:0;;13358:2:1;24853:75:0;;;13340:21:1;13397:2;13377:18;;;13370:30;13436:34;13416:18;;;13409:62;-1:-1:-1;;;13487:18:1;;;13480:41;13538:19;;24853:75:0;13156:407:1;24853:75:0;-1:-1:-1;;;;;;24954:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24954:27:0;;24769:221::o;40657:96::-;37456:6;;40710:13;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;40740:7:::1;40733:14;;;;;:::i;38034:103::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;38099:30:::1;38126:1;38099:18;:30::i;:::-;38034:103::o:0;26129:104::-;26185:13;26218:7;26211:14;;;;;:::i;40348:303::-;40413:6;;-1:-1:-1;;;40413:6:0;;;;40412:7;40404:35;;;;-1:-1:-1;;;40404:35:0;;;;;;;:::i;:::-;40482:6;;40470:8;40454:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;40446:88;;;;-1:-1:-1;;;40446:88:0;;;;;;;:::i;:::-;40574:8;40562:9;;:20;;;;:::i;:::-;40549:9;:33;;40541:64;;;;-1:-1:-1;;;40541:64:0;;14830:2:1;40541:64:0;;;14812:21:1;14869:2;14849:18;;;14842:30;-1:-1:-1;;;14888:18:1;;;14881:48;14946:18;;40541:64:0;14628:342:1;40541:64:0;40614:31;40624:10;40636:8;40614:9;:31::i;27807:288::-;-1:-1:-1;;;;;27902:24:0;;20792:10;27902:24;;27894:63;;;;-1:-1:-1;;;27894:63:0;;15177:2:1;27894:63:0;;;15159:21:1;15216:2;15196:18;;;15189:30;15255:28;15235:18;;;15228:56;15301:18;;27894:63:0;14975:350:1;27894:63:0;20792:10;27970:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27970:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27970:53:0;;;;;;;;;;28039:48;;540:41:1;;;27970:42:0;;20792:10;28039:48;;513:18:1;28039:48:0;;;;;;;27807:288;;:::o;41708:110::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;41786:13:::1;:26:::0;;-1:-1:-1;;;;;;41786:26:0::1;-1:-1:-1::0;;;;;41786:26:0;;;::::1;::::0;;;::::1;::::0;;41708:110::o;28878:355::-;29037:28;29047:4;29053:2;29057:7;29037:9;:28::i;:::-;29098:48;29121:4;29127:2;29131:7;29140:5;29098:22;:48::i;:::-;29076:149;;;;-1:-1:-1;;;29076:149:0;;;;;;;:::i;:::-;28878:355;;;;:::o;41154:102::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;41222:14:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;41222:28:0::1;-1:-1:-1::0;;;;41222:28:0;;::::1;::::0;;;::::1;::::0;;41154:102::o;39366:288::-;39439:13;39469:16;39477:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;39469:16;39461:76;;;;-1:-1:-1;;;39461:76:0;;15952:2:1;39461:76:0;;;15934:21:1;15991:2;15971:18;;;15964:30;16030:34;16010:18;;;16003:62;-1:-1:-1;;;16081:18:1;;;16074:45;16136:19;;39461:76:0;15750:411:1;39461:76:0;39577:1;39559:7;39553:21;;;;;:::i;:::-;;;:25;:95;;;;;;;;;;;;;;;;;39605:7;39614:18;:7;:16;:18::i;:::-;39588:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39546:102;39366:288;-1:-1:-1;;39366:288:0:o;39898:444::-;39957:6;;-1:-1:-1;;;39957:6:0;;;;39956:7;39948:35;;;;-1:-1:-1;;;39948:35:0;;;;;;;:::i;:::-;39999:14;;-1:-1:-1;;;39999:14:0;;;;39998:15;39990:43;;;;-1:-1:-1;;;39990:43:0;;;;;;;:::i;:::-;40076:6;;40064:8;40048:24;;:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:34;;40040:88;;;;-1:-1:-1;;;40040:88:0;;;;;;;:::i;:::-;40161:10;40145:27;;;;:15;:27;;;;;;-1:-1:-1;;;40145:35:0;:27;;;;-1:-1:-1;;;;;;40145:35:0;;;40137:62;;;;-1:-1:-1;;;40137:62:0;;18108:2:1;40137:62:0;;;18090:21:1;18147:2;18127:18;;;18120:30;-1:-1:-1;;;18166:18:1;;;18159:44;18220:18;;40137:62:0;17906:338:1;40137:62:0;40268:10;40252:27;;;;:15;:27;;;;;;40246:45;;40283:8;;40246:34;;:45;:::i;:::-;40225:10;40209:27;;;;:15;:27;;;;;:83;;-1:-1:-1;;40209:83:0;;;;;;;;40301:31;;;;:9;:31::i;41380:118::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41458:22:0;;;::::1;;::::0;;;:15:::1;:22;::::0;;;;:32;;-1:-1:-1;;41458:32:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;41380:118::o;41504:198::-;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;41601:9:::1;41596:101;41620:5;:12;41616:1;:16;41596:101;;;41680:7;41652:15;:25;41668:5;41674:1;41668:8;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;41652:25:0::1;-1:-1:-1::0;;;;;41652:25:0::1;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;41634:3;;;;;:::i;:::-;;;;41596:101;;38292:201:::0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38381:22:0;::::1;38373:73;;;::::0;-1:-1:-1;;;38373:73:0;;18651:2:1;38373:73:0::1;::::0;::::1;18633:21:1::0;18690:2;18670:18;;;18663:30;18729:34;18709:18;;;18702:62;-1:-1:-1;;;18780:18:1;;;18773:36;18826:19;;38373:73:0::1;18449:402:1::0;38373:73:0::1;38457:28;38476:8;38457:18;:28::i;40959:93::-:0;37456:6;;-1:-1:-1;;;;;37456:6:0;20792:10;37603:23;37595:68;;;;-1:-1:-1;;;37595:68:0;;;;;;;:::i;:::-;41025:9:::1;:21:::0;40959:93::o;33532:196::-;33647:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33647:29:0;-1:-1:-1;;;;;33647:29:0;;;;;;;;;33692:28;;33647:24;;33692:28;;;;;;;33532:196;;;:::o;31631:1783::-;31746:35;31784:20;31796:7;31784:11;:20::i;:::-;31859:18;;31746:58;;-1:-1:-1;31817:22:0;;-1:-1:-1;;;;;31843:34:0;20792:10;-1:-1:-1;;;;;31843:34:0;;:87;;;-1:-1:-1;20792:10:0;31894:20;31906:7;31894:11;:20::i;:::-;-1:-1:-1;;;;;31894:36:0;;31843:87;:154;;;-1:-1:-1;31964:18:0;;31947:50;;20792:10;28166:164;:::i;31947:50::-;31817:181;;32019:17;32011:80;;;;-1:-1:-1;;;32011:80:0;;19058:2:1;32011:80:0;;;19040:21:1;19097:2;19077:18;;;19070:30;19136:34;19116:18;;;19109:62;-1:-1:-1;;;19187:18:1;;;19180:48;19245:19;;32011:80:0;18856:414:1;32011:80:0;32134:4;-1:-1:-1;;;;;32112:26:0;:13;:18;;;-1:-1:-1;;;;;32112:26:0;;32104:77;;;;-1:-1:-1;;;32104:77:0;;19477:2:1;32104:77:0;;;19459:21:1;19516:2;19496:18;;;19489:30;19555:34;19535:18;;;19528:62;-1:-1:-1;;;19606:18:1;;;19599:36;19652:19;;32104:77:0;19275:402:1;32104:77:0;-1:-1:-1;;;;;32200:16:0;;32192:66;;;;-1:-1:-1;;;32192:66:0;;19884:2:1;32192:66:0;;;19866:21:1;19923:2;19903:18;;;19896:30;19962:34;19942:18;;;19935:62;-1:-1:-1;;;20013:18:1;;;20006:35;20058:19;;32192:66:0;19682:401:1;32192:66:0;32379:49;32396:1;32400:7;32409:13;:18;;;32379:8;:49::i;:::-;-1:-1:-1;;;;;32633:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;32633:31:0;;;-1:-1:-1;;;;;32633:31:0;;;-1:-1:-1;;32633:31:0;;;;;;;32679:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;32679:29:0;;;;;;;;;;;;;32755:43;;;;;;;;;;32781:15;32755:43;;;;;;;;;;32732:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;32732:66:0;;;;;;;-1:-1:-1;;;32732:66:0;;;;;;;;;;;;32633:18;33060:11;;32732:20;;33060:11;:::i;:::-;33127:1;33086:24;;;:11;:24;;;;;:29;33038:33;;-1:-1:-1;;;;;;33086:29:0;33082:227;;33150:20;33158:11;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;33150:20;33146:152;;;33218:64;;;;;;;;33233:18;;-1:-1:-1;;;;;33218:64:0;;;;;;33253:28;;;;33218:64;;;;;;;;;;-1:-1:-1;33191:24:0;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;33191:91:0;-1:-1:-1;;;;;;33191:91:0;;;;;;;;;;;;33146:152;33345:7;33341:2;-1:-1:-1;;;;;33326:27:0;33335:4;-1:-1:-1;;;;;33326:27:0;;;;;;;;;;;33364:42;31735:1679;;;31631:1783;;;:::o;29607:104::-;29676:27;29686:2;29690:8;29676:27;;;;;;;;;;;;:9;:27::i;25235:472::-;-1:-1:-1;;;;;;;;;;;;;;;;;25338:16:0;25346:7;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;25338:16;25330:71;;;;-1:-1:-1;;;25330:71:0;;20290:2:1;25330:71:0;;;20272:21:1;20329:2;20309:18;;;20302:30;20368:34;20348:18;;;20341:62;-1:-1:-1;;;20419:18:1;;;20412:40;20469:19;;25330:71:0;20088:406:1;25330:71:0;25434:7;25414:216;25468:31;25502:17;;;:11;:17;;;;;;;;;25468:51;;;;;;;;;-1:-1:-1;;;;;25468:51:0;;;;;-1:-1:-1;;;25468:51:0;;;;;;;;;;;;25538:28;25534:85;;25594:9;25235:472;-1:-1:-1;;;25235:472:0:o;25534:85::-;-1:-1:-1;25445:6:0;;;;:::i;:::-;;;;25414:216;;38653:191;38746:6;;;-1:-1:-1;;;;;38763:17:0;;;-1:-1:-1;;;;;;38763:17:0;;;;;;;38796:40;;38746:6;;;38763:17;38746:6;;38796:40;;38727:16;;38796:40;38716:128;38653:191;:::o;34293:804::-;34448:4;-1:-1:-1;;;;;34469:13:0;;3300:20;3348:8;34465:625;;34505:72;;-1:-1:-1;;;34505:72:0;;-1:-1:-1;;;;;34505:36:0;;;;;:72;;20792:10;;34556:4;;34562:7;;34571:5;;34505:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34505:72:0;;;;;;;;-1:-1:-1;;34505:72:0;;;;;;;;;;;;:::i;:::-;;;34501:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34751:13:0;;34747:273;;34794:61;;-1:-1:-1;;;34794:61:0;;;;;;;:::i;34747:273::-;34970:6;34964:13;34955:6;34951:2;34947:15;34940:38;34501:534;-1:-1:-1;;;;;;34628:55:0;-1:-1:-1;;;34628:55:0;;-1:-1:-1;34621:62:0;;34465:625;-1:-1:-1;35074:4:0;34465:625;34293:804;;;;;;:::o;398:723::-;454:13;675:10;671:53;;-1:-1:-1;;702:10:0;;;;;;;;;;;;-1:-1:-1;;;702:10:0;;;;;398:723::o;671:53::-;749:5;734:12;790:78;797:9;;790:78;;823:8;;;;:::i;:::-;;-1:-1:-1;846:10:0;;-1:-1:-1;854:2:0;846:10;;:::i;:::-;;;790:78;;;878:19;910:6;900:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;900:17:0;;878:39;;928:154;935:10;;928:154;;962:11;972:1;962:11;;:::i;:::-;;-1:-1:-1;1031:10:0;1039:2;1031:5;:10;:::i;:::-;1018:24;;:2;:24;:::i;:::-;1005:39;;988:6;995;988:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;988:56:0;;;;;;;;-1:-1:-1;1059:11:0;1068:2;1059:11;;:::i;:::-;;;928:154;;29988:1389;30111:20;30134:12;-1:-1:-1;;;;;30165:16:0;;30157:62;;;;-1:-1:-1;;;30157:62:0;;22391:2:1;30157:62:0;;;22373:21:1;22430:2;22410:18;;;22403:30;22469:34;22449:18;;;22442:62;-1:-1:-1;;;22520:18:1;;;22513:31;22561:19;;30157:62:0;22189:397:1;30157:62:0;30364:21;30372:12;29545:4;29579:12;-1:-1:-1;29569:22:0;29488:111;30364:21;30363:22;30355:64;;;;-1:-1:-1;;;30355:64:0;;22793:2:1;30355:64:0;;;22775:21:1;22832:2;22812:18;;;22805:30;22871:31;22851:18;;;22844:59;22920:18;;30355:64:0;22591:353:1;30355:64:0;30449:1;30438:8;:12;30430:60;;;;-1:-1:-1;;;30430:60:0;;23151:2:1;30430:60:0;;;23133:21:1;23190:2;23170:18;;;23163:30;23229:34;23209:18;;;23202:62;-1:-1:-1;;;23280:18:1;;;23273:33;23323:19;;30430:60:0;22949:399:1;30430:60:0;-1:-1:-1;;;;;30610:16:0;;30577:30;30610:16;;;:12;:16;;;;;;;;;30577:49;;;;;;;;;-1:-1:-1;;;;;30577:49:0;;;;;-1:-1:-1;;;30577:49:0;;;;;;;;;;;30656:135;;;;;;;;30682:19;;30577:49;;30656:135;;;30682:39;;30712:8;;30682:39;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;30771:8;30736:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30656:135:0;;;;;;-1:-1:-1;;;;;30637:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;30637:154:0;;;;;;;;;;;;30830:43;;;;;;;;;;;30856:15;30830:43;;;;;;;;30802:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30802:71:0;-1:-1:-1;;;;;;30802:71:0;;;;;;;;;;;;;;;;;;30814:12;;30934:325;30958:8;30954:1;:12;30934:325;;;30993:38;;31018:12;;-1:-1:-1;;;;;30993:38:0;;;31010:1;;30993:38;;31010:1;;30993:38;31072:59;31103:1;31107:2;31111:12;31125:5;31072:22;:59::i;:::-;31046:172;;;;-1:-1:-1;;;31046:172:0;;;;;;;:::i;:::-;31233:14;;;;:::i;:::-;;;;30968:3;;;;;:::i;:::-;;;;30934:325;;;-1:-1:-1;31271:12:0;:27;;;31309:60;28878:355;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;774:258::-;846:1;856:113;870:6;867:1;864:13;856:113;;;946:11;;;940:18;927:11;;;920:39;892:2;885:10;856:113;;;987:6;984:1;981:13;978:48;;;-1:-1:-1;;1022:1:1;1004:16;;997:27;774:258::o;1037:269::-;1090:3;1128:5;1122:12;1155:6;1150:3;1143:19;1171:63;1227:6;1220:4;1215:3;1211:14;1204:4;1197:5;1193:16;1171:63;:::i;:::-;1288:2;1267:15;-1:-1:-1;;1263:29:1;1254:39;;;;1295:4;1250:50;;1037:269;-1:-1:-1;;1037:269:1:o;1311:231::-;1460:2;1449:9;1442:21;1423:4;1480:56;1532:2;1521:9;1517:18;1509:6;1480:56;:::i;1547:180::-;1606:6;1659:2;1647:9;1638:7;1634:23;1630:32;1627:52;;;1675:1;1672;1665:12;1627:52;-1:-1:-1;1698:23:1;;1547:180;-1:-1:-1;1547:180:1:o;1940:131::-;-1:-1:-1;;;;;2015:31:1;;2005:42;;1995:70;;2061:1;2058;2051:12;2076:315;2144:6;2152;2205:2;2193:9;2184:7;2180:23;2176:32;2173:52;;;2221:1;2218;2211:12;2173:52;2260:9;2247:23;2279:31;2304:5;2279:31;:::i;:::-;2329:5;2381:2;2366:18;;;;2353:32;;-1:-1:-1;;;2076:315:1:o;2396:160::-;2461:20;;2517:13;;2510:21;2500:32;;2490:60;;2546:1;2543;2536:12;2490:60;2396:160;;;:::o;2561:180::-;2617:6;2670:2;2658:9;2649:7;2645:23;2641:32;2638:52;;;2686:1;2683;2676:12;2638:52;2709:26;2725:9;2709:26;:::i;2746:456::-;2823:6;2831;2839;2892:2;2880:9;2871:7;2867:23;2863:32;2860:52;;;2908:1;2905;2898:12;2860:52;2947:9;2934:23;2966:31;2991:5;2966:31;:::i;:::-;3016:5;-1:-1:-1;3073:2:1;3058:18;;3045:32;3086:33;3045:32;3086:33;:::i;:::-;2746:456;;3138:7;;-1:-1:-1;;;3192:2:1;3177:18;;;;3164:32;;2746:456::o;3207:615::-;3293:6;3301;3354:2;3342:9;3333:7;3329:23;3325:32;3322:52;;;3370:1;3367;3360:12;3322:52;3410:9;3397:23;3439:18;3480:2;3472:6;3469:14;3466:34;;;3496:1;3493;3486:12;3466:34;3534:6;3523:9;3519:22;3509:32;;3579:7;3572:4;3568:2;3564:13;3560:27;3550:55;;3601:1;3598;3591:12;3550:55;3641:2;3628:16;3667:2;3659:6;3656:14;3653:34;;;3683:1;3680;3673:12;3653:34;3736:7;3731:2;3721:6;3718:1;3714:14;3710:2;3706:23;3702:32;3699:45;3696:65;;;3757:1;3754;3747:12;3696:65;3788:2;3780:11;;;;;3810:6;;-1:-1:-1;3207:615:1;;-1:-1:-1;;;;3207:615:1:o;3827:127::-;3888:10;3883:3;3879:20;3876:1;3869:31;3919:4;3916:1;3909:15;3943:4;3940:1;3933:15;3959:275;4030:2;4024:9;4095:2;4076:13;;-1:-1:-1;;4072:27:1;4060:40;;4130:18;4115:34;;4151:22;;;4112:62;4109:88;;;4177:18;;:::i;:::-;4213:2;4206:22;3959:275;;-1:-1:-1;3959:275:1:o;4239:407::-;4304:5;4338:18;4330:6;4327:30;4324:56;;;4360:18;;:::i;:::-;4398:57;4443:2;4422:15;;-1:-1:-1;;4418:29:1;4449:4;4414:40;4398:57;:::i;:::-;4389:66;;4478:6;4471:5;4464:21;4518:3;4509:6;4504:3;4500:16;4497:25;4494:45;;;4535:1;4532;4525:12;4494:45;4584:6;4579:3;4572:4;4565:5;4561:16;4548:43;4638:1;4631:4;4622:6;4615:5;4611:18;4607:29;4600:40;4239:407;;;;;:::o;4651:451::-;4720:6;4773:2;4761:9;4752:7;4748:23;4744:32;4741:52;;;4789:1;4786;4779:12;4741:52;4829:9;4816:23;4862:18;4854:6;4851:30;4848:50;;;4894:1;4891;4884:12;4848:50;4917:22;;4970:4;4962:13;;4958:27;-1:-1:-1;4948:55:1;;4999:1;4996;4989:12;4948:55;5022:74;5088:7;5083:2;5070:16;5065:2;5061;5057:11;5022:74;:::i;5107:247::-;5166:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:52;;;5235:1;5232;5225:12;5187:52;5274:9;5261:23;5293:31;5318:5;5293:31;:::i;5359:315::-;5424:6;5432;5485:2;5473:9;5464:7;5460:23;5456:32;5453:52;;;5501:1;5498;5491:12;5453:52;5540:9;5527:23;5559:31;5584:5;5559:31;:::i;:::-;5609:5;-1:-1:-1;5633:35:1;5664:2;5649:18;;5633:35;:::i;:::-;5623:45;;5359:315;;;;;:::o;5939:795::-;6034:6;6042;6050;6058;6111:3;6099:9;6090:7;6086:23;6082:33;6079:53;;;6128:1;6125;6118:12;6079:53;6167:9;6154:23;6186:31;6211:5;6186:31;:::i;:::-;6236:5;-1:-1:-1;6293:2:1;6278:18;;6265:32;6306:33;6265:32;6306:33;:::i;:::-;6358:7;-1:-1:-1;6412:2:1;6397:18;;6384:32;;-1:-1:-1;6467:2:1;6452:18;;6439:32;6494:18;6483:30;;6480:50;;;6526:1;6523;6516:12;6480:50;6549:22;;6602:4;6594:13;;6590:27;-1:-1:-1;6580:55:1;;6631:1;6628;6621:12;6580:55;6654:74;6720:7;6715:2;6702:16;6697:2;6693;6689:11;6654:74;:::i;:::-;6644:84;;;5939:795;;;;;;;:::o;6739:269::-;6796:6;6849:2;6837:9;6828:7;6824:23;6820:32;6817:52;;;6865:1;6862;6855:12;6817:52;6904:9;6891:23;6954:4;6947:5;6943:16;6936:5;6933:27;6923:55;;6974:1;6971;6964:12;7213:388;7281:6;7289;7342:2;7330:9;7321:7;7317:23;7313:32;7310:52;;;7358:1;7355;7348:12;7310:52;7397:9;7384:23;7416:31;7441:5;7416:31;:::i;:::-;7466:5;-1:-1:-1;7523:2:1;7508:18;;7495:32;7536:33;7495:32;7536:33;:::i;:::-;7588:7;7578:17;;;7213:388;;;;;:::o;7606:166::-;7673:20;;-1:-1:-1;;;;;;7722:25:1;;7712:36;;7702:64;;7762:1;7759;7752:12;7777:319;7844:6;7852;7905:2;7893:9;7884:7;7880:23;7876:32;7873:52;;;7921:1;7918;7911:12;7873:52;7960:9;7947:23;7979:31;8004:5;7979:31;:::i;:::-;8029:5;-1:-1:-1;8053:37:1;8086:2;8071:18;;8053:37;:::i;8101:1095::-;8193:6;8201;8254:2;8242:9;8233:7;8229:23;8225:32;8222:52;;;8270:1;8267;8260:12;8222:52;8310:9;8297:23;8339:18;8380:2;8372:6;8369:14;8366:34;;;8396:1;8393;8386:12;8366:34;8434:6;8423:9;8419:22;8409:32;;8479:7;8472:4;8468:2;8464:13;8460:27;8450:55;;8501:1;8498;8491:12;8450:55;8537:2;8524:16;8559:4;8582:2;8578;8575:10;8572:36;;;8588:18;;:::i;:::-;8634:2;8631:1;8627:10;8617:20;;8657:28;8681:2;8677;8673:11;8657:28;:::i;:::-;8719:15;;;8789:11;;;8785:20;;;8750:12;;;;8817:19;;;8814:39;;;8849:1;8846;8839:12;8814:39;8873:11;;;;8893:217;8909:6;8904:3;8901:15;8893:217;;;8989:3;8976:17;8963:30;;9006:31;9031:5;9006:31;:::i;:::-;9050:18;;;8926:12;;;;9088;;;;8893:217;;;9129:5;-1:-1:-1;9153:37:1;;-1:-1:-1;9171:18:1;;;9153:37;:::i;:::-;9143:47;;;;;;8101:1095;;;;;:::o;9201:380::-;9280:1;9276:12;;;;9323;;;9344:61;;9398:4;9390:6;9386:17;9376:27;;9344:61;9451:2;9443:6;9440:14;9420:18;9417:38;9414:161;;;9497:10;9492:3;9488:20;9485:1;9478:31;9532:4;9529:1;9522:15;9560:4;9557:1;9550:15;9414:161;;9201:380;;;:::o;10829:356::-;11031:2;11013:21;;;11050:18;;;11043:30;11109:34;11104:2;11089:18;;11082:62;11176:2;11161:18;;10829:356::o;11190:127::-;11251:10;11246:3;11242:20;11239:1;11232:31;11282:4;11279:1;11272:15;11306:4;11303:1;11296:15;11322:125;11362:4;11390:1;11387;11384:8;11381:34;;;11395:18;;:::i;:::-;-1:-1:-1;11432:9:1;;11322:125::o;11855:135::-;11894:3;-1:-1:-1;;11915:17:1;;11912:43;;;11935:18;;:::i;:::-;-1:-1:-1;11982:1:1;11971:13;;11855:135::o;13024:127::-;13085:10;13080:3;13076:20;13073:1;13066:31;13116:4;13113:1;13106:15;13140:4;13137:1;13130:15;13568:339;13770:2;13752:21;;;13809:2;13789:18;;;13782:30;-1:-1:-1;;;13843:2:1;13828:18;;13821:45;13898:2;13883:18;;13568:339::o;13912:128::-;13952:3;13983:1;13979:6;13976:1;13973:13;13970:39;;;13989:18;;:::i;:::-;-1:-1:-1;14025:9:1;;13912:128::o;14045:405::-;14247:2;14229:21;;;14286:2;14266:18;;;14259:30;14325:34;14320:2;14305:18;;14298:62;-1:-1:-1;;;14391:2:1;14376:18;;14369:39;14440:3;14425:19;;14045:405::o;14455:168::-;14495:7;14561:1;14557;14553:6;14549:14;14546:1;14543:21;14538:1;14531:9;14524:17;14520:45;14517:71;;;14568:18;;:::i;:::-;-1:-1:-1;14608:9:1;;14455:168::o;15330:415::-;15532:2;15514:21;;;15571:2;15551:18;;;15544:30;15610:34;15605:2;15590:18;;15583:62;-1:-1:-1;;;15676:2:1;15661:18;;15654:49;15735:3;15720:19;;15330:415::o;16292:185::-;16334:3;16372:5;16366:12;16387:52;16432:6;16427:3;16420:4;16413:5;16409:16;16387:52;:::i;:::-;16455:16;;;;;16292:185;-1:-1:-1;;16292:185:1:o;16600:1301::-;16877:3;16906:1;16939:6;16933:13;16969:3;16991:1;17019:9;17015:2;17011:18;17001:28;;17079:2;17068:9;17064:18;17101;17091:61;;17145:4;17137:6;17133:17;17123:27;;17091:61;17171:2;17219;17211:6;17208:14;17188:18;17185:38;17182:165;;;-1:-1:-1;;;17246:33:1;;17302:4;17299:1;17292:15;17332:4;17253:3;17320:17;17182:165;17363:18;17390:104;;;;17508:1;17503:320;;;;17356:467;;17390:104;-1:-1:-1;;17423:24:1;;17411:37;;17468:16;;;;-1:-1:-1;17390:104:1;;17503:320;16239:1;16232:14;;;16276:4;16263:18;;17598:1;17612:165;17626:6;17623:1;17620:13;17612:165;;;17704:14;;17691:11;;;17684:35;17747:16;;;;17641:10;;17612:165;;;17616:3;;17806:6;17801:3;17797:16;17790:23;;17356:467;;;;;;;17839:56;17864:30;17890:3;17882:6;17864:30;:::i;:::-;-1:-1:-1;;;16542:20:1;;16587:1;16578:11;;16482:113;17839:56;17832:63;16600:1301;-1:-1:-1;;;;;16600:1301:1:o;18249:195::-;18287:4;18324;18321:1;18317:12;18356:4;18353:1;18349:12;18381:3;18376;18373:12;18370:38;;;18388:18;;:::i;:::-;18425:13;;;18249:195;-1:-1:-1;;;18249:195:1:o;20499:136::-;20538:3;20566:5;20556:39;;20575:18;;:::i;:::-;-1:-1:-1;;;20611:18:1;;20499:136::o;21056:500::-;-1:-1:-1;;;;;21325:15:1;;;21307:34;;21377:15;;21372:2;21357:18;;21350:43;21424:2;21409:18;;21402:34;;;21472:3;21467:2;21452:18;;21445:31;;;21250:4;;21493:57;;21530:19;;21522:6;21493:57;:::i;:::-;21485:65;21056:500;-1:-1:-1;;;;;;21056:500:1:o;21561:249::-;21630:6;21683:2;21671:9;21662:7;21658:23;21654:32;21651:52;;;21699:1;21696;21689:12;21651:52;21731:9;21725:16;21750:30;21774:5;21750:30;:::i;21815:127::-;21876:10;21871:3;21867:20;21864:1;21857:31;21907:4;21904:1;21897:15;21931:4;21928:1;21921:15;21947:120;21987:1;22013;22003:35;;22018:18;;:::i;:::-;-1:-1:-1;22052:9:1;;21947:120::o;22072:112::-;22104:1;22130;22120:35;;22135:18;;:::i;:::-;-1:-1:-1;22169:9:1;;22072:112::o;23353:253::-;23393:3;-1:-1:-1;;;;;23482:2:1;23479:1;23475:10;23512:2;23509:1;23505:10;23543:3;23539:2;23535:12;23530:3;23527:21;23524:47;;;23551:18;;:::i;:::-;23587:13;;23353:253;-1:-1:-1;;;;23353:253:1:o

Swarm Source

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