ETH Price: $2,390.43 (+0.05%)

Token

Bags (BAGS)
 

Overview

Max Total Supply

999 BAGS

Holders

270

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BAGS
0x0c70c309536dE9Aa4957cc78483fAeD8B51534C3
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:
bags

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-05
*/

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

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

// SPDX-License-Identifier: MIT
// 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/token/ERC721/IERC721.sol


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

pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}


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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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


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




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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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


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


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

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

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

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

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

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

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

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

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


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


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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


// File contracts/Bags.sol



pragma solidity >=0.8.9 <0.9.0;
contract bags is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistClaimed;

  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri;
  
  uint256 public cost;
  uint256 public maxSupply;
  uint256 public maxMintAmountPerTx;

  bool public paused = true;
  bool public whitelistMintEnabled = false;
  bool public revealed = false;

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol,
    uint256 _cost,
    uint256 _maxSupply,
    uint256 _maxMintAmountPerTx,
    string memory _hiddenMetadataUri
  ) ERC721A(_tokenName, _tokenSymbol) {
    setCost(_cost);
    maxSupply = _maxSupply;
    setMaxMintAmountPerTx(_maxMintAmountPerTx);
    setHiddenMetadataUri(_hiddenMetadataUri);
  }

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

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

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    // Verify whitelist requirements
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!whitelistClaimed[_msgSender()], 'Address already claimed!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');

    whitelistClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');

    _safeMint(_msgSender(), _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      if (_exists(currentTokenId)) {
        TokenOwnership memory ownership = _ownerships[currentTokenId];

        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;

          ownedTokenIndex++;
        }
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

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

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

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

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

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

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

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

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

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

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

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"},{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600c90805190602001906200002b92919062000496565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d90805190602001906200007992919062000496565b506001601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506000601260026101000a81548160ff021916908315150217905550348015620000d857600080fd5b506040516200533b3803806200533b8339818101604052810190620000fe91906200071e565b858581600290805190602001906200011892919062000496565b5080600390805190602001906200013192919062000496565b5062000142620001b860201b60201c565b60008190555050506200016a6200015e620001c160201b60201c565b620001c960201b60201c565b600160098190555062000183846200028f60201b60201c565b826010819055506200019b826200032860201b60201c565b620001ac81620003c160201b60201c565b505050505050620008fe565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200029f620001c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c56200046c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003159062000878565b60405180910390fd5b80600f8190555050565b62000338620001c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200035e6200046c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003b7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003ae9062000878565b60405180910390fd5b8060118190555050565b620003d1620001c160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003f76200046c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004479062000878565b60405180910390fd5b80600e90805190602001906200046892919062000496565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004a490620008c9565b90600052602060002090601f016020900481019282620004c8576000855562000514565b82601f10620004e357805160ff191683800117855562000514565b8280016001018555821562000514579182015b8281111562000513578251825591602001919060010190620004f6565b5b50905062000523919062000527565b5090565b5b808211156200054257600081600090555060010162000528565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620005af8262000564565b810181811067ffffffffffffffff82111715620005d157620005d062000575565b5b80604052505050565b6000620005e662000546565b9050620005f48282620005a4565b919050565b600067ffffffffffffffff82111562000617576200061662000575565b5b620006228262000564565b9050602081019050919050565b60005b838110156200064f57808201518184015260208101905062000632565b838111156200065f576000848401525b50505050565b60006200067c6200067684620005f9565b620005da565b9050828152602081018484840111156200069b576200069a6200055f565b5b620006a88482856200062f565b509392505050565b600082601f830112620006c857620006c76200055a565b5b8151620006da84826020860162000665565b91505092915050565b6000819050919050565b620006f881620006e3565b81146200070457600080fd5b50565b6000815190506200071881620006ed565b92915050565b60008060008060008060c087890312156200073e576200073d62000550565b5b600087015167ffffffffffffffff8111156200075f576200075e62000555565b5b6200076d89828a01620006b0565b965050602087015167ffffffffffffffff81111562000791576200079062000555565b5b6200079f89828a01620006b0565b9550506040620007b289828a0162000707565b9450506060620007c589828a0162000707565b9350506080620007d889828a0162000707565b92505060a087015167ffffffffffffffff811115620007fc57620007fb62000555565b5b6200080a89828a01620006b0565b9150509295509295509295565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006200086060208362000817565b91506200086d8262000828565b602082019050919050565b60006020820190508181036000830152620008938162000851565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620008e257607f821691505b602082108103620008f857620008f76200089a565b5b50919050565b614a2d806200090e6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb011461086e578063db4bec4414610899578063e0a80853146108d6578063e985e9c5146108ff578063efbd73f41461093c578063f2fde38b1461096557610251565b8063b071401b1461079a578063b767a098146107c3578063b88d4fde146107ec578063c87b56dd14610815578063d2cab0561461085257610251565b806394354fd0116100fd57806394354fd0146106d457806395d89b41146106ff578063a0712d681461072a578063a22cb46514610746578063a45ba8e71461076f57610251565b806370a0823114610603578063715018a6146106405780637cb64759146106575780637ec4a659146106805780638da5cb5b146106a957610251565b80633ccfd60b116101d2578063518302271161019657806351830227146104ef5780635503a0e81461051a5780635c975abb1461054557806362b99ad4146105705780636352211e1461059b5780636caede3d146105d857610251565b80633ccfd60b1461042057806342842e0e14610437578063438b63001461046057806344a0d68a1461049d5780634fdd43cb146104c657610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780632eb4a7ab146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906136fe565b61098e565b60405161028a9190613746565b60405180910390f35b34801561029f57600080fd5b506102a8610a70565b6040516102b591906137fa565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613852565b610b02565b6040516102f291906138c0565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613907565b610b7e565b005b34801561033057600080fd5b50610339610c88565b6040516103469190613956565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613aa6565b610c8e565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613b1b565b610d24565b005b3480156103ad57600080fd5b506103b6610dbd565b6040516103c39190613956565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613b48565b610dd4565b005b34801561040157600080fd5b5061040a610de4565b6040516104179190613bb4565b60405180910390f35b34801561042c57600080fd5b50610435610dea565b005b34801561044357600080fd5b5061045e60048036038101906104599190613b48565b610f3b565b005b34801561046c57600080fd5b5061048760048036038101906104829190613bcf565b610f5b565b6040516104949190613cba565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613852565b611174565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613aa6565b6111fa565b005b3480156104fb57600080fd5b50610504611290565b6040516105119190613746565b60405180910390f35b34801561052657600080fd5b5061052f6112a3565b60405161053c91906137fa565b60405180910390f35b34801561055157600080fd5b5061055a611331565b6040516105679190613746565b60405180910390f35b34801561057c57600080fd5b50610585611344565b60405161059291906137fa565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613852565b6113d2565b6040516105cf91906138c0565b60405180910390f35b3480156105e457600080fd5b506105ed6113e8565b6040516105fa9190613746565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613bcf565b6113fb565b6040516106379190613956565b60405180910390f35b34801561064c57600080fd5b506106556114ca565b005b34801561066357600080fd5b5061067e60048036038101906106799190613d08565b611552565b005b34801561068c57600080fd5b506106a760048036038101906106a29190613aa6565b6115d8565b005b3480156106b557600080fd5b506106be61166e565b6040516106cb91906138c0565b60405180910390f35b3480156106e057600080fd5b506106e9611698565b6040516106f69190613956565b60405180910390f35b34801561070b57600080fd5b5061071461169e565b60405161072191906137fa565b60405180910390f35b610744600480360381019061073f9190613852565b611730565b005b34801561075257600080fd5b5061076d60048036038101906107689190613d35565b611890565b005b34801561077b57600080fd5b50610784611a07565b60405161079191906137fa565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613852565b611a95565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613b1b565b611b1b565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613e16565b611bb4565b005b34801561082157600080fd5b5061083c60048036038101906108379190613852565b611c30565b60405161084991906137fa565b60405180910390f35b61086c60048036038101906108679190613ef9565b611d88565b005b34801561087a57600080fd5b5061088361209c565b6040516108909190613956565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190613bcf565b6120a2565b6040516108cd9190613746565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613b1b565b6120c2565b005b34801561090b57600080fd5b5061092660048036038101906109219190613f59565b61215b565b6040516109339190613746565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613f99565b6121ef565b005b34801561097157600080fd5b5061098c60048036038101906109879190613bcf565b612323565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a688261241a565b5b9050919050565b606060028054610a7f90614008565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90614008565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b5050505050905090565b6000610b0d82612484565b610b43576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b89826113d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0f6124d2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c415750610c3f81610c3a6124d2565b61215b565b155b15610c78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c838383836124da565b505050565b600f5481565b610c966124d2565b73ffffffffffffffffffffffffffffffffffffffff16610cb461166e565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190614085565b60405180910390fd5b80600d9080519060200190610d209291906135ac565b5050565b610d2c6124d2565b73ffffffffffffffffffffffffffffffffffffffff16610d4a61166e565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790614085565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610dc761258c565b6001546000540303905090565b610ddf838383612595565b505050565b600a5481565b610df26124d2565b73ffffffffffffffffffffffffffffffffffffffff16610e1061166e565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90614085565b60405180910390fd5b600260095403610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906140f1565b60405180910390fd5b60026009819055506000610ebd61166e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ee090614142565b60006040518083038185875af1925050503d8060008114610f1d576040519150601f19603f3d011682016040523d82523d6000602084013e610f22565b606091505b5050905080610f3057600080fd5b506001600981905550565b610f5683838360405180602001604052806000815250611bb4565b505050565b60606000610f68836113fb565b905060008167ffffffffffffffff811115610f8657610f8561397b565b5b604051908082528060200260200182016040528015610fb45781602001602082028036833780820191505090505b5090506000610fc161258c565b90506000805b8482108015610fd857506010548311155b1561116757610fe683612484565b15611154576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f057806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611152578385848151811061113757611136614157565b5b602002602001018181525050828061114e906141b5565b9350505b505b828061115f906141b5565b935050610fc7565b8395505050505050919050565b61117c6124d2565b73ffffffffffffffffffffffffffffffffffffffff1661119a61166e565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790614085565b60405180910390fd5b80600f8190555050565b6112026124d2565b73ffffffffffffffffffffffffffffffffffffffff1661122061166e565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90614085565b60405180910390fd5b80600e908051906020019061128c9291906135ac565b5050565b601260029054906101000a900460ff1681565b600d80546112b090614008565b80601f01602080910402602001604051908101604052809291908181526020018280546112dc90614008565b80156113295780601f106112fe57610100808354040283529160200191611329565b820191906000526020600020905b81548152906001019060200180831161130c57829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600c805461135190614008565b80601f016020809104026020016040519081016040528092919081815260200182805461137d90614008565b80156113ca5780601f1061139f576101008083540402835291602001916113ca565b820191906000526020600020905b8154815290600101906020018083116113ad57829003601f168201915b505050505081565b60006113dd82612a49565b600001519050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611462576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114d26124d2565b73ffffffffffffffffffffffffffffffffffffffff166114f061166e565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90614085565b60405180910390fd5b6115506000612cd8565b565b61155a6124d2565b73ffffffffffffffffffffffffffffffffffffffff1661157861166e565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590614085565b60405180910390fd5b80600a8190555050565b6115e06124d2565b73ffffffffffffffffffffffffffffffffffffffff166115fe61166e565b73ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90614085565b60405180910390fd5b80600c908051906020019061166a9291906135ac565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546116ad90614008565b80601f01602080910402602001604051908101604052809291908181526020018280546116d990614008565b80156117265780601f106116fb57610100808354040283529160200191611726565b820191906000526020600020905b81548152906001019060200180831161170957829003601f168201915b5050505050905090565b8060008111801561174357506011548111155b611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990614249565b60405180910390fd5b6010548161178e610dbd565b6117989190614269565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061430b565b60405180910390fd5b8180600f546117e8919061432b565b34101561182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906143d1565b60405180910390fd5b601260009054906101000a900460ff161561187a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118719061443d565b60405180910390fd5b61188b6118856124d2565b84612d9e565b505050565b6118986124d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119096124d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b66124d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fb9190613746565b60405180910390a35050565b600e8054611a1490614008565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4090614008565b8015611a8d5780601f10611a6257610100808354040283529160200191611a8d565b820191906000526020600020905b815481529060010190602001808311611a7057829003601f168201915b505050505081565b611a9d6124d2565b73ffffffffffffffffffffffffffffffffffffffff16611abb61166e565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614085565b60405180910390fd5b8060118190555050565b611b236124d2565b73ffffffffffffffffffffffffffffffffffffffff16611b4161166e565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614085565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b611bbf848484612595565b611bde8373ffffffffffffffffffffffffffffffffffffffff16612dbc565b8015611bf35750611bf184848484612ddf565b155b15611c2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c3b82612484565b611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906144cf565b60405180910390fd5b60001515601260029054906101000a900460ff16151503611d2757600e8054611ca290614008565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce90614008565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b50505050509050611d83565b6000611d31612f2f565b90506000815111611d515760405180602001604052806000815250611d7f565b80611d5b84612fc1565b600d604051602001611d6f939291906145bf565b6040516020818303038152906040525b9150505b919050565b82600081118015611d9b57506011548111155b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190614249565b60405180910390fd5b60105481611de6610dbd565b611df09190614269565b1115611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e289061430b565b60405180910390fd5b8380600f54611e40919061432b565b341015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e79906143d1565b60405180910390fd5b601260019054906101000a900460ff16611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614662565b60405180910390fd5b600b6000611edd6124d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c906146ce565b60405180910390fd5b6000611f6f6124d2565b604051602001611f7f9190614736565b604051602081830303815290604052805190602001209050611fe5858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613121565b612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b9061479d565b60405180910390fd5b6001600b60006120326124d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061209461208e6124d2565b87612d9e565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6120ca6124d2565b73ffffffffffffffffffffffffffffffffffffffff166120e861166e565b73ffffffffffffffffffffffffffffffffffffffff161461213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590614085565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561220257506011548111155b612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890614249565b60405180910390fd5b6010548161224d610dbd565b6122579190614269565b1115612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f9061430b565b60405180910390fd5b6122a06124d2565b73ffffffffffffffffffffffffffffffffffffffff166122be61166e565b73ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614085565b60405180910390fd5b61231e8284612d9e565b505050565b61232b6124d2565b73ffffffffffffffffffffffffffffffffffffffff1661234961166e565b73ffffffffffffffffffffffffffffffffffffffff161461239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690614085565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361240e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124059061482f565b60405180910390fd5b61241781612cd8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161248f61258c565b1115801561249e575060005482105b80156124cb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006125a082612a49565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461260b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661262c6124d2565b73ffffffffffffffffffffffffffffffffffffffff16148061265b575061265a856126556124d2565b61215b565b5b806126a057506126696124d2565b73ffffffffffffffffffffffffffffffffffffffff1661268884610b02565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126d9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361273f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61274c8585856001613138565b612758600084876124da565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036129d75760005482146129d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a42858585600161313e565b5050505050565b612a51613632565b600082905080612a5f61258c565b11158015612a6e575060005481105b15612ca1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c9f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b83578092505050612cd3565b5b600115612c9e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c99578092505050612cd3565b612b84565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612db8828260405180602001604052806000815250613144565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e056124d2565b8786866040518563ffffffff1660e01b8152600401612e2794939291906148a4565b6020604051808303816000875af1925050508015612e6357506040513d601f19601f82011682018060405250810190612e609190614905565b60015b612edc573d8060008114612e93576040519150601f19603f3d011682016040523d82523d6000602084013e612e98565b606091505b506000815103612ed4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612f3e90614008565b80601f0160208091040260200160405190810160405280929190818152602001828054612f6a90614008565b8015612fb75780601f10612f8c57610100808354040283529160200191612fb7565b820191906000526020600020905b815481529060010190602001808311612f9a57829003601f168201915b5050505050905090565b606060008203613008576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061311c565b600082905060005b6000821461303a578080613023906141b5565b915050600a826130339190614961565b9150613010565b60008167ffffffffffffffff8111156130565761305561397b565b5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b60008514613115576001826130a19190614992565b9150600a856130b091906149c6565b60306130bc9190614269565b60f81b8183815181106130d2576130d1614157565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561310e9190614961565b945061308c565b8093505050505b919050565b60008261312e8584613156565b1490509392505050565b50505050565b50505050565b61315183838360016131cb565b505050565b60008082905060005b84518110156131c057600085828151811061317d5761317c614157565b5b6020026020010151905080831161319f576131988382613595565b92506131ac565b6131a98184613595565b92505b5080806131b8906141b5565b91505061315f565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613237576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613271576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61327e6000868387613138565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561344857506134478773ffffffffffffffffffffffffffffffffffffffff16612dbc565b5b1561350d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134bd6000888480600101955088612ddf565b6134f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361344e57826000541461350857600080fd5b613578565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361350e575b81600081905550505061358e600086838761313e565b5050505050565b600082600052816020526040600020905092915050565b8280546135b890614008565b90600052602060002090601f0160209004810192826135da5760008555613621565b82601f106135f357805160ff1916838001178555613621565b82800160010185558215613621579182015b82811115613620578251825591602001919060010190613605565b5b50905061362e9190613675565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561368e576000816000905550600101613676565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136db816136a6565b81146136e657600080fd5b50565b6000813590506136f8816136d2565b92915050565b6000602082840312156137145761371361369c565b5b6000613722848285016136e9565b91505092915050565b60008115159050919050565b6137408161372b565b82525050565b600060208201905061375b6000830184613737565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561379b578082015181840152602081019050613780565b838111156137aa576000848401525b50505050565b6000601f19601f8301169050919050565b60006137cc82613761565b6137d6818561376c565b93506137e681856020860161377d565b6137ef816137b0565b840191505092915050565b6000602082019050818103600083015261381481846137c1565b905092915050565b6000819050919050565b61382f8161381c565b811461383a57600080fd5b50565b60008135905061384c81613826565b92915050565b6000602082840312156138685761386761369c565b5b60006138768482850161383d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138aa8261387f565b9050919050565b6138ba8161389f565b82525050565b60006020820190506138d560008301846138b1565b92915050565b6138e48161389f565b81146138ef57600080fd5b50565b600081359050613901816138db565b92915050565b6000806040838503121561391e5761391d61369c565b5b600061392c858286016138f2565b925050602061393d8582860161383d565b9150509250929050565b6139508161381c565b82525050565b600060208201905061396b6000830184613947565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139b3826137b0565b810181811067ffffffffffffffff821117156139d2576139d161397b565b5b80604052505050565b60006139e5613692565b90506139f182826139aa565b919050565b600067ffffffffffffffff821115613a1157613a1061397b565b5b613a1a826137b0565b9050602081019050919050565b82818337600083830152505050565b6000613a49613a44846139f6565b6139db565b905082815260208101848484011115613a6557613a64613976565b5b613a70848285613a27565b509392505050565b600082601f830112613a8d57613a8c613971565b5b8135613a9d848260208601613a36565b91505092915050565b600060208284031215613abc57613abb61369c565b5b600082013567ffffffffffffffff811115613ada57613ad96136a1565b5b613ae684828501613a78565b91505092915050565b613af88161372b565b8114613b0357600080fd5b50565b600081359050613b1581613aef565b92915050565b600060208284031215613b3157613b3061369c565b5b6000613b3f84828501613b06565b91505092915050565b600080600060608486031215613b6157613b6061369c565b5b6000613b6f868287016138f2565b9350506020613b80868287016138f2565b9250506040613b918682870161383d565b9150509250925092565b6000819050919050565b613bae81613b9b565b82525050565b6000602082019050613bc96000830184613ba5565b92915050565b600060208284031215613be557613be461369c565b5b6000613bf3848285016138f2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c318161381c565b82525050565b6000613c438383613c28565b60208301905092915050565b6000602082019050919050565b6000613c6782613bfc565b613c718185613c07565b9350613c7c83613c18565b8060005b83811015613cad578151613c948882613c37565b9750613c9f83613c4f565b925050600181019050613c80565b5085935050505092915050565b60006020820190508181036000830152613cd48184613c5c565b905092915050565b613ce581613b9b565b8114613cf057600080fd5b50565b600081359050613d0281613cdc565b92915050565b600060208284031215613d1e57613d1d61369c565b5b6000613d2c84828501613cf3565b91505092915050565b60008060408385031215613d4c57613d4b61369c565b5b6000613d5a858286016138f2565b9250506020613d6b85828601613b06565b9150509250929050565b600067ffffffffffffffff821115613d9057613d8f61397b565b5b613d99826137b0565b9050602081019050919050565b6000613db9613db484613d75565b6139db565b905082815260208101848484011115613dd557613dd4613976565b5b613de0848285613a27565b509392505050565b600082601f830112613dfd57613dfc613971565b5b8135613e0d848260208601613da6565b91505092915050565b60008060008060808587031215613e3057613e2f61369c565b5b6000613e3e878288016138f2565b9450506020613e4f878288016138f2565b9350506040613e608782880161383d565b925050606085013567ffffffffffffffff811115613e8157613e806136a1565b5b613e8d87828801613de8565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613eb957613eb8613971565b5b8235905067ffffffffffffffff811115613ed657613ed5613e99565b5b602083019150836020820283011115613ef257613ef1613e9e565b5b9250929050565b600080600060408486031215613f1257613f1161369c565b5b6000613f208682870161383d565b935050602084013567ffffffffffffffff811115613f4157613f406136a1565b5b613f4d86828701613ea3565b92509250509250925092565b60008060408385031215613f7057613f6f61369c565b5b6000613f7e858286016138f2565b9250506020613f8f858286016138f2565b9150509250929050565b60008060408385031215613fb057613faf61369c565b5b6000613fbe8582860161383d565b9250506020613fcf858286016138f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061402057607f821691505b60208210810361403357614032613fd9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406f60208361376c565b915061407a82614039565b602082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006140db601f8361376c565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b600081905092915050565b50565b600061412c600083614111565b91506141378261411c565b600082019050919050565b600061414d8261411f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141c08261381c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141f2576141f1614186565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061423360148361376c565b915061423e826141fd565b602082019050919050565b6000602082019050818103600083015261426281614226565b9050919050565b60006142748261381c565b915061427f8361381c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142b4576142b3614186565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006142f560148361376c565b9150614300826142bf565b602082019050919050565b60006020820190508181036000830152614324816142e8565b9050919050565b60006143368261381c565b91506143418361381c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437a57614379614186565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006143bb60138361376c565b91506143c682614385565b602082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061442760178361376c565b9150614432826143f1565b602082019050919050565b600060208201905081810360008301526144568161441a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144b9602f8361376c565b91506144c48261445d565b604082019050919050565b600060208201905081810360008301526144e8816144ac565b9050919050565b600081905092915050565b600061450582613761565b61450f81856144ef565b935061451f81856020860161377d565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461454d81614008565b61455781866144ef565b945060018216600081146145725760018114614583576145b6565b60ff198316865281860193506145b6565b61458c8561452b565b60005b838110156145ae5781548189015260018201915060208101905061458f565b838801955050505b50505092915050565b60006145cb82866144fa565b91506145d782856144fa565b91506145e38284614540565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061464c60228361376c565b9150614657826145f0565b604082019050919050565b6000602082019050818103600083015261467b8161463f565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006146b860188361376c565b91506146c382614682565b602082019050919050565b600060208201905081810360008301526146e7816146ab565b9050919050565b60008160601b9050919050565b6000614706826146ee565b9050919050565b6000614718826146fb565b9050919050565b61473061472b8261389f565b61470d565b82525050565b6000614742828461471f565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614787600e8361376c565b915061479282614751565b602082019050919050565b600060208201905081810360008301526147b68161477a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061481960268361376c565b9150614824826147bd565b604082019050919050565b600060208201905081810360008301526148488161480c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148768261484f565b614880818561485a565b935061489081856020860161377d565b614899816137b0565b840191505092915050565b60006080820190506148b960008301876138b1565b6148c660208301866138b1565b6148d36040830185613947565b81810360608301526148e5818461486b565b905095945050505050565b6000815190506148ff816136d2565b92915050565b60006020828403121561491b5761491a61369c565b5b6000614929848285016148f0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061496c8261381c565b91506149778361381c565b92508261498757614986614932565b5b828204905092915050565b600061499d8261381c565b91506149a88361381c565b9250828210156149bb576149ba614186565b5b828203905092915050565b60006149d18261381c565b91506149dc8361381c565b9250826149ec576149eb614932565b5b82820690509291505056fea2646970667358221220ff5ff4df3a4514aa2d5074570ea7df7dbb9b0991e5d154385174f7ebf902b16764736f6c634300080e003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000004426167730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044241475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c697066733a2f2f616263642f0000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d5abeb011161007a578063d5abeb011461086e578063db4bec4414610899578063e0a80853146108d6578063e985e9c5146108ff578063efbd73f41461093c578063f2fde38b1461096557610251565b8063b071401b1461079a578063b767a098146107c3578063b88d4fde146107ec578063c87b56dd14610815578063d2cab0561461085257610251565b806394354fd0116100fd57806394354fd0146106d457806395d89b41146106ff578063a0712d681461072a578063a22cb46514610746578063a45ba8e71461076f57610251565b806370a0823114610603578063715018a6146106405780637cb64759146106575780637ec4a659146106805780638da5cb5b146106a957610251565b80633ccfd60b116101d2578063518302271161019657806351830227146104ef5780635503a0e81461051a5780635c975abb1461054557806362b99ad4146105705780636352211e1461059b5780636caede3d146105d857610251565b80633ccfd60b1461042057806342842e0e14610437578063438b63001461046057806344a0d68a1461049d5780634fdd43cb146104c657610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780632eb4a7ab146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906136fe565b61098e565b60405161028a9190613746565b60405180910390f35b34801561029f57600080fd5b506102a8610a70565b6040516102b591906137fa565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613852565b610b02565b6040516102f291906138c0565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613907565b610b7e565b005b34801561033057600080fd5b50610339610c88565b6040516103469190613956565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613aa6565b610c8e565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613b1b565b610d24565b005b3480156103ad57600080fd5b506103b6610dbd565b6040516103c39190613956565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613b48565b610dd4565b005b34801561040157600080fd5b5061040a610de4565b6040516104179190613bb4565b60405180910390f35b34801561042c57600080fd5b50610435610dea565b005b34801561044357600080fd5b5061045e60048036038101906104599190613b48565b610f3b565b005b34801561046c57600080fd5b5061048760048036038101906104829190613bcf565b610f5b565b6040516104949190613cba565b60405180910390f35b3480156104a957600080fd5b506104c460048036038101906104bf9190613852565b611174565b005b3480156104d257600080fd5b506104ed60048036038101906104e89190613aa6565b6111fa565b005b3480156104fb57600080fd5b50610504611290565b6040516105119190613746565b60405180910390f35b34801561052657600080fd5b5061052f6112a3565b60405161053c91906137fa565b60405180910390f35b34801561055157600080fd5b5061055a611331565b6040516105679190613746565b60405180910390f35b34801561057c57600080fd5b50610585611344565b60405161059291906137fa565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190613852565b6113d2565b6040516105cf91906138c0565b60405180910390f35b3480156105e457600080fd5b506105ed6113e8565b6040516105fa9190613746565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613bcf565b6113fb565b6040516106379190613956565b60405180910390f35b34801561064c57600080fd5b506106556114ca565b005b34801561066357600080fd5b5061067e60048036038101906106799190613d08565b611552565b005b34801561068c57600080fd5b506106a760048036038101906106a29190613aa6565b6115d8565b005b3480156106b557600080fd5b506106be61166e565b6040516106cb91906138c0565b60405180910390f35b3480156106e057600080fd5b506106e9611698565b6040516106f69190613956565b60405180910390f35b34801561070b57600080fd5b5061071461169e565b60405161072191906137fa565b60405180910390f35b610744600480360381019061073f9190613852565b611730565b005b34801561075257600080fd5b5061076d60048036038101906107689190613d35565b611890565b005b34801561077b57600080fd5b50610784611a07565b60405161079191906137fa565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190613852565b611a95565b005b3480156107cf57600080fd5b506107ea60048036038101906107e59190613b1b565b611b1b565b005b3480156107f857600080fd5b50610813600480360381019061080e9190613e16565b611bb4565b005b34801561082157600080fd5b5061083c60048036038101906108379190613852565b611c30565b60405161084991906137fa565b60405180910390f35b61086c60048036038101906108679190613ef9565b611d88565b005b34801561087a57600080fd5b5061088361209c565b6040516108909190613956565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190613bcf565b6120a2565b6040516108cd9190613746565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f89190613b1b565b6120c2565b005b34801561090b57600080fd5b5061092660048036038101906109219190613f59565b61215b565b6040516109339190613746565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190613f99565b6121ef565b005b34801561097157600080fd5b5061098c60048036038101906109879190613bcf565b612323565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a5957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a695750610a688261241a565b5b9050919050565b606060028054610a7f90614008565b80601f0160208091040260200160405190810160405280929190818152602001828054610aab90614008565b8015610af85780601f10610acd57610100808354040283529160200191610af8565b820191906000526020600020905b815481529060010190602001808311610adb57829003601f168201915b5050505050905090565b6000610b0d82612484565b610b43576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b89826113d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bf0576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c0f6124d2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610c415750610c3f81610c3a6124d2565b61215b565b155b15610c78576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c838383836124da565b505050565b600f5481565b610c966124d2565b73ffffffffffffffffffffffffffffffffffffffff16610cb461166e565b73ffffffffffffffffffffffffffffffffffffffff1614610d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0190614085565b60405180910390fd5b80600d9080519060200190610d209291906135ac565b5050565b610d2c6124d2565b73ffffffffffffffffffffffffffffffffffffffff16610d4a61166e565b73ffffffffffffffffffffffffffffffffffffffff1614610da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9790614085565b60405180910390fd5b80601260006101000a81548160ff02191690831515021790555050565b6000610dc761258c565b6001546000540303905090565b610ddf838383612595565b505050565b600a5481565b610df26124d2565b73ffffffffffffffffffffffffffffffffffffffff16610e1061166e565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90614085565b60405180910390fd5b600260095403610eab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea2906140f1565b60405180910390fd5b60026009819055506000610ebd61166e565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ee090614142565b60006040518083038185875af1925050503d8060008114610f1d576040519150601f19603f3d011682016040523d82523d6000602084013e610f22565b606091505b5050905080610f3057600080fd5b506001600981905550565b610f5683838360405180602001604052806000815250611bb4565b505050565b60606000610f68836113fb565b905060008167ffffffffffffffff811115610f8657610f8561397b565b5b604051908082528060200260200182016040528015610fb45781602001602082028036833780820191505090505b5090506000610fc161258c565b90506000805b8482108015610fd857506010548311155b1561116757610fe683612484565b15611154576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110f057806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611152578385848151811061113757611136614157565b5b602002602001018181525050828061114e906141b5565b9350505b505b828061115f906141b5565b935050610fc7565b8395505050505050919050565b61117c6124d2565b73ffffffffffffffffffffffffffffffffffffffff1661119a61166e565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e790614085565b60405180910390fd5b80600f8190555050565b6112026124d2565b73ffffffffffffffffffffffffffffffffffffffff1661122061166e565b73ffffffffffffffffffffffffffffffffffffffff1614611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d90614085565b60405180910390fd5b80600e908051906020019061128c9291906135ac565b5050565b601260029054906101000a900460ff1681565b600d80546112b090614008565b80601f01602080910402602001604051908101604052809291908181526020018280546112dc90614008565b80156113295780601f106112fe57610100808354040283529160200191611329565b820191906000526020600020905b81548152906001019060200180831161130c57829003601f168201915b505050505081565b601260009054906101000a900460ff1681565b600c805461135190614008565b80601f016020809104026020016040519081016040528092919081815260200182805461137d90614008565b80156113ca5780601f1061139f576101008083540402835291602001916113ca565b820191906000526020600020905b8154815290600101906020018083116113ad57829003601f168201915b505050505081565b60006113dd82612a49565b600001519050919050565b601260019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611462576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114d26124d2565b73ffffffffffffffffffffffffffffffffffffffff166114f061166e565b73ffffffffffffffffffffffffffffffffffffffff1614611546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153d90614085565b60405180910390fd5b6115506000612cd8565b565b61155a6124d2565b73ffffffffffffffffffffffffffffffffffffffff1661157861166e565b73ffffffffffffffffffffffffffffffffffffffff16146115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590614085565b60405180910390fd5b80600a8190555050565b6115e06124d2565b73ffffffffffffffffffffffffffffffffffffffff166115fe61166e565b73ffffffffffffffffffffffffffffffffffffffff1614611654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164b90614085565b60405180910390fd5b80600c908051906020019061166a9291906135ac565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60115481565b6060600380546116ad90614008565b80601f01602080910402602001604051908101604052809291908181526020018280546116d990614008565b80156117265780601f106116fb57610100808354040283529160200191611726565b820191906000526020600020905b81548152906001019060200180831161170957829003601f168201915b5050505050905090565b8060008111801561174357506011548111155b611782576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177990614249565b60405180910390fd5b6010548161178e610dbd565b6117989190614269565b11156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d09061430b565b60405180910390fd5b8180600f546117e8919061432b565b34101561182a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611821906143d1565b60405180910390fd5b601260009054906101000a900460ff161561187a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118719061443d565b60405180910390fd5b61188b6118856124d2565b84612d9e565b505050565b6118986124d2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118fc576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119096124d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119b66124d2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119fb9190613746565b60405180910390a35050565b600e8054611a1490614008565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4090614008565b8015611a8d5780601f10611a6257610100808354040283529160200191611a8d565b820191906000526020600020905b815481529060010190602001808311611a7057829003601f168201915b505050505081565b611a9d6124d2565b73ffffffffffffffffffffffffffffffffffffffff16611abb61166e565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614085565b60405180910390fd5b8060118190555050565b611b236124d2565b73ffffffffffffffffffffffffffffffffffffffff16611b4161166e565b73ffffffffffffffffffffffffffffffffffffffff1614611b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8e90614085565b60405180910390fd5b80601260016101000a81548160ff02191690831515021790555050565b611bbf848484612595565b611bde8373ffffffffffffffffffffffffffffffffffffffff16612dbc565b8015611bf35750611bf184848484612ddf565b155b15611c2a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611c3b82612484565b611c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c71906144cf565b60405180910390fd5b60001515601260029054906101000a900460ff16151503611d2757600e8054611ca290614008565b80601f0160208091040260200160405190810160405280929190818152602001828054611cce90614008565b8015611d1b5780601f10611cf057610100808354040283529160200191611d1b565b820191906000526020600020905b815481529060010190602001808311611cfe57829003601f168201915b50505050509050611d83565b6000611d31612f2f565b90506000815111611d515760405180602001604052806000815250611d7f565b80611d5b84612fc1565b600d604051602001611d6f939291906145bf565b6040516020818303038152906040525b9150505b919050565b82600081118015611d9b57506011548111155b611dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd190614249565b60405180910390fd5b60105481611de6610dbd565b611df09190614269565b1115611e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e289061430b565b60405180910390fd5b8380600f54611e40919061432b565b341015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e79906143d1565b60405180910390fd5b601260019054906101000a900460ff16611ed1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec890614662565b60405180910390fd5b600b6000611edd6124d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5c906146ce565b60405180910390fd5b6000611f6f6124d2565b604051602001611f7f9190614736565b604051602081830303815290604052805190602001209050611fe5858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613121565b612024576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201b9061479d565b60405180910390fd5b6001600b60006120326124d2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061209461208e6124d2565b87612d9e565b505050505050565b60105481565b600b6020528060005260406000206000915054906101000a900460ff1681565b6120ca6124d2565b73ffffffffffffffffffffffffffffffffffffffff166120e861166e565b73ffffffffffffffffffffffffffffffffffffffff161461213e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213590614085565b60405180910390fd5b80601260026101000a81548160ff02191690831515021790555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8160008111801561220257506011548111155b612241576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223890614249565b60405180910390fd5b6010548161224d610dbd565b6122579190614269565b1115612298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228f9061430b565b60405180910390fd5b6122a06124d2565b73ffffffffffffffffffffffffffffffffffffffff166122be61166e565b73ffffffffffffffffffffffffffffffffffffffff1614612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614085565b60405180910390fd5b61231e8284612d9e565b505050565b61232b6124d2565b73ffffffffffffffffffffffffffffffffffffffff1661234961166e565b73ffffffffffffffffffffffffffffffffffffffff161461239f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239690614085565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361240e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124059061482f565b60405180910390fd5b61241781612cd8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161248f61258c565b1115801561249e575060005482105b80156124cb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b60006125a082612a49565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461260b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661262c6124d2565b73ffffffffffffffffffffffffffffffffffffffff16148061265b575061265a856126556124d2565b61215b565b5b806126a057506126696124d2565b73ffffffffffffffffffffffffffffffffffffffff1661268884610b02565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126d9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361273f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61274c8585856001613138565b612758600084876124da565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036129d75760005482146129d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a42858585600161313e565b5050505050565b612a51613632565b600082905080612a5f61258c565b11158015612a6e575060005481105b15612ca1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612c9f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b83578092505050612cd3565b5b600115612c9e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c99578092505050612cd3565b612b84565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612db8828260405180602001604052806000815250613144565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e056124d2565b8786866040518563ffffffff1660e01b8152600401612e2794939291906148a4565b6020604051808303816000875af1925050508015612e6357506040513d601f19601f82011682018060405250810190612e609190614905565b60015b612edc573d8060008114612e93576040519150601f19603f3d011682016040523d82523d6000602084013e612e98565b606091505b506000815103612ed4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c8054612f3e90614008565b80601f0160208091040260200160405190810160405280929190818152602001828054612f6a90614008565b8015612fb75780601f10612f8c57610100808354040283529160200191612fb7565b820191906000526020600020905b815481529060010190602001808311612f9a57829003601f168201915b5050505050905090565b606060008203613008576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061311c565b600082905060005b6000821461303a578080613023906141b5565b915050600a826130339190614961565b9150613010565b60008167ffffffffffffffff8111156130565761305561397b565b5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b60008514613115576001826130a19190614992565b9150600a856130b091906149c6565b60306130bc9190614269565b60f81b8183815181106130d2576130d1614157565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561310e9190614961565b945061308c565b8093505050505b919050565b60008261312e8584613156565b1490509392505050565b50505050565b50505050565b61315183838360016131cb565b505050565b60008082905060005b84518110156131c057600085828151811061317d5761317c614157565b5b6020026020010151905080831161319f576131988382613595565b92506131ac565b6131a98184613595565b92505b5080806131b8906141b5565b91505061315f565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603613237576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403613271576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61327e6000868387613138565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561344857506134478773ffffffffffffffffffffffffffffffffffffffff16612dbc565b5b1561350d575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134bd6000888480600101955088612ddf565b6134f3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80820361344e57826000541461350857600080fd5b613578565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480820361350e575b81600081905550505061358e600086838761313e565b5050505050565b600082600052816020526040600020905092915050565b8280546135b890614008565b90600052602060002090601f0160209004810192826135da5760008555613621565b82601f106135f357805160ff1916838001178555613621565b82800160010185558215613621579182015b82811115613620578251825591602001919060010190613605565b5b50905061362e9190613675565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561368e576000816000905550600101613676565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136db816136a6565b81146136e657600080fd5b50565b6000813590506136f8816136d2565b92915050565b6000602082840312156137145761371361369c565b5b6000613722848285016136e9565b91505092915050565b60008115159050919050565b6137408161372b565b82525050565b600060208201905061375b6000830184613737565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561379b578082015181840152602081019050613780565b838111156137aa576000848401525b50505050565b6000601f19601f8301169050919050565b60006137cc82613761565b6137d6818561376c565b93506137e681856020860161377d565b6137ef816137b0565b840191505092915050565b6000602082019050818103600083015261381481846137c1565b905092915050565b6000819050919050565b61382f8161381c565b811461383a57600080fd5b50565b60008135905061384c81613826565b92915050565b6000602082840312156138685761386761369c565b5b60006138768482850161383d565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006138aa8261387f565b9050919050565b6138ba8161389f565b82525050565b60006020820190506138d560008301846138b1565b92915050565b6138e48161389f565b81146138ef57600080fd5b50565b600081359050613901816138db565b92915050565b6000806040838503121561391e5761391d61369c565b5b600061392c858286016138f2565b925050602061393d8582860161383d565b9150509250929050565b6139508161381c565b82525050565b600060208201905061396b6000830184613947565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6139b3826137b0565b810181811067ffffffffffffffff821117156139d2576139d161397b565b5b80604052505050565b60006139e5613692565b90506139f182826139aa565b919050565b600067ffffffffffffffff821115613a1157613a1061397b565b5b613a1a826137b0565b9050602081019050919050565b82818337600083830152505050565b6000613a49613a44846139f6565b6139db565b905082815260208101848484011115613a6557613a64613976565b5b613a70848285613a27565b509392505050565b600082601f830112613a8d57613a8c613971565b5b8135613a9d848260208601613a36565b91505092915050565b600060208284031215613abc57613abb61369c565b5b600082013567ffffffffffffffff811115613ada57613ad96136a1565b5b613ae684828501613a78565b91505092915050565b613af88161372b565b8114613b0357600080fd5b50565b600081359050613b1581613aef565b92915050565b600060208284031215613b3157613b3061369c565b5b6000613b3f84828501613b06565b91505092915050565b600080600060608486031215613b6157613b6061369c565b5b6000613b6f868287016138f2565b9350506020613b80868287016138f2565b9250506040613b918682870161383d565b9150509250925092565b6000819050919050565b613bae81613b9b565b82525050565b6000602082019050613bc96000830184613ba5565b92915050565b600060208284031215613be557613be461369c565b5b6000613bf3848285016138f2565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c318161381c565b82525050565b6000613c438383613c28565b60208301905092915050565b6000602082019050919050565b6000613c6782613bfc565b613c718185613c07565b9350613c7c83613c18565b8060005b83811015613cad578151613c948882613c37565b9750613c9f83613c4f565b925050600181019050613c80565b5085935050505092915050565b60006020820190508181036000830152613cd48184613c5c565b905092915050565b613ce581613b9b565b8114613cf057600080fd5b50565b600081359050613d0281613cdc565b92915050565b600060208284031215613d1e57613d1d61369c565b5b6000613d2c84828501613cf3565b91505092915050565b60008060408385031215613d4c57613d4b61369c565b5b6000613d5a858286016138f2565b9250506020613d6b85828601613b06565b9150509250929050565b600067ffffffffffffffff821115613d9057613d8f61397b565b5b613d99826137b0565b9050602081019050919050565b6000613db9613db484613d75565b6139db565b905082815260208101848484011115613dd557613dd4613976565b5b613de0848285613a27565b509392505050565b600082601f830112613dfd57613dfc613971565b5b8135613e0d848260208601613da6565b91505092915050565b60008060008060808587031215613e3057613e2f61369c565b5b6000613e3e878288016138f2565b9450506020613e4f878288016138f2565b9350506040613e608782880161383d565b925050606085013567ffffffffffffffff811115613e8157613e806136a1565b5b613e8d87828801613de8565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613eb957613eb8613971565b5b8235905067ffffffffffffffff811115613ed657613ed5613e99565b5b602083019150836020820283011115613ef257613ef1613e9e565b5b9250929050565b600080600060408486031215613f1257613f1161369c565b5b6000613f208682870161383d565b935050602084013567ffffffffffffffff811115613f4157613f406136a1565b5b613f4d86828701613ea3565b92509250509250925092565b60008060408385031215613f7057613f6f61369c565b5b6000613f7e858286016138f2565b9250506020613f8f858286016138f2565b9150509250929050565b60008060408385031215613fb057613faf61369c565b5b6000613fbe8582860161383d565b9250506020613fcf858286016138f2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061402057607f821691505b60208210810361403357614032613fd9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061406f60208361376c565b915061407a82614039565b602082019050919050565b6000602082019050818103600083015261409e81614062565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006140db601f8361376c565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b600081905092915050565b50565b600061412c600083614111565b91506141378261411c565b600082019050919050565b600061414d8261411f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006141c08261381c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036141f2576141f1614186565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061423360148361376c565b915061423e826141fd565b602082019050919050565b6000602082019050818103600083015261426281614226565b9050919050565b60006142748261381c565b915061427f8361381c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156142b4576142b3614186565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b60006142f560148361376c565b9150614300826142bf565b602082019050919050565b60006020820190508181036000830152614324816142e8565b9050919050565b60006143368261381c565b91506143418361381c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561437a57614379614186565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006143bb60138361376c565b91506143c682614385565b602082019050919050565b600060208201905081810360008301526143ea816143ae565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b600061442760178361376c565b9150614432826143f1565b602082019050919050565b600060208201905081810360008301526144568161441a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006144b9602f8361376c565b91506144c48261445d565b604082019050919050565b600060208201905081810360008301526144e8816144ac565b9050919050565b600081905092915050565b600061450582613761565b61450f81856144ef565b935061451f81856020860161377d565b80840191505092915050565b60008190508160005260206000209050919050565b6000815461454d81614008565b61455781866144ef565b945060018216600081146145725760018114614583576145b6565b60ff198316865281860193506145b6565b61458c8561452b565b60005b838110156145ae5781548189015260018201915060208101905061458f565b838801955050505b50505092915050565b60006145cb82866144fa565b91506145d782856144fa565b91506145e38284614540565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b600061464c60228361376c565b9150614657826145f0565b604082019050919050565b6000602082019050818103600083015261467b8161463f565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b60006146b860188361376c565b91506146c382614682565b602082019050919050565b600060208201905081810360008301526146e7816146ab565b9050919050565b60008160601b9050919050565b6000614706826146ee565b9050919050565b6000614718826146fb565b9050919050565b61473061472b8261389f565b61470d565b82525050565b6000614742828461471f565b60148201915081905092915050565b7f496e76616c69642070726f6f6621000000000000000000000000000000000000600082015250565b6000614787600e8361376c565b915061479282614751565b602082019050919050565b600060208201905081810360008301526147b68161477a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061481960268361376c565b9150614824826147bd565b604082019050919050565b600060208201905081810360008301526148488161480c565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006148768261484f565b614880818561485a565b935061489081856020860161377d565b614899816137b0565b840191505092915050565b60006080820190506148b960008301876138b1565b6148c660208301866138b1565b6148d36040830185613947565b81810360608301526148e5818461486b565b905095945050505050565b6000815190506148ff816136d2565b92915050565b60006020828403121561491b5761491a61369c565b5b6000614929848285016148f0565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061496c8261381c565b91506149778361381c565b92508261498757614986614932565b5b828204905092915050565b600061499d8261381c565b91506149a88361381c565b9250828210156149bb576149ba614186565b5b828203905092915050565b60006149d18261381c565b91506149dc8361381c565b9250826149ec576149eb614932565b5b82820690509291505056fea2646970667358221220ff5ff4df3a4514aa2d5074570ea7df7dbb9b0991e5d154385174f7ebf902b16764736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e7000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000000000000000004426167730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044241475300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c697066733a2f2f616263642f0000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Bags
Arg [1] : _tokenSymbol (string): BAGS
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 999
Arg [4] : _maxMintAmountPerTx (uint256): 2
Arg [5] : _hiddenMetadataUri (string): ipfs://abcd/

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e7
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4261677300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 4241475300000000000000000000000000000000000000000000000000000000
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [11] : 697066733a2f2f616263642f0000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

50319:4841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24532:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27645:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29148:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28711:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50605:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54488:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54594:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23781:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30013:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50409:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54892:155;;;;;;;;;;;;;:::i;:::-;;30254:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52545:838;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54028:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54244:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50773:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50527:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50698:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50494:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27453:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50728:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24901:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43987:103;;;;;;;;;;;;;:::i;:::-;;54677:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54382:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43336:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50658:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27814:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52164:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29424:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50565:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54108:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54781:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30510:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53490:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51576:582;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50629:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50439:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53941:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29782:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52384:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44245:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24532:305;24634:4;24686:25;24671:40;;;:11;:40;;;;:105;;;;24743:33;24728:48;;;:11;:48;;;;24671:105;:158;;;;24793:36;24817:11;24793:23;:36::i;:::-;24671:158;24651:178;;24532:305;;;:::o;27645:100::-;27699:13;27732:5;27725:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27645:100;:::o;29148:204::-;29216:7;29241:16;29249:7;29241;:16::i;:::-;29236:64;;29266:34;;;;;;;;;;;;;;29236:64;29320:15;:24;29336:7;29320:24;;;;;;;;;;;;;;;;;;;;;29313:31;;29148:204;;;:::o;28711:371::-;28784:13;28800:24;28816:7;28800:15;:24::i;:::-;28784:40;;28845:5;28839:11;;:2;:11;;;28835:48;;28859:24;;;;;;;;;;;;;;28835:48;28916:5;28900:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;28926:37;28943:5;28950:12;:10;:12::i;:::-;28926:16;:37::i;:::-;28925:38;28900:63;28896:138;;;28987:35;;;;;;;;;;;;;;28896:138;29046:28;29055:2;29059:7;29068:5;29046:8;:28::i;:::-;28773:309;28711:371;;:::o;50605:19::-;;;;:::o;54488:100::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54572:10:::1;54560:9;:22;;;;;;;;;;;;:::i;:::-;;54488:100:::0;:::o;54594:77::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54659:6:::1;54650;;:15;;;;;;;;;;;;;;;;;;54594:77:::0;:::o;23781:303::-;23825:7;24050:15;:13;:15::i;:::-;24035:12;;24019:13;;:28;:46;24012:53;;23781:303;:::o;30013:170::-;30147:28;30157:4;30163:2;30167:7;30147:9;:28::i;:::-;30013:170;;;:::o;50409:25::-;;;;:::o;54892:155::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49303:1:::1;49901:7;;:19:::0;49893:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;49303:1;50034:7;:18;;;;54955:7:::2;54976;:5;:7::i;:::-;54968:21;;54997;54968:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54954:69;;;55038:2;55030:11;;;::::0;::::2;;54942:105;49259:1:::1;50213:7;:22;;;;54892:155::o:0;30254:185::-;30392:39;30409:4;30415:2;30419:7;30392:39;;;;;;;;;;;;:16;:39::i;:::-;30254:185;;;:::o;52545:838::-;52605:16;52630:23;52656:17;52666:6;52656:9;:17::i;:::-;52630:43;;52680:30;52727:15;52713:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52680:63;;52750:22;52775:15;:13;:15::i;:::-;52750:40;;52797:23;52831:26;52866:483;52891:15;52873;:33;:64;;;;;52928:9;;52910:14;:27;;52873:64;52866:483;;;52952:23;52960:14;52952:7;:23::i;:::-;52948:367;;;52988:31;53022:11;:27;53034:14;53022:27;;;;;;;;;;;52988:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53092:1;53066:28;;:9;:14;;;:28;;;53062:94;;53130:9;:14;;;53109:35;;53062:94;53194:6;53172:28;;:18;:28;;;53168:138;;53248:14;53215:13;53229:15;53215:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;53277:17;;;;;:::i;:::-;;;;53168:138;52977:338;52948:367;53325:16;;;;;:::i;:::-;;;;52866:483;;;53364:13;53357:20;;;;;;;52545:838;;;:::o;54028:74::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54091:5:::1;54084:4;:12;;;;54028:74:::0;:::o;54244:132::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54352:18:::1;54332:17;:38;;;;;;;;;;;;:::i;:::-;;54244:132:::0;:::o;50773:28::-;;;;;;;;;;;;;:::o;50527:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50698:25::-;;;;;;;;;;;;;:::o;50494:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27453:125::-;27517:7;27544:21;27557:7;27544:12;:21::i;:::-;:26;;;27537:33;;27453:125;;;:::o;50728:40::-;;;;;;;;;;;;;:::o;24901:206::-;24965:7;25006:1;24989:19;;:5;:19;;;24985:60;;25017:28;;;;;;;;;;;;;;24985:60;25071:12;:19;25084:5;25071:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25063:36;;25056:43;;24901:206;;;:::o;43987:103::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44052:30:::1;44079:1;44052:18;:30::i;:::-;43987:103::o:0;54677:98::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54758:11:::1;54745:10;:24;;;;54677:98:::0;:::o;54382:100::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54466:10:::1;54454:9;:22;;;;;;;;;;;;:::i;:::-;;54382:100:::0;:::o;43336:87::-;43382:7;43409:6;;;;;;;;;;;43402:13;;43336:87;:::o;50658:33::-;;;;:::o;27814:104::-;27870:13;27903:7;27896:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27814:104;:::o;52164:212::-;52229:11;51273:1;51259:11;:15;:52;;;;;51293:18;;51278:11;:33;;51259:52;51251:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51382:9;;51367:11;51351:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51343:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;52262:11:::1;51521;51514:4;;:18;;;;:::i;:::-;51501:9;:31;;51493:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52291:6:::2;;;;;;;;;;;52290:7;52282:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;52334:36;52344:12;:10;:12::i;:::-;52358:11;52334:9;:36::i;:::-;51423:1:::1;52164:212:::0;;:::o;29424:287::-;29535:12;:10;:12::i;:::-;29523:24;;:8;:24;;;29519:54;;29556:17;;;;;;;;;;;;;;29519:54;29631:8;29586:18;:32;29605:12;:10;:12::i;:::-;29586:32;;;;;;;;;;;;;;;:42;29619:8;29586:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29684:8;29655:48;;29670:12;:10;:12::i;:::-;29655:48;;;29694:8;29655:48;;;;;;:::i;:::-;;;;;;;;29424:287;;:::o;50565:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54108:130::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54213:19:::1;54192:18;:40;;;;54108:130:::0;:::o;54781:105::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54874:6:::1;54851:20;;:29;;;;;;;;;;;;;;;;;;54781:105:::0;:::o;30510:369::-;30677:28;30687:4;30693:2;30697:7;30677:9;:28::i;:::-;30720:15;:2;:13;;;:15::i;:::-;:76;;;;;30740:56;30771:4;30777:2;30781:7;30790:5;30740:30;:56::i;:::-;30739:57;30720:76;30716:156;;;30820:40;;;;;;;;;;;;;;30716:156;30510:369;;;;:::o;53490:445::-;53564:13;53594:17;53602:8;53594:7;:17::i;:::-;53586:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;53688:5;53676:17;;:8;;;;;;;;;;;:17;;;53672:64;;53711:17;53704:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53672:64;53744:28;53775:10;:8;:10::i;:::-;53744:41;;53830:1;53805:14;53799:28;:32;:130;;;;;;;;;;;;;;;;;53867:14;53883:19;:8;:17;:19::i;:::-;53904:9;53850:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53799:130;53792:137;;;53490:445;;;;:::o;51576:582::-;51683:11;51273:1;51259:11;:15;:52;;;;;51293:18;;51278:11;:33;;51259:52;51251:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51382:9;;51367:11;51351:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51343:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;51716:11:::1;51521;51514:4;;:18;;;;:::i;:::-;51501:9;:31;;51493:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51782:20:::2;;;;;;;;;;;51774:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51857:16;:30;51874:12;:10;:12::i;:::-;51857:30;;;;;;;;;;;;;;;;;;;;;;;;;51856:31;51848:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51923:12;51965;:10;:12::i;:::-;51948:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;51938:41;;;;;;51923:56;;51994:50;52013:12;;51994:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52027:10;;52039:4;51994:18;:50::i;:::-;51986:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52105:4;52072:16;:30;52089:12;:10;:12::i;:::-;52072:30;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;52116:36;52126:12;:10;:12::i;:::-;52140:11;52116:9;:36::i;:::-;51729:429;51423:1:::1;51576:582:::0;;;;:::o;50629:24::-;;;;:::o;50439:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;53941:81::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54010:6:::1;53999:8;;:17;;;;;;;;;;;;;;;;;;53941:81:::0;:::o;29782:164::-;29879:4;29903:18;:25;29922:5;29903:25;;;;;;;;;;;;;;;:35;29929:8;29903:35;;;;;;;;;;;;;;;;;;;;;;;;;29896:42;;29782:164;;;;:::o;52384:155::-;52470:11;51273:1;51259:11;:15;:52;;;;;51293:18;;51278:11;:33;;51259:52;51251:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;51382:9;;51367:11;51351:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;51343:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;43567:12:::1;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52500:33:::2;52510:9;52521:11;52500:9;:33::i;:::-;52384:155:::0;;;:::o;44245:201::-;43567:12;:10;:12::i;:::-;43556:23;;:7;:5;:7::i;:::-;:23;;;43548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44354:1:::1;44334:22;;:8;:22;;::::0;44326:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;44410:28;44429:8;44410:18;:28::i;:::-;44245:201:::0;:::o;20135:157::-;20220:4;20259:25;20244:40;;;:11;:40;;;;20237:47;;20135:157;;;:::o;31134:174::-;31191:4;31234:7;31215:15;:13;:15::i;:::-;:26;;:53;;;;;31255:13;;31245:7;:23;31215:53;:85;;;;;31273:11;:20;31285:7;31273:20;;;;;;;;;;;:27;;;;;;;;;;;;31272:28;31215:85;31208:92;;31134:174;;;:::o;16934:98::-;16987:7;17014:10;17007:17;;16934:98;:::o;39291:196::-;39433:2;39406:15;:24;39422:7;39406:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39471:7;39467:2;39451:28;;39460:5;39451:28;;;;;;;;;;;;39291:196;;;:::o;53389:95::-;53454:7;53477:1;53470:8;;53389:95;:::o;34234:2130::-;34349:35;34387:21;34400:7;34387:12;:21::i;:::-;34349:59;;34447:4;34425:26;;:13;:18;;;:26;;;34421:67;;34460:28;;;;;;;;;;;;;;34421:67;34501:22;34543:4;34527:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;34564:36;34581:4;34587:12;:10;:12::i;:::-;34564:16;:36::i;:::-;34527:73;:126;;;;34641:12;:10;:12::i;:::-;34617:36;;:20;34629:7;34617:11;:20::i;:::-;:36;;;34527:126;34501:153;;34672:17;34667:66;;34698:35;;;;;;;;;;;;;;34667:66;34762:1;34748:16;;:2;:16;;;34744:52;;34773:23;;;;;;;;;;;;;;34744:52;34809:43;34831:4;34837:2;34841:7;34850:1;34809:21;:43::i;:::-;34917:35;34934:1;34938:7;34947:4;34917:8;:35::i;:::-;35278:1;35248:12;:18;35261:4;35248:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35322:1;35294:12;:16;35307:2;35294:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35340:31;35374:11;:20;35386:7;35374:20;;;;;;;;;;;35340:54;;35425:2;35409:8;:13;;;:18;;;;;;;;;;;;;;;;;;35475:15;35442:8;:23;;;:49;;;;;;;;;;;;;;;;;;35743:19;35775:1;35765:7;:11;35743:33;;35791:31;35825:11;:24;35837:11;35825:24;;;;;;;;;;;35791:58;;35893:1;35868:27;;:8;:13;;;;;;;;;;;;:27;;;35864:384;;36078:13;;36063:11;:28;36059:174;;36132:4;36116:8;:13;;;:20;;;;;;;;;;;;;;;;;;36185:13;:28;;;36159:8;:23;;;:54;;;;;;;;;;;;;;;;;;36059:174;35864:384;35223:1036;;;36295:7;36291:2;36276:27;;36285:4;36276:27;;;;;;;;;;;;36314:42;36335:4;36341:2;36345:7;36354:1;36314:20;:42::i;:::-;34338:2026;;34234:2130;;;:::o;26282:1109::-;26344:21;;:::i;:::-;26378:12;26393:7;26378:22;;26461:4;26442:15;:13;:15::i;:::-;:23;;:47;;;;;26476:13;;26469:4;:20;26442:47;26438:886;;;26510:31;26544:11;:17;26556:4;26544:17;;;;;;;;;;;26510:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26585:9;:16;;;26580:729;;26656:1;26630:28;;:9;:14;;;:28;;;26626:101;;26694:9;26687:16;;;;;;26626:101;27029:261;27036:4;27029:261;;;27069:6;;;;;;;;27114:11;:17;27126:4;27114:17;;;;;;;;;;;27102:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27188:1;27162:28;;:9;:14;;;:28;;;27158:109;;27230:9;27223:16;;;;;;27158:109;27029:261;;;26580:729;26491:833;26438:886;27352:31;;;;;;;;;;;;;;26282:1109;;;;:::o;44606:191::-;44680:16;44699:6;;;;;;;;;;;44680:25;;44725:8;44716:6;;:17;;;;;;;;;;;;;;;;;;44780:8;44749:40;;44770:8;44749:40;;;;;;;;;;;;44669:128;44606:191;:::o;31316:104::-;31385:27;31395:2;31399:8;31385:27;;;;;;;;;;;;:9;:27::i;:::-;31316:104;;:::o;8984:326::-;9044:4;9301:1;9279:7;:19;;;:23;9272:30;;8984:326;;;:::o;39979:667::-;40142:4;40179:2;40163:36;;;40200:12;:10;:12::i;:::-;40214:4;40220:7;40229:5;40163:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40159:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40414:1;40397:6;:13;:18;40393:235;;40443:40;;;;;;;;;;;;;;40393:235;40586:6;40580:13;40571:6;40567:2;40563:15;40556:38;40159:480;40292:45;;;40282:55;;;:6;:55;;;;40275:62;;;39979:667;;;;;;:::o;55053:104::-;55113:13;55142:9;55135:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55053:104;:::o;17514:723::-;17570:13;17800:1;17791:5;:10;17787:53;;17818:10;;;;;;;;;;;;;;;;;;;;;17787:53;17850:12;17865:5;17850:20;;17881:14;17906:78;17921:1;17913:4;:9;17906:78;;17939:8;;;;;:::i;:::-;;;;17970:2;17962:10;;;;;:::i;:::-;;;17906:78;;;17994:19;18026:6;18016:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17994:39;;18044:154;18060:1;18051:5;:10;18044:154;;18088:1;18078:11;;;;;:::i;:::-;;;18155:2;18147:5;:10;;;;:::i;:::-;18134:2;:24;;;;:::i;:::-;18121:39;;18104:6;18111;18104:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;18184:2;18175:11;;;;;:::i;:::-;;;18044:154;;;18222:6;18208:21;;;;;17514:723;;;;:::o;46025:190::-;46150:4;46203;46174:25;46187:5;46194:4;46174:12;:25::i;:::-;:33;46167:40;;46025:190;;;;;:::o;41294:159::-;;;;;:::o;42112:158::-;;;;;:::o;31783:163::-;31906:32;31912:2;31916:8;31926:5;31933:4;31906:5;:32::i;:::-;31783:163;;;:::o;46576:675::-;46659:7;46679:20;46702:4;46679:27;;46722:9;46717:497;46741:5;:12;46737:1;:16;46717:497;;;46775:20;46798:5;46804:1;46798:8;;;;;;;;:::i;:::-;;;;;;;;46775:31;;46841:12;46825;:28;46821:382;;46968:42;46983:12;46997;46968:14;:42::i;:::-;46953:57;;46821:382;;;47145:42;47160:12;47174;47145:14;:42::i;:::-;47130:57;;46821:382;46760:454;46755:3;;;;;:::i;:::-;;;;46717:497;;;;47231:12;47224:19;;;46576:675;;;;:::o;32205:1775::-;32344:20;32367:13;;32344:36;;32409:1;32395:16;;:2;:16;;;32391:48;;32420:19;;;;;;;;;;;;;;32391:48;32466:1;32454:8;:13;32450:44;;32476:18;;;;;;;;;;;;;;32450:44;32507:61;32537:1;32541:2;32545:12;32559:8;32507:21;:61::i;:::-;32880:8;32845:12;:16;32858:2;32845:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32944:8;32904:12;:16;32917:2;32904:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33003:2;32970:11;:25;32982:12;32970:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33070:15;33020:11;:25;33032:12;33020:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33103:20;33126:12;33103:35;;33153:11;33182:8;33167:12;:23;33153:37;;33211:4;:23;;;;;33219:15;:2;:13;;;:15::i;:::-;33211:23;33207:641;;;33255:314;33311:12;33307:2;33286:38;;33303:1;33286:38;;;;;;;;;;;;33352:69;33391:1;33395:2;33399:14;;;;;;33415:5;33352:30;:69::i;:::-;33347:174;;33457:40;;;;;;;;;;;;;;33347:174;33564:3;33548:12;:19;33255:314;;33650:12;33633:13;;:29;33629:43;;33664:8;;;33629:43;33207:641;;;33713:120;33769:14;;;;;;33765:2;33744:40;;33761:1;33744:40;;;;;;;;;;;;33828:3;33812:12;:19;33713:120;;33207:641;33878:12;33862:13;:28;;;;32820:1082;;33912:60;33941:1;33945:2;33949:12;33963:8;33912:20;:60::i;:::-;32333:1647;32205:1775;;;;:::o;47259:224::-;47327:13;47390:1;47384:4;47377:15;47419:1;47413:4;47406:15;47460:4;47454;47444:21;47435:30;;47259:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:329::-;9620:6;9669:2;9657:9;9648:7;9644:23;9640:32;9637:119;;;9675:79;;:::i;:::-;9637:119;9795:1;9820:53;9865:7;9856:6;9845:9;9841:22;9820:53;:::i;:::-;9810:63;;9766:117;9561:329;;;;:::o;9896:114::-;9963:6;9997:5;9991:12;9981:22;;9896:114;;;:::o;10016:184::-;10115:11;10149:6;10144:3;10137:19;10189:4;10184:3;10180:14;10165:29;;10016:184;;;;:::o;10206:132::-;10273:4;10296:3;10288:11;;10326:4;10321:3;10317:14;10309:22;;10206:132;;;:::o;10344:108::-;10421:24;10439:5;10421:24;:::i;:::-;10416:3;10409:37;10344:108;;:::o;10458:179::-;10527:10;10548:46;10590:3;10582:6;10548:46;:::i;:::-;10626:4;10621:3;10617:14;10603:28;;10458:179;;;;:::o;10643:113::-;10713:4;10745;10740:3;10736:14;10728:22;;10643:113;;;:::o;10792:732::-;10911:3;10940:54;10988:5;10940:54;:::i;:::-;11010:86;11089:6;11084:3;11010:86;:::i;:::-;11003:93;;11120:56;11170:5;11120:56;:::i;:::-;11199:7;11230:1;11215:284;11240:6;11237:1;11234:13;11215:284;;;11316:6;11310:13;11343:63;11402:3;11387:13;11343:63;:::i;:::-;11336:70;;11429:60;11482:6;11429:60;:::i;:::-;11419:70;;11275:224;11262:1;11259;11255:9;11250:14;;11215:284;;;11219:14;11515:3;11508:10;;10916:608;;;10792:732;;;;:::o;11530:373::-;11673:4;11711:2;11700:9;11696:18;11688:26;;11760:9;11754:4;11750:20;11746:1;11735:9;11731:17;11724:47;11788:108;11891:4;11882:6;11788:108;:::i;:::-;11780:116;;11530:373;;;;:::o;11909:122::-;11982:24;12000:5;11982:24;:::i;:::-;11975:5;11972:35;11962:63;;12021:1;12018;12011:12;11962:63;11909:122;:::o;12037:139::-;12083:5;12121:6;12108:20;12099:29;;12137:33;12164:5;12137:33;:::i;:::-;12037:139;;;;:::o;12182:329::-;12241:6;12290:2;12278:9;12269:7;12265:23;12261:32;12258:119;;;12296:79;;:::i;:::-;12258:119;12416:1;12441:53;12486:7;12477:6;12466:9;12462:22;12441:53;:::i;:::-;12431:63;;12387:117;12182:329;;;;:::o;12517:468::-;12582:6;12590;12639:2;12627:9;12618:7;12614:23;12610:32;12607:119;;;12645:79;;:::i;:::-;12607:119;12765:1;12790:53;12835:7;12826:6;12815:9;12811:22;12790:53;:::i;:::-;12780:63;;12736:117;12892:2;12918:50;12960:7;12951:6;12940:9;12936:22;12918:50;:::i;:::-;12908:60;;12863:115;12517:468;;;;;:::o;12991:307::-;13052:4;13142:18;13134:6;13131:30;13128:56;;;13164:18;;:::i;:::-;13128:56;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;12991:307;;;:::o;13304:410::-;13381:5;13406:65;13422:48;13463:6;13422:48;:::i;:::-;13406:65;:::i;:::-;13397:74;;13494:6;13487:5;13480:21;13532:4;13525:5;13521:16;13570:3;13561:6;13556:3;13552:16;13549:25;13546:112;;;13577:79;;:::i;:::-;13546:112;13667:41;13701:6;13696:3;13691;13667:41;:::i;:::-;13387:327;13304:410;;;;;:::o;13733:338::-;13788:5;13837:3;13830:4;13822:6;13818:17;13814:27;13804:122;;13845:79;;:::i;:::-;13804:122;13962:6;13949:20;13987:78;14061:3;14053:6;14046:4;14038:6;14034:17;13987:78;:::i;:::-;13978:87;;13794:277;13733:338;;;;:::o;14077:943::-;14172:6;14180;14188;14196;14245:3;14233:9;14224:7;14220:23;14216:33;14213:120;;;14252:79;;:::i;:::-;14213:120;14372:1;14397:53;14442:7;14433:6;14422:9;14418:22;14397:53;:::i;:::-;14387:63;;14343:117;14499:2;14525:53;14570:7;14561:6;14550:9;14546:22;14525:53;:::i;:::-;14515:63;;14470:118;14627:2;14653:53;14698:7;14689:6;14678:9;14674:22;14653:53;:::i;:::-;14643:63;;14598:118;14783:2;14772:9;14768:18;14755:32;14814:18;14806:6;14803:30;14800:117;;;14836:79;;:::i;:::-;14800:117;14941:62;14995:7;14986:6;14975:9;14971:22;14941:62;:::i;:::-;14931:72;;14726:287;14077:943;;;;;;;:::o;15026:117::-;15135:1;15132;15125:12;15149:117;15258:1;15255;15248:12;15289:568;15362:8;15372:6;15422:3;15415:4;15407:6;15403:17;15399:27;15389:122;;15430:79;;:::i;:::-;15389:122;15543:6;15530:20;15520:30;;15573:18;15565:6;15562:30;15559:117;;;15595:79;;:::i;:::-;15559:117;15709:4;15701:6;15697:17;15685:29;;15763:3;15755:4;15747:6;15743:17;15733:8;15729:32;15726:41;15723:128;;;15770:79;;:::i;:::-;15723:128;15289:568;;;;;:::o;15863:704::-;15958:6;15966;15974;16023:2;16011:9;16002:7;15998:23;15994:32;15991:119;;;16029:79;;:::i;:::-;15991:119;16149:1;16174:53;16219:7;16210:6;16199:9;16195:22;16174:53;:::i;:::-;16164:63;;16120:117;16304:2;16293:9;16289:18;16276:32;16335:18;16327:6;16324:30;16321:117;;;16357:79;;:::i;:::-;16321:117;16470:80;16542:7;16533:6;16522:9;16518:22;16470:80;:::i;:::-;16452:98;;;;16247:313;15863:704;;;;;:::o;16573:474::-;16641:6;16649;16698:2;16686:9;16677:7;16673:23;16669:32;16666:119;;;16704:79;;:::i;:::-;16666:119;16824:1;16849:53;16894:7;16885:6;16874:9;16870:22;16849:53;:::i;:::-;16839:63;;16795:117;16951:2;16977:53;17022:7;17013:6;17002:9;16998:22;16977:53;:::i;:::-;16967:63;;16922:118;16573:474;;;;;:::o;17053:::-;17121:6;17129;17178:2;17166:9;17157:7;17153:23;17149:32;17146:119;;;17184:79;;:::i;:::-;17146:119;17304:1;17329:53;17374:7;17365:6;17354:9;17350:22;17329:53;:::i;:::-;17319:63;;17275:117;17431:2;17457:53;17502:7;17493:6;17482:9;17478:22;17457:53;:::i;:::-;17447:63;;17402:118;17053:474;;;;;:::o;17533:180::-;17581:77;17578:1;17571:88;17678:4;17675:1;17668:15;17702:4;17699:1;17692:15;17719:320;17763:6;17800:1;17794:4;17790:12;17780:22;;17847:1;17841:4;17837:12;17868:18;17858:81;;17924:4;17916:6;17912:17;17902:27;;17858:81;17986:2;17978:6;17975:14;17955:18;17952:38;17949:84;;18005:18;;:::i;:::-;17949:84;17770:269;17719:320;;;:::o;18045:182::-;18185:34;18181:1;18173:6;18169:14;18162:58;18045:182;:::o;18233:366::-;18375:3;18396:67;18460:2;18455:3;18396:67;:::i;:::-;18389:74;;18472:93;18561:3;18472:93;:::i;:::-;18590:2;18585:3;18581:12;18574:19;;18233:366;;;:::o;18605:419::-;18771:4;18809:2;18798:9;18794:18;18786:26;;18858:9;18852:4;18848:20;18844:1;18833:9;18829:17;18822:47;18886:131;19012:4;18886:131;:::i;:::-;18878:139;;18605:419;;;:::o;19030:181::-;19170:33;19166:1;19158:6;19154:14;19147:57;19030:181;:::o;19217:366::-;19359:3;19380:67;19444:2;19439:3;19380:67;:::i;:::-;19373:74;;19456:93;19545:3;19456:93;:::i;:::-;19574:2;19569:3;19565:12;19558:19;;19217:366;;;:::o;19589:419::-;19755:4;19793:2;19782:9;19778:18;19770:26;;19842:9;19836:4;19832:20;19828:1;19817:9;19813:17;19806:47;19870:131;19996:4;19870:131;:::i;:::-;19862:139;;19589:419;;;:::o;20014:147::-;20115:11;20152:3;20137:18;;20014:147;;;;:::o;20167:114::-;;:::o;20287:398::-;20446:3;20467:83;20548:1;20543:3;20467:83;:::i;:::-;20460:90;;20559:93;20648:3;20559:93;:::i;:::-;20677:1;20672:3;20668:11;20661:18;;20287:398;;;:::o;20691:379::-;20875:3;20897:147;21040:3;20897:147;:::i;:::-;20890:154;;21061:3;21054:10;;20691:379;;;:::o;21076:180::-;21124:77;21121:1;21114:88;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21262:180;21310:77;21307:1;21300:88;21407:4;21404:1;21397:15;21431:4;21428:1;21421:15;21448:233;21487:3;21510:24;21528:5;21510:24;:::i;:::-;21501:33;;21556:66;21549:5;21546:77;21543:103;;21626:18;;:::i;:::-;21543:103;21673:1;21666:5;21662:13;21655:20;;21448:233;;;:::o;21687:170::-;21827:22;21823:1;21815:6;21811:14;21804:46;21687:170;:::o;21863:366::-;22005:3;22026:67;22090:2;22085:3;22026:67;:::i;:::-;22019:74;;22102:93;22191:3;22102:93;:::i;:::-;22220:2;22215:3;22211:12;22204:19;;21863:366;;;:::o;22235:419::-;22401:4;22439:2;22428:9;22424:18;22416:26;;22488:9;22482:4;22478:20;22474:1;22463:9;22459:17;22452:47;22516:131;22642:4;22516:131;:::i;:::-;22508:139;;22235:419;;;:::o;22660:305::-;22700:3;22719:20;22737:1;22719:20;:::i;:::-;22714:25;;22753:20;22771:1;22753:20;:::i;:::-;22748:25;;22907:1;22839:66;22835:74;22832:1;22829:81;22826:107;;;22913:18;;:::i;:::-;22826:107;22957:1;22954;22950:9;22943:16;;22660:305;;;;:::o;22971:170::-;23111:22;23107:1;23099:6;23095:14;23088:46;22971:170;:::o;23147:366::-;23289:3;23310:67;23374:2;23369:3;23310:67;:::i;:::-;23303:74;;23386:93;23475:3;23386:93;:::i;:::-;23504:2;23499:3;23495:12;23488:19;;23147:366;;;:::o;23519:419::-;23685:4;23723:2;23712:9;23708:18;23700:26;;23772:9;23766:4;23762:20;23758:1;23747:9;23743:17;23736:47;23800:131;23926:4;23800:131;:::i;:::-;23792:139;;23519:419;;;:::o;23944:348::-;23984:7;24007:20;24025:1;24007:20;:::i;:::-;24002:25;;24041:20;24059:1;24041:20;:::i;:::-;24036:25;;24229:1;24161:66;24157:74;24154:1;24151:81;24146:1;24139:9;24132:17;24128:105;24125:131;;;24236:18;;:::i;:::-;24125:131;24284:1;24281;24277:9;24266:20;;23944:348;;;;:::o;24298:169::-;24438:21;24434:1;24426:6;24422:14;24415:45;24298:169;:::o;24473:366::-;24615:3;24636:67;24700:2;24695:3;24636:67;:::i;:::-;24629:74;;24712:93;24801:3;24712:93;:::i;:::-;24830:2;24825:3;24821:12;24814:19;;24473:366;;;:::o;24845:419::-;25011:4;25049:2;25038:9;25034:18;25026:26;;25098:9;25092:4;25088:20;25084:1;25073:9;25069:17;25062:47;25126:131;25252:4;25126:131;:::i;:::-;25118:139;;24845:419;;;:::o;25270:173::-;25410:25;25406:1;25398:6;25394:14;25387:49;25270:173;:::o;25449:366::-;25591:3;25612:67;25676:2;25671:3;25612:67;:::i;:::-;25605:74;;25688:93;25777:3;25688:93;:::i;:::-;25806:2;25801:3;25797:12;25790:19;;25449:366;;;:::o;25821:419::-;25987:4;26025:2;26014:9;26010:18;26002:26;;26074:9;26068:4;26064:20;26060:1;26049:9;26045:17;26038:47;26102:131;26228:4;26102:131;:::i;:::-;26094:139;;25821:419;;;:::o;26246:234::-;26386:34;26382:1;26374:6;26370:14;26363:58;26455:17;26450:2;26442:6;26438:15;26431:42;26246:234;:::o;26486:366::-;26628:3;26649:67;26713:2;26708:3;26649:67;:::i;:::-;26642:74;;26725:93;26814:3;26725:93;:::i;:::-;26843:2;26838:3;26834:12;26827:19;;26486:366;;;:::o;26858:419::-;27024:4;27062:2;27051:9;27047:18;27039:26;;27111:9;27105:4;27101:20;27097:1;27086:9;27082:17;27075:47;27139:131;27265:4;27139:131;:::i;:::-;27131:139;;26858:419;;;:::o;27283:148::-;27385:11;27422:3;27407:18;;27283:148;;;;:::o;27437:377::-;27543:3;27571:39;27604:5;27571:39;:::i;:::-;27626:89;27708:6;27703:3;27626:89;:::i;:::-;27619:96;;27724:52;27769:6;27764:3;27757:4;27750:5;27746:16;27724:52;:::i;:::-;27801:6;27796:3;27792:16;27785:23;;27547:267;27437:377;;;;:::o;27820:141::-;27869:4;27892:3;27884:11;;27915:3;27912:1;27905:14;27949:4;27946:1;27936:18;27928:26;;27820:141;;;:::o;27991:845::-;28094:3;28131:5;28125:12;28160:36;28186:9;28160:36;:::i;:::-;28212:89;28294:6;28289:3;28212:89;:::i;:::-;28205:96;;28332:1;28321:9;28317:17;28348:1;28343:137;;;;28494:1;28489:341;;;;28310:520;;28343:137;28427:4;28423:9;28412;28408:25;28403:3;28396:38;28463:6;28458:3;28454:16;28447:23;;28343:137;;28489:341;28556:38;28588:5;28556:38;:::i;:::-;28616:1;28630:154;28644:6;28641:1;28638:13;28630:154;;;28718:7;28712:14;28708:1;28703:3;28699:11;28692:35;28768:1;28759:7;28755:15;28744:26;;28666:4;28663:1;28659:12;28654:17;;28630:154;;;28813:6;28808:3;28804:16;28797:23;;28496:334;;28310:520;;28098:738;;27991:845;;;;:::o;28842:589::-;29067:3;29089:95;29180:3;29171:6;29089:95;:::i;:::-;29082:102;;29201:95;29292:3;29283:6;29201:95;:::i;:::-;29194:102;;29313:92;29401:3;29392:6;29313:92;:::i;:::-;29306:99;;29422:3;29415:10;;28842:589;;;;;;:::o;29437:221::-;29577:34;29573:1;29565:6;29561:14;29554:58;29646:4;29641:2;29633:6;29629:15;29622:29;29437:221;:::o;29664:366::-;29806:3;29827:67;29891:2;29886:3;29827:67;:::i;:::-;29820:74;;29903:93;29992:3;29903:93;:::i;:::-;30021:2;30016:3;30012:12;30005:19;;29664:366;;;:::o;30036:419::-;30202:4;30240:2;30229:9;30225:18;30217:26;;30289:9;30283:4;30279:20;30275:1;30264:9;30260:17;30253:47;30317:131;30443:4;30317:131;:::i;:::-;30309:139;;30036:419;;;:::o;30461:174::-;30601:26;30597:1;30589:6;30585:14;30578:50;30461:174;:::o;30641:366::-;30783:3;30804:67;30868:2;30863:3;30804:67;:::i;:::-;30797:74;;30880:93;30969:3;30880:93;:::i;:::-;30998:2;30993:3;30989:12;30982:19;;30641:366;;;:::o;31013:419::-;31179:4;31217:2;31206:9;31202:18;31194:26;;31266:9;31260:4;31256:20;31252:1;31241:9;31237:17;31230:47;31294:131;31420:4;31294:131;:::i;:::-;31286:139;;31013:419;;;:::o;31438:94::-;31471:8;31519:5;31515:2;31511:14;31490:35;;31438:94;;;:::o;31538:::-;31577:7;31606:20;31620:5;31606:20;:::i;:::-;31595:31;;31538:94;;;:::o;31638:100::-;31677:7;31706:26;31726:5;31706:26;:::i;:::-;31695:37;;31638:100;;;:::o;31744:157::-;31849:45;31869:24;31887:5;31869:24;:::i;:::-;31849:45;:::i;:::-;31844:3;31837:58;31744:157;;:::o;31907:256::-;32019:3;32034:75;32105:3;32096:6;32034:75;:::i;:::-;32134:2;32129:3;32125:12;32118:19;;32154:3;32147:10;;31907:256;;;;:::o;32169:164::-;32309:16;32305:1;32297:6;32293:14;32286:40;32169:164;:::o;32339:366::-;32481:3;32502:67;32566:2;32561:3;32502:67;:::i;:::-;32495:74;;32578:93;32667:3;32578:93;:::i;:::-;32696:2;32691:3;32687:12;32680:19;;32339:366;;;:::o;32711:419::-;32877:4;32915:2;32904:9;32900:18;32892:26;;32964:9;32958:4;32954:20;32950:1;32939:9;32935:17;32928:47;32992:131;33118:4;32992:131;:::i;:::-;32984:139;;32711:419;;;:::o;33136:225::-;33276:34;33272:1;33264:6;33260:14;33253:58;33345:8;33340:2;33332:6;33328:15;33321:33;33136:225;:::o;33367:366::-;33509:3;33530:67;33594:2;33589:3;33530:67;:::i;:::-;33523:74;;33606:93;33695:3;33606:93;:::i;:::-;33724:2;33719:3;33715:12;33708:19;;33367:366;;;:::o;33739:419::-;33905:4;33943:2;33932:9;33928:18;33920:26;;33992:9;33986:4;33982:20;33978:1;33967:9;33963:17;33956:47;34020:131;34146:4;34020:131;:::i;:::-;34012:139;;33739:419;;;:::o;34164:98::-;34215:6;34249:5;34243:12;34233:22;;34164:98;;;:::o;34268:168::-;34351:11;34385:6;34380:3;34373:19;34425:4;34420:3;34416:14;34401:29;;34268:168;;;;:::o;34442:360::-;34528:3;34556:38;34588:5;34556:38;:::i;:::-;34610:70;34673:6;34668:3;34610:70;:::i;:::-;34603:77;;34689:52;34734:6;34729:3;34722:4;34715:5;34711:16;34689:52;:::i;:::-;34766:29;34788:6;34766:29;:::i;:::-;34761:3;34757:39;34750:46;;34532:270;34442:360;;;;:::o;34808:640::-;35003:4;35041:3;35030:9;35026:19;35018:27;;35055:71;35123:1;35112:9;35108:17;35099:6;35055:71;:::i;:::-;35136:72;35204:2;35193:9;35189:18;35180:6;35136:72;:::i;:::-;35218;35286:2;35275:9;35271:18;35262:6;35218:72;:::i;:::-;35337:9;35331:4;35327:20;35322:2;35311:9;35307:18;35300:48;35365:76;35436:4;35427:6;35365:76;:::i;:::-;35357:84;;34808:640;;;;;;;:::o;35454:141::-;35510:5;35541:6;35535:13;35526:22;;35557:32;35583:5;35557:32;:::i;:::-;35454:141;;;;:::o;35601:349::-;35670:6;35719:2;35707:9;35698:7;35694:23;35690:32;35687:119;;;35725:79;;:::i;:::-;35687:119;35845:1;35870:63;35925:7;35916:6;35905:9;35901:22;35870:63;:::i;:::-;35860:73;;35816:127;35601:349;;;;:::o;35956:180::-;36004:77;36001:1;35994:88;36101:4;36098:1;36091:15;36125:4;36122:1;36115:15;36142:185;36182:1;36199:20;36217:1;36199:20;:::i;:::-;36194:25;;36233:20;36251:1;36233:20;:::i;:::-;36228:25;;36272:1;36262:35;;36277:18;;:::i;:::-;36262:35;36319:1;36316;36312:9;36307:14;;36142:185;;;;:::o;36333:191::-;36373:4;36393:20;36411:1;36393:20;:::i;:::-;36388:25;;36427:20;36445:1;36427:20;:::i;:::-;36422:25;;36466:1;36463;36460:8;36457:34;;;36471:18;;:::i;:::-;36457:34;36516:1;36513;36509:9;36501:17;;36333:191;;;;:::o;36530:176::-;36562:1;36579:20;36597:1;36579:20;:::i;:::-;36574:25;;36613:20;36631:1;36613:20;:::i;:::-;36608:25;;36652:1;36642:35;;36657:18;;:::i;:::-;36642:35;36698:1;36695;36691:9;36686:14;;36530:176;;;;:::o

Swarm Source

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