ETH Price: $3,442.22 (-0.46%)
Gas: 18 Gwei

Token

Fractional Bricks (FRB)
 

Overview

Max Total Supply

111 FRB

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
rbp.eth
Balance
1 FRB
0x4f4715ca99c973a55303bc4a5f3e3acbb9ff75db
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:
FractionalBricks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-28
*/

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



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/token/ERC721/ERC721.sol



pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @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 virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _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 {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * 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, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: FractionalBricks/contracts/FractionalBrick.sol



pragma solidity ^0.8.4;



contract FractionalBricks is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  uint256 public supply;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 1000;
  uint256 public nftPerAddressLimit = 1000;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);

  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        
         //   require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
             require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function presaleMint(uint _mintAmount) public payable {
    require(!paused, "the contract is paused");
    supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    require(onlyWhitelisted == true);
    require(isWhitelisted(msg.sender), "user is not whitelisted");
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    require(_mintAmount == 1, "mintAmount for whitelist must be 1");
    _safeMint(msg.sender, _mintAmount);
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner) public view returns (uint256[] memory){
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId) public  view virtual override returns (string memory) {
    require(_exists(tokenId),  "ERC721Metadata: URI query for nonexistent token" );
    if(revealed == false) {
        return notRevealedUri;
    }
    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
    ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
     : "";
  }

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

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

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
  /**
     * Override for ERC721 & ERC721Enumerable
     */
    function supportsInterface(bytes4 interfaceId) public
        view
        override ( ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }
 
  /**
  * Override for ERC721 and ERC271Enumerable
  */
  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
    ) internal override( ERC721Enumerable) {
      super._beforeTokenTransfer(from, to, tokenId);
    }

 
  function withdraw() public payable onlyOwner {
    
    // This will payout the owner 95% of the contract balance.
    // Do not remove this otherwise you will not be able to withdraw the funds.
    // =============================================================================
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
    // =============================================================================
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d908051906020019062000051929190620003c3565b5066f8b0a10e470000600f556127106010556103e86011556103e86012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506001601360026101000a81548160ff021916908315150217905550348015620000cd57600080fd5b5060405162005b8438038062005b848339818101604052810190620000f39190620004f1565b838381600090805190602001906200010d929190620003c3565b50806001908051906020019062000126929190620003c3565b505050620001496200013d6200017560201b60201c565b6200017d60201b60201c565b6200015a826200024360201b60201c565b6200016b81620002ee60201b60201c565b50505050620007e6565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002536200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002796200039960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c99062000606565b60405180910390fd5b80600b9080519060200190620002ea929190620003c3565b5050565b620002fe6200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003246200039960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003749062000606565b60405180910390fd5b80600e908051906020019062000395929190620003c3565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d190620006ce565b90600052602060002090601f016020900481019282620003f5576000855562000441565b82601f106200041057805160ff191683800117855562000441565b8280016001018555821562000441579182015b828111156200044057825182559160200191906001019062000423565b5b50905062000450919062000454565b5090565b5b808211156200046f57600081600090555060010162000455565b5090565b60006200048a620004848462000651565b62000628565b905082815260208101848484011115620004a957620004a86200079d565b5b620004b684828562000698565b509392505050565b600082601f830112620004d657620004d562000798565b5b8151620004e884826020860162000473565b91505092915050565b600080600080608085870312156200050e576200050d620007a7565b5b600085015167ffffffffffffffff8111156200052f576200052e620007a2565b5b6200053d87828801620004be565b945050602085015167ffffffffffffffff811115620005615762000560620007a2565b5b6200056f87828801620004be565b935050604085015167ffffffffffffffff811115620005935762000592620007a2565b5b620005a187828801620004be565b925050606085015167ffffffffffffffff811115620005c557620005c4620007a2565b5b620005d387828801620004be565b91505092959194509250565b6000620005ee60208362000687565b9150620005fb82620007bd565b602082019050919050565b600060208201905081810360008301526200062181620005df565b9050919050565b60006200063462000647565b905062000642828262000704565b919050565b6000604051905090565b600067ffffffffffffffff8211156200066f576200066e62000769565b5b6200067a82620007ac565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006b85780820151818401526020810190506200069b565b83811115620006c8576000848401525b50505050565b60006002820490506001821680620006e757607f821691505b60208210811415620006fe57620006fd6200073a565b5b50919050565b6200070f82620007ac565b810181811067ffffffffffffffff8211171562000731576200073062000769565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61538e80620007f66000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a578063ba4e5c49116100c1578063d5abeb011161007a578063d5abeb01146109b9578063da3ef23f146109e4578063e985e9c514610a0d578063edec5f2714610a4a578063f2c4ce1e14610a73578063f2fde38b14610a9c57610288565b8063ba4e5c49146108a4578063ba7d2c76146108e1578063c66828621461090c578063c87b56dd14610937578063c9b298f114610974578063d0eb26b01461099057610288565b806395d89b411161011357806395d89b41146107c95780639c70b512146107f4578063a0712d681461081f578063a22cb4651461083b578063a475b5dd14610864578063b88d4fde1461087b57610288565b80636352211e146106b95780636c0360eb146106f657806370a0823114610721578063715018a61461075e5780637f00c7a6146107755780638da5cb5b1461079e57610288565b806323b872dd116101fe578063438b6300116101b7578063438b63001461059757806344a0d68a146105d45780634f6ccce7146105fd578063518302271461063a57806355f804b3146106655780635c975abb1461068e57610288565b806323b872dd146104985780632f745c59146104c15780633af32abf146104fe5780633c9527641461053b5780633ccfd60b1461056457806342842e0e1461056e57610288565b8063081c8c4411610250578063081c8c4414610386578063095ea7b3146103b157806313faede6146103da57806318160ddd1461040557806318cae26914610430578063239c70ae1461046d57610288565b806301ffc9a71461028d57806302329a29146102ca578063047fc9aa146102f357806306fdde031461031e578063081812fc14610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613c9f565b610ac5565b6040516102c191906143c3565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613c72565b610ad7565b005b3480156102ff57600080fd5b50610308610b70565b6040516103159190614740565b60405180910390f35b34801561032a57600080fd5b50610333610b76565b60405161034091906143de565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613d42565b610c08565b60405161037d919061433a565b60405180910390f35b34801561039257600080fd5b5061039b610c8d565b6040516103a891906143de565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613be5565b610d1b565b005b3480156103e657600080fd5b506103ef610e33565b6040516103fc9190614740565b60405180910390f35b34801561041157600080fd5b5061041a610e39565b6040516104279190614740565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613a62565b610e46565b6040516104649190614740565b60405180910390f35b34801561047957600080fd5b50610482610e5e565b60405161048f9190614740565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613acf565b610e64565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613be5565b610ec4565b6040516104f59190614740565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613a62565b610f69565b60405161053291906143c3565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613c72565b611018565b005b61056c6110b1565b005b34801561057a57600080fd5b5061059560048036038101906105909190613acf565b6111ad565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613a62565b6111cd565b6040516105cb91906143a1565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613d42565b61127b565b005b34801561060957600080fd5b50610624600480360381019061061f9190613d42565b611301565b6040516106319190614740565b60405180910390f35b34801561064657600080fd5b5061064f611372565b60405161065c91906143c3565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613cf9565b611385565b005b34801561069a57600080fd5b506106a361141b565b6040516106b091906143c3565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190613d42565b61142e565b6040516106ed919061433a565b60405180910390f35b34801561070257600080fd5b5061070b6114e0565b60405161071891906143de565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190613a62565b61156e565b6040516107559190614740565b60405180910390f35b34801561076a57600080fd5b50610773611626565b005b34801561078157600080fd5b5061079c60048036038101906107979190613d42565b6116ae565b005b3480156107aa57600080fd5b506107b3611734565b6040516107c0919061433a565b60405180910390f35b3480156107d557600080fd5b506107de61175e565b6040516107eb91906143de565b60405180910390f35b34801561080057600080fd5b506108096117f0565b60405161081691906143c3565b60405180910390f35b61083960048036038101906108349190613d42565b611803565b005b34801561084757600080fd5b50610862600480360381019061085d9190613ba5565b611aec565b005b34801561087057600080fd5b50610879611c6d565b005b34801561088757600080fd5b506108a2600480360381019061089d9190613b22565b611d06565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190613d42565b611d68565b6040516108d8919061433a565b60405180910390f35b3480156108ed57600080fd5b506108f6611da7565b6040516109039190614740565b60405180910390f35b34801561091857600080fd5b50610921611dad565b60405161092e91906143de565b60405180910390f35b34801561094357600080fd5b5061095e60048036038101906109599190613d42565b611e3b565b60405161096b91906143de565b60405180910390f35b61098e60048036038101906109899190613d42565b611f94565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613d42565b612219565b005b3480156109c557600080fd5b506109ce61229f565b6040516109db9190614740565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a069190613cf9565b6122a5565b005b348015610a1957600080fd5b50610a346004803603810190610a2f9190613a8f565b61233b565b604051610a4191906143c3565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c9190613c25565b6123cf565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190613cf9565b61246f565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190613a62565b612505565b005b6000610ad0826125fd565b9050919050565b610adf612677565b73ffffffffffffffffffffffffffffffffffffffff16610afd611734565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90614600565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b600c5481565b606060008054610b8590614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190614a49565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050905090565b6000610c138261267f565b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906145e0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610c9a90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc690614a49565b8015610d135780601f10610ce857610100808354040283529160200191610d13565b820191906000526020600020905b815481529060010190602001808311610cf657829003601f168201915b505050505081565b6000610d268261142e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90614680565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db6612677565b73ffffffffffffffffffffffffffffffffffffffff161480610de55750610de481610ddf612677565b61233b565b5b610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614520565b60405180910390fd5b610e2e83836126eb565b505050565b600f5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60115481565b610e75610e6f612677565b826127a4565b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab906146c0565b60405180910390fd5b610ebf838383612882565b505050565b6000610ecf8361156e565b8210610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614400565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b60148054905081101561100d578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610fa957610fa8614be2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ffa576001915050611013565b808061100590614aac565b915050610f71565b50600090505b919050565b611020612677565b73ffffffffffffffffffffffffffffffffffffffff1661103e611734565b73ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90614600565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6110b9612677565b73ffffffffffffffffffffffffffffffffffffffff166110d7611734565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490614600565b60405180910390fd5b6000611137611734565b73ffffffffffffffffffffffffffffffffffffffff164760405161115a90614325565b60006040518083038185875af1925050503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50509050806111aa57600080fd5b50565b6111c883838360405180602001604052806000815250611d06565b505050565b606060006111da8361156e565b905060008167ffffffffffffffff8111156111f8576111f7614c11565b5b6040519080825280602002602001820160405280156112265781602001602082028036833780820191505090505b50905060005b828110156112705761123e8582610ec4565b82828151811061125157611250614be2565b5b602002602001018181525050808061126890614aac565b91505061122c565b508092505050919050565b611283612677565b73ffffffffffffffffffffffffffffffffffffffff166112a1611734565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614600565b60405180910390fd5b80600f8190555050565b600061130b610e39565b821061134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906146e0565b60405180910390fd5b600882815481106113605761135f614be2565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b61138d612677565b73ffffffffffffffffffffffffffffffffffffffff166113ab611734565b73ffffffffffffffffffffffffffffffffffffffff1614611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890614600565b60405180910390fd5b80600b908051906020019061141792919061375f565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90614560565b60405180910390fd5b80915050919050565b600b80546114ed90614a49565b80601f016020809104026020016040519081016040528092919081815260200182805461151990614a49565b80156115665780601f1061153b57610100808354040283529160200191611566565b820191906000526020600020905b81548152906001019060200180831161154957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690614540565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61162e612677565b73ffffffffffffffffffffffffffffffffffffffff1661164c611734565b73ffffffffffffffffffffffffffffffffffffffff16146116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990614600565b60405180910390fd5b6116ac6000612ade565b565b6116b6612677565b73ffffffffffffffffffffffffffffffffffffffff166116d4611734565b73ffffffffffffffffffffffffffffffffffffffff161461172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190614600565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461176d90614a49565b80601f016020809104026020016040519081016040528092919081815260200182805461179990614a49565b80156117e65780601f106117bb576101008083540402835291602001916117e6565b820191906000526020600020905b8154815290600101906020018083116117c957829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1615611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90614620565b60405180910390fd5b61185b610e39565b600c81905550600081116118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90614720565b60405180910390fd5b6011548111156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906145a0565b60405180910390fd5b60105481600c546118fa919061487e565b111561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290614580565b60405180910390fd5b611943611734565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5b576000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060125482826119c8919061487e565b1115611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614480565b60405180910390fd5b81600f54611a179190614905565b341015611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906146a0565b60405180910390fd5b505b6000600190505b818111611ae857601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ab990614aac565b9190505550611ad53382600c54611ad0919061487e565b612ba4565b8080611ae090614aac565b915050611a62565b5050565b611af4612677565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b59906144e0565b60405180910390fd5b8060056000611b6f612677565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c1c612677565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6191906143c3565b60405180910390a35050565b611c75612677565b73ffffffffffffffffffffffffffffffffffffffff16611c93611734565b73ffffffffffffffffffffffffffffffffffffffff1614611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce090614600565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b611d17611d11612677565b836127a4565b611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d906146c0565b60405180910390fd5b611d6284848484612bc2565b50505050565b60148181548110611d7857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d8054611dba90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054611de690614a49565b8015611e335780601f10611e0857610100808354040283529160200191611e33565b820191906000526020600020905b815481529060010190602001808311611e1657829003601f168201915b505050505081565b6060611e468261267f565b611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90614660565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611f3357600e8054611eae90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054611eda90614a49565b8015611f275780601f10611efc57610100808354040283529160200191611f27565b820191906000526020600020905b815481529060010190602001808311611f0a57829003601f168201915b50505050509050611f8f565b6000611f3d612c1e565b90506000815111611f5d5760405180602001604052806000815250611f8b565b80611f6784612cb0565b600d604051602001611f7b939291906142f4565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1615611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90614620565b60405180910390fd5b611fec610e39565b600c8190555060008111612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614720565b60405180910390fd5b60115481111561207a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612071906145a0565b60405180910390fd5b60105481600c5461208b919061487e565b11156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390614580565b60405180910390fd5b60011515601360029054906101000a900460ff161515146120ec57600080fd5b6120f533610f69565b612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90614700565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548282612187919061487e565b11156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614480565b60405180910390fd5b6001821461220b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612202906144a0565b60405180910390fd5b6122153383612ba4565b5050565b612221612677565b73ffffffffffffffffffffffffffffffffffffffff1661223f611734565b73ffffffffffffffffffffffffffffffffffffffff1614612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90614600565b60405180910390fd5b8060128190555050565b60105481565b6122ad612677565b73ffffffffffffffffffffffffffffffffffffffff166122cb611734565b73ffffffffffffffffffffffffffffffffffffffff1614612321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231890614600565b60405180910390fd5b80600d908051906020019061233792919061375f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d7612677565b73ffffffffffffffffffffffffffffffffffffffff166123f5611734565b73ffffffffffffffffffffffffffffffffffffffff161461244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614600565b60405180910390fd5b6014600061245991906137e5565b81816014919061246a929190613806565b505050565b612477612677565b73ffffffffffffffffffffffffffffffffffffffff16612495611734565b73ffffffffffffffffffffffffffffffffffffffff16146124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e290614600565b60405180910390fd5b80600e908051906020019061250192919061375f565b5050565b61250d612677565b73ffffffffffffffffffffffffffffffffffffffff1661252b611734565b73ffffffffffffffffffffffffffffffffffffffff1614612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890614600565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890614440565b60405180910390fd5b6125fa81612ade565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612670575061266f82612e11565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661275e8361142e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127af8261267f565b6127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614500565b60405180910390fd5b60006127f98361142e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061286857508373ffffffffffffffffffffffffffffffffffffffff1661285084610c08565b73ffffffffffffffffffffffffffffffffffffffff16145b806128795750612878818561233b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128a28261142e565b73ffffffffffffffffffffffffffffffffffffffff16146128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90614640565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f906144c0565b60405180910390fd5b612973838383612ef3565b61297e6000826126eb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ce919061495f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a25919061487e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bbe828260405180602001604052806000815250612f03565b5050565b612bcd848484612882565b612bd984848484612f5e565b612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f90614420565b60405180910390fd5b50505050565b6060600b8054612c2d90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5990614a49565b8015612ca65780601f10612c7b57610100808354040283529160200191612ca6565b820191906000526020600020905b815481529060010190602001808311612c8957829003601f168201915b5050505050905090565b60606000821415612cf8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e0c565b600082905060005b60008214612d2a578080612d1390614aac565b915050600a82612d2391906148d4565b9150612d00565b60008167ffffffffffffffff811115612d4657612d45614c11565b5b6040519080825280601f01601f191660200182016040528015612d785781602001600182028036833780820191505090505b5090505b60008514612e0557600182612d91919061495f565b9150600a85612da09190614af5565b6030612dac919061487e565b60f81b818381518110612dc257612dc1614be2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dfe91906148d4565b9450612d7c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612edc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612eec5750612eeb826130f5565b5b9050919050565b612efe83838361315f565b505050565b612f0d8383613273565b612f1a6000848484612f5e565b612f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5090614420565b60405180910390fd5b505050565b6000612f7f8473ffffffffffffffffffffffffffffffffffffffff16613441565b156130e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa8612677565b8786866040518563ffffffff1660e01b8152600401612fca9493929190614355565b602060405180830381600087803b158015612fe457600080fd5b505af192505050801561301557506040513d601f19601f820116820180604052508101906130129190613ccc565b60015b613098573d8060008114613045576040519150601f19603f3d011682016040523d82523d6000602084013e61304a565b606091505b50600081511415613090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308790614420565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130ed565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61316a838383613454565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131ad576131a881613459565b6131ec565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131eb576131ea83826134a2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561322f5761322a8161360f565b61326e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461326d5761326c82826136e0565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da906145c0565b60405180910390fd5b6132ec8161267f565b1561332c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332390614460565b60405180910390fd5b61333860008383612ef3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613388919061487e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134af8461156e565b6134b9919061495f565b905060006007600084815260200190815260200160002054905081811461359e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613623919061495f565b905060006009600084815260200190815260200160002054905060006008838154811061365357613652614be2565b5b90600052602060002001549050806008838154811061367557613674614be2565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136c4576136c3614bb3565b5b6001900381819060005260206000200160009055905550505050565b60006136eb8361156e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461376b90614a49565b90600052602060002090601f01602090048101928261378d57600085556137d4565b82601f106137a657805160ff19168380011785556137d4565b828001600101855582156137d4579182015b828111156137d35782518255916020019190600101906137b8565b5b5090506137e191906138a6565b5090565b508054600082559060005260206000209081019061380391906138a6565b50565b828054828255906000526020600020908101928215613895579160200282015b8281111561389457823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613826565b5b5090506138a291906138a6565b5090565b5b808211156138bf5760008160009055506001016138a7565b5090565b60006138d66138d184614780565b61475b565b9050828152602081018484840111156138f2576138f1614c4f565b5b6138fd848285614a07565b509392505050565b6000613918613913846147b1565b61475b565b90508281526020810184848401111561393457613933614c4f565b5b61393f848285614a07565b509392505050565b600081359050613956816152fc565b92915050565b60008083601f84011261397257613971614c45565b5b8235905067ffffffffffffffff81111561398f5761398e614c40565b5b6020830191508360208202830111156139ab576139aa614c4a565b5b9250929050565b6000813590506139c181615313565b92915050565b6000813590506139d68161532a565b92915050565b6000815190506139eb8161532a565b92915050565b600082601f830112613a0657613a05614c45565b5b8135613a168482602086016138c3565b91505092915050565b600082601f830112613a3457613a33614c45565b5b8135613a44848260208601613905565b91505092915050565b600081359050613a5c81615341565b92915050565b600060208284031215613a7857613a77614c59565b5b6000613a8684828501613947565b91505092915050565b60008060408385031215613aa657613aa5614c59565b5b6000613ab485828601613947565b9250506020613ac585828601613947565b9150509250929050565b600080600060608486031215613ae857613ae7614c59565b5b6000613af686828701613947565b9350506020613b0786828701613947565b9250506040613b1886828701613a4d565b9150509250925092565b60008060008060808587031215613b3c57613b3b614c59565b5b6000613b4a87828801613947565b9450506020613b5b87828801613947565b9350506040613b6c87828801613a4d565b925050606085013567ffffffffffffffff811115613b8d57613b8c614c54565b5b613b99878288016139f1565b91505092959194509250565b60008060408385031215613bbc57613bbb614c59565b5b6000613bca85828601613947565b9250506020613bdb858286016139b2565b9150509250929050565b60008060408385031215613bfc57613bfb614c59565b5b6000613c0a85828601613947565b9250506020613c1b85828601613a4d565b9150509250929050565b60008060208385031215613c3c57613c3b614c59565b5b600083013567ffffffffffffffff811115613c5a57613c59614c54565b5b613c668582860161395c565b92509250509250929050565b600060208284031215613c8857613c87614c59565b5b6000613c96848285016139b2565b91505092915050565b600060208284031215613cb557613cb4614c59565b5b6000613cc3848285016139c7565b91505092915050565b600060208284031215613ce257613ce1614c59565b5b6000613cf0848285016139dc565b91505092915050565b600060208284031215613d0f57613d0e614c59565b5b600082013567ffffffffffffffff811115613d2d57613d2c614c54565b5b613d3984828501613a1f565b91505092915050565b600060208284031215613d5857613d57614c59565b5b6000613d6684828501613a4d565b91505092915050565b6000613d7b83836142d6565b60208301905092915050565b613d9081614993565b82525050565b6000613da182614807565b613dab8185614835565b9350613db6836147e2565b8060005b83811015613de7578151613dce8882613d6f565b9750613dd983614828565b925050600181019050613dba565b5085935050505092915050565b613dfd816149a5565b82525050565b6000613e0e82614812565b613e188185614846565b9350613e28818560208601614a16565b613e3181614c5e565b840191505092915050565b6000613e478261481d565b613e518185614862565b9350613e61818560208601614a16565b613e6a81614c5e565b840191505092915050565b6000613e808261481d565b613e8a8185614873565b9350613e9a818560208601614a16565b80840191505092915050565b60008154613eb381614a49565b613ebd8186614873565b94506001821660008114613ed85760018114613ee957613f1c565b60ff19831686528186019350613f1c565b613ef2856147f2565b60005b83811015613f1457815481890152600182019150602081019050613ef5565b838801955050505b50505092915050565b6000613f32602b83614862565b9150613f3d82614c6f565b604082019050919050565b6000613f55603283614862565b9150613f6082614cbe565b604082019050919050565b6000613f78602683614862565b9150613f8382614d0d565b604082019050919050565b6000613f9b601c83614862565b9150613fa682614d5c565b602082019050919050565b6000613fbe601c83614862565b9150613fc982614d85565b602082019050919050565b6000613fe1602283614862565b9150613fec82614dae565b604082019050919050565b6000614004602483614862565b915061400f82614dfd565b604082019050919050565b6000614027601983614862565b915061403282614e4c565b602082019050919050565b600061404a602c83614862565b915061405582614e75565b604082019050919050565b600061406d603883614862565b915061407882614ec4565b604082019050919050565b6000614090602a83614862565b915061409b82614f13565b604082019050919050565b60006140b3602983614862565b91506140be82614f62565b604082019050919050565b60006140d6601683614862565b91506140e182614fb1565b602082019050919050565b60006140f9602483614862565b915061410482614fda565b604082019050919050565b600061411c602083614862565b915061412782615029565b602082019050919050565b600061413f602c83614862565b915061414a82615052565b604082019050919050565b6000614162602083614862565b915061416d826150a1565b602082019050919050565b6000614185601683614862565b9150614190826150ca565b602082019050919050565b60006141a8602983614862565b91506141b3826150f3565b604082019050919050565b60006141cb602f83614862565b91506141d682615142565b604082019050919050565b60006141ee602183614862565b91506141f982615191565b604082019050919050565b6000614211600083614857565b915061421c826151e0565b600082019050919050565b6000614234601283614862565b915061423f826151e3565b602082019050919050565b6000614257603183614862565b91506142628261520c565b604082019050919050565b600061427a602c83614862565b91506142858261525b565b604082019050919050565b600061429d601783614862565b91506142a8826152aa565b602082019050919050565b60006142c0601b83614862565b91506142cb826152d3565b602082019050919050565b6142df816149fd565b82525050565b6142ee816149fd565b82525050565b60006143008286613e75565b915061430c8285613e75565b91506143188284613ea6565b9150819050949350505050565b600061433082614204565b9150819050919050565b600060208201905061434f6000830184613d87565b92915050565b600060808201905061436a6000830187613d87565b6143776020830186613d87565b61438460408301856142e5565b81810360608301526143968184613e03565b905095945050505050565b600060208201905081810360008301526143bb8184613d96565b905092915050565b60006020820190506143d86000830184613df4565b92915050565b600060208201905081810360008301526143f88184613e3c565b905092915050565b6000602082019050818103600083015261441981613f25565b9050919050565b6000602082019050818103600083015261443981613f48565b9050919050565b6000602082019050818103600083015261445981613f6b565b9050919050565b6000602082019050818103600083015261447981613f8e565b9050919050565b6000602082019050818103600083015261449981613fb1565b9050919050565b600060208201905081810360008301526144b981613fd4565b9050919050565b600060208201905081810360008301526144d981613ff7565b9050919050565b600060208201905081810360008301526144f98161401a565b9050919050565b600060208201905081810360008301526145198161403d565b9050919050565b6000602082019050818103600083015261453981614060565b9050919050565b6000602082019050818103600083015261455981614083565b9050919050565b60006020820190508181036000830152614579816140a6565b9050919050565b60006020820190508181036000830152614599816140c9565b9050919050565b600060208201905081810360008301526145b9816140ec565b9050919050565b600060208201905081810360008301526145d98161410f565b9050919050565b600060208201905081810360008301526145f981614132565b9050919050565b6000602082019050818103600083015261461981614155565b9050919050565b6000602082019050818103600083015261463981614178565b9050919050565b600060208201905081810360008301526146598161419b565b9050919050565b60006020820190508181036000830152614679816141be565b9050919050565b60006020820190508181036000830152614699816141e1565b9050919050565b600060208201905081810360008301526146b981614227565b9050919050565b600060208201905081810360008301526146d98161424a565b9050919050565b600060208201905081810360008301526146f98161426d565b9050919050565b6000602082019050818103600083015261471981614290565b9050919050565b60006020820190508181036000830152614739816142b3565b9050919050565b600060208201905061475560008301846142e5565b92915050565b6000614765614776565b90506147718282614a7b565b919050565b6000604051905090565b600067ffffffffffffffff82111561479b5761479a614c11565b5b6147a482614c5e565b9050602081019050919050565b600067ffffffffffffffff8211156147cc576147cb614c11565b5b6147d582614c5e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614889826149fd565b9150614894836149fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c9576148c8614b26565b5b828201905092915050565b60006148df826149fd565b91506148ea836149fd565b9250826148fa576148f9614b55565b5b828204905092915050565b6000614910826149fd565b915061491b836149fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495457614953614b26565b5b828202905092915050565b600061496a826149fd565b9150614975836149fd565b92508282101561498857614987614b26565b5b828203905092915050565b600061499e826149dd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a34578082015181840152602081019050614a19565b83811115614a43576000848401525b50505050565b60006002820490506001821680614a6157607f821691505b60208210811415614a7557614a74614b84565b5b50919050565b614a8482614c5e565b810181811067ffffffffffffffff82111715614aa357614aa2614c11565b5b80604052505050565b6000614ab7826149fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aea57614ae9614b26565b5b600182019050919050565b6000614b00826149fd565b9150614b0b836149fd565b925082614b1b57614b1a614b55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d696e74416d6f756e7420666f722077686974656c697374206d75737420626560008201527f2031000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61530581614993565b811461531057600080fd5b50565b61531c816149a5565b811461532757600080fd5b50565b615333816149b1565b811461533e57600080fd5b50565b61534a816149fd565b811461535557600080fd5b5056fea2646970667358221220a8bacb8f9cf0d5e222e45552cefca374563aea6f61413015b18ae7d77ca6944564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000114672616374696f6e616c20427269636b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000346524200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d65547162394a624e73316361425a7033397a4254504c7031725a69536e6279566f4b6f474b4272527266797000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d643251386734576a4d666245666f72314c5853734c394b554c3933756361534b756650695857477a4a5375610000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636352211e1161015a578063ba4e5c49116100c1578063d5abeb011161007a578063d5abeb01146109b9578063da3ef23f146109e4578063e985e9c514610a0d578063edec5f2714610a4a578063f2c4ce1e14610a73578063f2fde38b14610a9c57610288565b8063ba4e5c49146108a4578063ba7d2c76146108e1578063c66828621461090c578063c87b56dd14610937578063c9b298f114610974578063d0eb26b01461099057610288565b806395d89b411161011357806395d89b41146107c95780639c70b512146107f4578063a0712d681461081f578063a22cb4651461083b578063a475b5dd14610864578063b88d4fde1461087b57610288565b80636352211e146106b95780636c0360eb146106f657806370a0823114610721578063715018a61461075e5780637f00c7a6146107755780638da5cb5b1461079e57610288565b806323b872dd116101fe578063438b6300116101b7578063438b63001461059757806344a0d68a146105d45780634f6ccce7146105fd578063518302271461063a57806355f804b3146106655780635c975abb1461068e57610288565b806323b872dd146104985780632f745c59146104c15780633af32abf146104fe5780633c9527641461053b5780633ccfd60b1461056457806342842e0e1461056e57610288565b8063081c8c4411610250578063081c8c4414610386578063095ea7b3146103b157806313faede6146103da57806318160ddd1461040557806318cae26914610430578063239c70ae1461046d57610288565b806301ffc9a71461028d57806302329a29146102ca578063047fc9aa146102f357806306fdde031461031e578063081812fc14610349575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613c9f565b610ac5565b6040516102c191906143c3565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613c72565b610ad7565b005b3480156102ff57600080fd5b50610308610b70565b6040516103159190614740565b60405180910390f35b34801561032a57600080fd5b50610333610b76565b60405161034091906143de565b60405180910390f35b34801561035557600080fd5b50610370600480360381019061036b9190613d42565b610c08565b60405161037d919061433a565b60405180910390f35b34801561039257600080fd5b5061039b610c8d565b6040516103a891906143de565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613be5565b610d1b565b005b3480156103e657600080fd5b506103ef610e33565b6040516103fc9190614740565b60405180910390f35b34801561041157600080fd5b5061041a610e39565b6040516104279190614740565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613a62565b610e46565b6040516104649190614740565b60405180910390f35b34801561047957600080fd5b50610482610e5e565b60405161048f9190614740565b60405180910390f35b3480156104a457600080fd5b506104bf60048036038101906104ba9190613acf565b610e64565b005b3480156104cd57600080fd5b506104e860048036038101906104e39190613be5565b610ec4565b6040516104f59190614740565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190613a62565b610f69565b60405161053291906143c3565b60405180910390f35b34801561054757600080fd5b50610562600480360381019061055d9190613c72565b611018565b005b61056c6110b1565b005b34801561057a57600080fd5b5061059560048036038101906105909190613acf565b6111ad565b005b3480156105a357600080fd5b506105be60048036038101906105b99190613a62565b6111cd565b6040516105cb91906143a1565b60405180910390f35b3480156105e057600080fd5b506105fb60048036038101906105f69190613d42565b61127b565b005b34801561060957600080fd5b50610624600480360381019061061f9190613d42565b611301565b6040516106319190614740565b60405180910390f35b34801561064657600080fd5b5061064f611372565b60405161065c91906143c3565b60405180910390f35b34801561067157600080fd5b5061068c60048036038101906106879190613cf9565b611385565b005b34801561069a57600080fd5b506106a361141b565b6040516106b091906143c3565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190613d42565b61142e565b6040516106ed919061433a565b60405180910390f35b34801561070257600080fd5b5061070b6114e0565b60405161071891906143de565b60405180910390f35b34801561072d57600080fd5b5061074860048036038101906107439190613a62565b61156e565b6040516107559190614740565b60405180910390f35b34801561076a57600080fd5b50610773611626565b005b34801561078157600080fd5b5061079c60048036038101906107979190613d42565b6116ae565b005b3480156107aa57600080fd5b506107b3611734565b6040516107c0919061433a565b60405180910390f35b3480156107d557600080fd5b506107de61175e565b6040516107eb91906143de565b60405180910390f35b34801561080057600080fd5b506108096117f0565b60405161081691906143c3565b60405180910390f35b61083960048036038101906108349190613d42565b611803565b005b34801561084757600080fd5b50610862600480360381019061085d9190613ba5565b611aec565b005b34801561087057600080fd5b50610879611c6d565b005b34801561088757600080fd5b506108a2600480360381019061089d9190613b22565b611d06565b005b3480156108b057600080fd5b506108cb60048036038101906108c69190613d42565b611d68565b6040516108d8919061433a565b60405180910390f35b3480156108ed57600080fd5b506108f6611da7565b6040516109039190614740565b60405180910390f35b34801561091857600080fd5b50610921611dad565b60405161092e91906143de565b60405180910390f35b34801561094357600080fd5b5061095e60048036038101906109599190613d42565b611e3b565b60405161096b91906143de565b60405180910390f35b61098e60048036038101906109899190613d42565b611f94565b005b34801561099c57600080fd5b506109b760048036038101906109b29190613d42565b612219565b005b3480156109c557600080fd5b506109ce61229f565b6040516109db9190614740565b60405180910390f35b3480156109f057600080fd5b50610a0b6004803603810190610a069190613cf9565b6122a5565b005b348015610a1957600080fd5b50610a346004803603810190610a2f9190613a8f565b61233b565b604051610a4191906143c3565b60405180910390f35b348015610a5657600080fd5b50610a716004803603810190610a6c9190613c25565b6123cf565b005b348015610a7f57600080fd5b50610a9a6004803603810190610a959190613cf9565b61246f565b005b348015610aa857600080fd5b50610ac36004803603810190610abe9190613a62565b612505565b005b6000610ad0826125fd565b9050919050565b610adf612677565b73ffffffffffffffffffffffffffffffffffffffff16610afd611734565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90614600565b60405180910390fd5b80601360006101000a81548160ff02191690831515021790555050565b600c5481565b606060008054610b8590614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb190614a49565b8015610bfe5780601f10610bd357610100808354040283529160200191610bfe565b820191906000526020600020905b815481529060010190602001808311610be157829003601f168201915b5050505050905090565b6000610c138261267f565b610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c49906145e0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e8054610c9a90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc690614a49565b8015610d135780601f10610ce857610100808354040283529160200191610d13565b820191906000526020600020905b815481529060010190602001808311610cf657829003601f168201915b505050505081565b6000610d268261142e565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8e90614680565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610db6612677565b73ffffffffffffffffffffffffffffffffffffffff161480610de55750610de481610ddf612677565b61233b565b5b610e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1b90614520565b60405180910390fd5b610e2e83836126eb565b505050565b600f5481565b6000600880549050905090565b60156020528060005260406000206000915090505481565b60115481565b610e75610e6f612677565b826127a4565b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab906146c0565b60405180910390fd5b610ebf838383612882565b505050565b6000610ecf8361156e565b8210610f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0790614400565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600080600090505b60148054905081101561100d578273ffffffffffffffffffffffffffffffffffffffff1660148281548110610fa957610fa8614be2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ffa576001915050611013565b808061100590614aac565b915050610f71565b50600090505b919050565b611020612677565b73ffffffffffffffffffffffffffffffffffffffff1661103e611734565b73ffffffffffffffffffffffffffffffffffffffff1614611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90614600565b60405180910390fd5b80601360026101000a81548160ff02191690831515021790555050565b6110b9612677565b73ffffffffffffffffffffffffffffffffffffffff166110d7611734565b73ffffffffffffffffffffffffffffffffffffffff161461112d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112490614600565b60405180910390fd5b6000611137611734565b73ffffffffffffffffffffffffffffffffffffffff164760405161115a90614325565b60006040518083038185875af1925050503d8060008114611197576040519150601f19603f3d011682016040523d82523d6000602084013e61119c565b606091505b50509050806111aa57600080fd5b50565b6111c883838360405180602001604052806000815250611d06565b505050565b606060006111da8361156e565b905060008167ffffffffffffffff8111156111f8576111f7614c11565b5b6040519080825280602002602001820160405280156112265781602001602082028036833780820191505090505b50905060005b828110156112705761123e8582610ec4565b82828151811061125157611250614be2565b5b602002602001018181525050808061126890614aac565b91505061122c565b508092505050919050565b611283612677565b73ffffffffffffffffffffffffffffffffffffffff166112a1611734565b73ffffffffffffffffffffffffffffffffffffffff16146112f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ee90614600565b60405180910390fd5b80600f8190555050565b600061130b610e39565b821061134c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611343906146e0565b60405180910390fd5b600882815481106113605761135f614be2565b5b90600052602060002001549050919050565b601360019054906101000a900460ff1681565b61138d612677565b73ffffffffffffffffffffffffffffffffffffffff166113ab611734565b73ffffffffffffffffffffffffffffffffffffffff1614611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890614600565b60405180910390fd5b80600b908051906020019061141792919061375f565b5050565b601360009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90614560565b60405180910390fd5b80915050919050565b600b80546114ed90614a49565b80601f016020809104026020016040519081016040528092919081815260200182805461151990614a49565b80156115665780601f1061153b57610100808354040283529160200191611566565b820191906000526020600020905b81548152906001019060200180831161154957829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d690614540565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61162e612677565b73ffffffffffffffffffffffffffffffffffffffff1661164c611734565b73ffffffffffffffffffffffffffffffffffffffff16146116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990614600565b60405180910390fd5b6116ac6000612ade565b565b6116b6612677565b73ffffffffffffffffffffffffffffffffffffffff166116d4611734565b73ffffffffffffffffffffffffffffffffffffffff161461172a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172190614600565b60405180910390fd5b8060118190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461176d90614a49565b80601f016020809104026020016040519081016040528092919081815260200182805461179990614a49565b80156117e65780601f106117bb576101008083540402835291602001916117e6565b820191906000526020600020905b8154815290600101906020018083116117c957829003601f168201915b5050505050905090565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1615611853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184a90614620565b60405180910390fd5b61185b610e39565b600c81905550600081116118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90614720565b60405180910390fd5b6011548111156118e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e0906145a0565b60405180910390fd5b60105481600c546118fa919061487e565b111561193b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193290614580565b60405180910390fd5b611943611734565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611a5b576000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060125482826119c8919061487e565b1115611a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0090614480565b60405180910390fd5b81600f54611a179190614905565b341015611a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a50906146a0565b60405180910390fd5b505b6000600190505b818111611ae857601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190611ab990614aac565b9190505550611ad53382600c54611ad0919061487e565b612ba4565b8080611ae090614aac565b915050611a62565b5050565b611af4612677565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b59906144e0565b60405180910390fd5b8060056000611b6f612677565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c1c612677565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c6191906143c3565b60405180910390a35050565b611c75612677565b73ffffffffffffffffffffffffffffffffffffffff16611c93611734565b73ffffffffffffffffffffffffffffffffffffffff1614611ce9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce090614600565b60405180910390fd5b6001601360016101000a81548160ff021916908315150217905550565b611d17611d11612677565b836127a4565b611d56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4d906146c0565b60405180910390fd5b611d6284848484612bc2565b50505050565b60148181548110611d7857600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60125481565b600d8054611dba90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054611de690614a49565b8015611e335780601f10611e0857610100808354040283529160200191611e33565b820191906000526020600020905b815481529060010190602001808311611e1657829003601f168201915b505050505081565b6060611e468261267f565b611e85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7c90614660565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611f3357600e8054611eae90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054611eda90614a49565b8015611f275780601f10611efc57610100808354040283529160200191611f27565b820191906000526020600020905b815481529060010190602001808311611f0a57829003601f168201915b50505050509050611f8f565b6000611f3d612c1e565b90506000815111611f5d5760405180602001604052806000815250611f8b565b80611f6784612cb0565b600d604051602001611f7b939291906142f4565b6040516020818303038152906040525b9150505b919050565b601360009054906101000a900460ff1615611fe4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdb90614620565b60405180910390fd5b611fec610e39565b600c8190555060008111612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614720565b60405180910390fd5b60115481111561207a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612071906145a0565b60405180910390fd5b60105481600c5461208b919061487e565b11156120cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c390614580565b60405180910390fd5b60011515601360029054906101000a900460ff161515146120ec57600080fd5b6120f533610f69565b612134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212b90614700565b60405180910390fd5b6000601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506012548282612187919061487e565b11156121c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bf90614480565b60405180910390fd5b6001821461220b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612202906144a0565b60405180910390fd5b6122153383612ba4565b5050565b612221612677565b73ffffffffffffffffffffffffffffffffffffffff1661223f611734565b73ffffffffffffffffffffffffffffffffffffffff1614612295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161228c90614600565b60405180910390fd5b8060128190555050565b60105481565b6122ad612677565b73ffffffffffffffffffffffffffffffffffffffff166122cb611734565b73ffffffffffffffffffffffffffffffffffffffff1614612321576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231890614600565b60405180910390fd5b80600d908051906020019061233792919061375f565b5050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6123d7612677565b73ffffffffffffffffffffffffffffffffffffffff166123f5611734565b73ffffffffffffffffffffffffffffffffffffffff161461244b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244290614600565b60405180910390fd5b6014600061245991906137e5565b81816014919061246a929190613806565b505050565b612477612677565b73ffffffffffffffffffffffffffffffffffffffff16612495611734565b73ffffffffffffffffffffffffffffffffffffffff16146124eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e290614600565b60405180910390fd5b80600e908051906020019061250192919061375f565b5050565b61250d612677565b73ffffffffffffffffffffffffffffffffffffffff1661252b611734565b73ffffffffffffffffffffffffffffffffffffffff1614612581576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257890614600565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e890614440565b60405180910390fd5b6125fa81612ade565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612670575061266f82612e11565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661275e8361142e565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006127af8261267f565b6127ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e590614500565b60405180910390fd5b60006127f98361142e565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061286857508373ffffffffffffffffffffffffffffffffffffffff1661285084610c08565b73ffffffffffffffffffffffffffffffffffffffff16145b806128795750612878818561233b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166128a28261142e565b73ffffffffffffffffffffffffffffffffffffffff16146128f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ef90614640565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295f906144c0565b60405180910390fd5b612973838383612ef3565b61297e6000826126eb565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ce919061495f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a25919061487e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612bbe828260405180602001604052806000815250612f03565b5050565b612bcd848484612882565b612bd984848484612f5e565b612c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c0f90614420565b60405180910390fd5b50505050565b6060600b8054612c2d90614a49565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5990614a49565b8015612ca65780601f10612c7b57610100808354040283529160200191612ca6565b820191906000526020600020905b815481529060010190602001808311612c8957829003601f168201915b5050505050905090565b60606000821415612cf8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e0c565b600082905060005b60008214612d2a578080612d1390614aac565b915050600a82612d2391906148d4565b9150612d00565b60008167ffffffffffffffff811115612d4657612d45614c11565b5b6040519080825280601f01601f191660200182016040528015612d785781602001600182028036833780820191505090505b5090505b60008514612e0557600182612d91919061495f565b9150600a85612da09190614af5565b6030612dac919061487e565b60f81b818381518110612dc257612dc1614be2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dfe91906148d4565b9450612d7c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612edc57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612eec5750612eeb826130f5565b5b9050919050565b612efe83838361315f565b505050565b612f0d8383613273565b612f1a6000848484612f5e565b612f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f5090614420565b60405180910390fd5b505050565b6000612f7f8473ffffffffffffffffffffffffffffffffffffffff16613441565b156130e8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fa8612677565b8786866040518563ffffffff1660e01b8152600401612fca9493929190614355565b602060405180830381600087803b158015612fe457600080fd5b505af192505050801561301557506040513d601f19601f820116820180604052508101906130129190613ccc565b60015b613098573d8060008114613045576040519150601f19603f3d011682016040523d82523d6000602084013e61304a565b606091505b50600081511415613090576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161308790614420565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130ed565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61316a838383613454565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156131ad576131a881613459565b6131ec565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131eb576131ea83826134a2565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561322f5761322a8161360f565b61326e565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461326d5761326c82826136e0565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132da906145c0565b60405180910390fd5b6132ec8161267f565b1561332c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332390614460565b60405180910390fd5b61333860008383612ef3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613388919061487e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016134af8461156e565b6134b9919061495f565b905060006007600084815260200190815260200160002054905081811461359e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613623919061495f565b905060006009600084815260200190815260200160002054905060006008838154811061365357613652614be2565b5b90600052602060002001549050806008838154811061367557613674614be2565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806136c4576136c3614bb3565b5b6001900381819060005260206000200160009055905550505050565b60006136eb8361156e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461376b90614a49565b90600052602060002090601f01602090048101928261378d57600085556137d4565b82601f106137a657805160ff19168380011785556137d4565b828001600101855582156137d4579182015b828111156137d35782518255916020019190600101906137b8565b5b5090506137e191906138a6565b5090565b508054600082559060005260206000209081019061380391906138a6565b50565b828054828255906000526020600020908101928215613895579160200282015b8281111561389457823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613826565b5b5090506138a291906138a6565b5090565b5b808211156138bf5760008160009055506001016138a7565b5090565b60006138d66138d184614780565b61475b565b9050828152602081018484840111156138f2576138f1614c4f565b5b6138fd848285614a07565b509392505050565b6000613918613913846147b1565b61475b565b90508281526020810184848401111561393457613933614c4f565b5b61393f848285614a07565b509392505050565b600081359050613956816152fc565b92915050565b60008083601f84011261397257613971614c45565b5b8235905067ffffffffffffffff81111561398f5761398e614c40565b5b6020830191508360208202830111156139ab576139aa614c4a565b5b9250929050565b6000813590506139c181615313565b92915050565b6000813590506139d68161532a565b92915050565b6000815190506139eb8161532a565b92915050565b600082601f830112613a0657613a05614c45565b5b8135613a168482602086016138c3565b91505092915050565b600082601f830112613a3457613a33614c45565b5b8135613a44848260208601613905565b91505092915050565b600081359050613a5c81615341565b92915050565b600060208284031215613a7857613a77614c59565b5b6000613a8684828501613947565b91505092915050565b60008060408385031215613aa657613aa5614c59565b5b6000613ab485828601613947565b9250506020613ac585828601613947565b9150509250929050565b600080600060608486031215613ae857613ae7614c59565b5b6000613af686828701613947565b9350506020613b0786828701613947565b9250506040613b1886828701613a4d565b9150509250925092565b60008060008060808587031215613b3c57613b3b614c59565b5b6000613b4a87828801613947565b9450506020613b5b87828801613947565b9350506040613b6c87828801613a4d565b925050606085013567ffffffffffffffff811115613b8d57613b8c614c54565b5b613b99878288016139f1565b91505092959194509250565b60008060408385031215613bbc57613bbb614c59565b5b6000613bca85828601613947565b9250506020613bdb858286016139b2565b9150509250929050565b60008060408385031215613bfc57613bfb614c59565b5b6000613c0a85828601613947565b9250506020613c1b85828601613a4d565b9150509250929050565b60008060208385031215613c3c57613c3b614c59565b5b600083013567ffffffffffffffff811115613c5a57613c59614c54565b5b613c668582860161395c565b92509250509250929050565b600060208284031215613c8857613c87614c59565b5b6000613c96848285016139b2565b91505092915050565b600060208284031215613cb557613cb4614c59565b5b6000613cc3848285016139c7565b91505092915050565b600060208284031215613ce257613ce1614c59565b5b6000613cf0848285016139dc565b91505092915050565b600060208284031215613d0f57613d0e614c59565b5b600082013567ffffffffffffffff811115613d2d57613d2c614c54565b5b613d3984828501613a1f565b91505092915050565b600060208284031215613d5857613d57614c59565b5b6000613d6684828501613a4d565b91505092915050565b6000613d7b83836142d6565b60208301905092915050565b613d9081614993565b82525050565b6000613da182614807565b613dab8185614835565b9350613db6836147e2565b8060005b83811015613de7578151613dce8882613d6f565b9750613dd983614828565b925050600181019050613dba565b5085935050505092915050565b613dfd816149a5565b82525050565b6000613e0e82614812565b613e188185614846565b9350613e28818560208601614a16565b613e3181614c5e565b840191505092915050565b6000613e478261481d565b613e518185614862565b9350613e61818560208601614a16565b613e6a81614c5e565b840191505092915050565b6000613e808261481d565b613e8a8185614873565b9350613e9a818560208601614a16565b80840191505092915050565b60008154613eb381614a49565b613ebd8186614873565b94506001821660008114613ed85760018114613ee957613f1c565b60ff19831686528186019350613f1c565b613ef2856147f2565b60005b83811015613f1457815481890152600182019150602081019050613ef5565b838801955050505b50505092915050565b6000613f32602b83614862565b9150613f3d82614c6f565b604082019050919050565b6000613f55603283614862565b9150613f6082614cbe565b604082019050919050565b6000613f78602683614862565b9150613f8382614d0d565b604082019050919050565b6000613f9b601c83614862565b9150613fa682614d5c565b602082019050919050565b6000613fbe601c83614862565b9150613fc982614d85565b602082019050919050565b6000613fe1602283614862565b9150613fec82614dae565b604082019050919050565b6000614004602483614862565b915061400f82614dfd565b604082019050919050565b6000614027601983614862565b915061403282614e4c565b602082019050919050565b600061404a602c83614862565b915061405582614e75565b604082019050919050565b600061406d603883614862565b915061407882614ec4565b604082019050919050565b6000614090602a83614862565b915061409b82614f13565b604082019050919050565b60006140b3602983614862565b91506140be82614f62565b604082019050919050565b60006140d6601683614862565b91506140e182614fb1565b602082019050919050565b60006140f9602483614862565b915061410482614fda565b604082019050919050565b600061411c602083614862565b915061412782615029565b602082019050919050565b600061413f602c83614862565b915061414a82615052565b604082019050919050565b6000614162602083614862565b915061416d826150a1565b602082019050919050565b6000614185601683614862565b9150614190826150ca565b602082019050919050565b60006141a8602983614862565b91506141b3826150f3565b604082019050919050565b60006141cb602f83614862565b91506141d682615142565b604082019050919050565b60006141ee602183614862565b91506141f982615191565b604082019050919050565b6000614211600083614857565b915061421c826151e0565b600082019050919050565b6000614234601283614862565b915061423f826151e3565b602082019050919050565b6000614257603183614862565b91506142628261520c565b604082019050919050565b600061427a602c83614862565b91506142858261525b565b604082019050919050565b600061429d601783614862565b91506142a8826152aa565b602082019050919050565b60006142c0601b83614862565b91506142cb826152d3565b602082019050919050565b6142df816149fd565b82525050565b6142ee816149fd565b82525050565b60006143008286613e75565b915061430c8285613e75565b91506143188284613ea6565b9150819050949350505050565b600061433082614204565b9150819050919050565b600060208201905061434f6000830184613d87565b92915050565b600060808201905061436a6000830187613d87565b6143776020830186613d87565b61438460408301856142e5565b81810360608301526143968184613e03565b905095945050505050565b600060208201905081810360008301526143bb8184613d96565b905092915050565b60006020820190506143d86000830184613df4565b92915050565b600060208201905081810360008301526143f88184613e3c565b905092915050565b6000602082019050818103600083015261441981613f25565b9050919050565b6000602082019050818103600083015261443981613f48565b9050919050565b6000602082019050818103600083015261445981613f6b565b9050919050565b6000602082019050818103600083015261447981613f8e565b9050919050565b6000602082019050818103600083015261449981613fb1565b9050919050565b600060208201905081810360008301526144b981613fd4565b9050919050565b600060208201905081810360008301526144d981613ff7565b9050919050565b600060208201905081810360008301526144f98161401a565b9050919050565b600060208201905081810360008301526145198161403d565b9050919050565b6000602082019050818103600083015261453981614060565b9050919050565b6000602082019050818103600083015261455981614083565b9050919050565b60006020820190508181036000830152614579816140a6565b9050919050565b60006020820190508181036000830152614599816140c9565b9050919050565b600060208201905081810360008301526145b9816140ec565b9050919050565b600060208201905081810360008301526145d98161410f565b9050919050565b600060208201905081810360008301526145f981614132565b9050919050565b6000602082019050818103600083015261461981614155565b9050919050565b6000602082019050818103600083015261463981614178565b9050919050565b600060208201905081810360008301526146598161419b565b9050919050565b60006020820190508181036000830152614679816141be565b9050919050565b60006020820190508181036000830152614699816141e1565b9050919050565b600060208201905081810360008301526146b981614227565b9050919050565b600060208201905081810360008301526146d98161424a565b9050919050565b600060208201905081810360008301526146f98161426d565b9050919050565b6000602082019050818103600083015261471981614290565b9050919050565b60006020820190508181036000830152614739816142b3565b9050919050565b600060208201905061475560008301846142e5565b92915050565b6000614765614776565b90506147718282614a7b565b919050565b6000604051905090565b600067ffffffffffffffff82111561479b5761479a614c11565b5b6147a482614c5e565b9050602081019050919050565b600067ffffffffffffffff8211156147cc576147cb614c11565b5b6147d582614c5e565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614889826149fd565b9150614894836149fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156148c9576148c8614b26565b5b828201905092915050565b60006148df826149fd565b91506148ea836149fd565b9250826148fa576148f9614b55565b5b828204905092915050565b6000614910826149fd565b915061491b836149fd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561495457614953614b26565b5b828202905092915050565b600061496a826149fd565b9150614975836149fd565b92508282101561498857614987614b26565b5b828203905092915050565b600061499e826149dd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614a34578082015181840152602081019050614a19565b83811115614a43576000848401525b50505050565b60006002820490506001821680614a6157607f821691505b60208210811415614a7557614a74614b84565b5b50919050565b614a8482614c5e565b810181811067ffffffffffffffff82111715614aa357614aa2614c11565b5b80604052505050565b6000614ab7826149fd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614aea57614ae9614b26565b5b600182019050919050565b6000614b00826149fd565b9150614b0b836149fd565b925082614b1b57614b1a614b55565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f6d6178204e465420706572206164647265737320657863656564656400000000600082015250565b7f6d696e74416d6f756e7420666f722077686974656c697374206d75737420626560008201527f2031000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f6d6178206d696e7420616d6f756e74207065722073657373696f6e206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f74686520636f6e74726163742069732070617573656400000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61530581614993565b811461531057600080fd5b50565b61531c816149a5565b811461532757600080fd5b50565b615333816149b1565b811461533e57600080fd5b50565b61534a816149fd565b811461535557600080fd5b5056fea2646970667358221220a8bacb8f9cf0d5e222e45552cefca374563aea6f61413015b18ae7d77ca6944564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000114672616374696f6e616c20427269636b73000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000346524200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d65547162394a624e73316361425a7033397a4254504c7031725a69536e6279566f4b6f474b4272527266797000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d643251386734576a4d666245666f72314c5853734c394b554c3933756361534b756650695857477a4a5375610000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fractional Bricks
Arg [1] : _symbol (string): FRB
Arg [2] : _initBaseURI (string): ipfs://QmeTqb9JbNs1caBZp39zBTPLp1rZiSnbyVoKoGKBrRrfyp
Arg [3] : _initNotRevealedUri (string): ipfs://Qmd2Q8g4WjMfbEfor1LXSsL9KUL93ucaSKufPiXWGzJSua

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 4672616374696f6e616c20427269636b73000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4652420000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [9] : 697066733a2f2f516d65547162394a624e73316361425a7033397a4254504c70
Arg [10] : 31725a69536e6279566f4b6f474b427252726679700000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d643251386734576a4d666245666f72314c5853734c394b
Arg [13] : 554c3933756361534b756650695857477a4a5375610000000000000000000000


Deployed Bytecode Sourcemap

43209:5752:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48024:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47627:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43327:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24859:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26418:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43395:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25941:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43428:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37607:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43732:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43502:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27308:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37275:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45836:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47708:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48490:468;;;:::i;:::-;;27718:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46081:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47059:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37797:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43618:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47267:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43587:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24553:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43301:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24283:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4558:94;;;;;;;;;;;;;:::i;:::-;;47145:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3907:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25028:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43651:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44187:890;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26711:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46874:65;;;;;;;;;;;;;:::i;:::-;;27974:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43690:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43542:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43353:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46416:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45085:743;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46947:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43465:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47371:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27077:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47811:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47501:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4807:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48024:197;48148:4;48177:36;48201:11;48177:23;:36::i;:::-;48170:43;;48024:197;;;:::o;47627:73::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47688:6:::1;47679;;:15;;;;;;;;;;;;;;;;;;47627:73:::0;:::o;43327:21::-;;;;:::o;24859:100::-;24913:13;24946:5;24939:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24859:100;:::o;26418:221::-;26494:7;26522:16;26530:7;26522;:16::i;:::-;26514:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26607:15;:24;26623:7;26607:24;;;;;;;;;;;;;;;;;;;;;26600:31;;26418:221;;;:::o;43395:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25941:411::-;26022:13;26038:23;26053:7;26038:14;:23::i;:::-;26022:39;;26086:5;26080:11;;:2;:11;;;;26072:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26180:5;26164:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26189:37;26206:5;26213:12;:10;:12::i;:::-;26189:16;:37::i;:::-;26164:62;26142:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;26323:21;26332:2;26336:7;26323:8;:21::i;:::-;26011:341;25941:411;;:::o;43428:32::-;;;;:::o;37607:113::-;37668:7;37695:10;:17;;;;37688:24;;37607:113;:::o;43732:55::-;;;;;;;;;;;;;;;;;:::o;43502:35::-;;;;:::o;27308:339::-;27503:41;27522:12;:10;:12::i;:::-;27536:7;27503:18;:41::i;:::-;27495:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27611:28;27621:4;27627:2;27631:7;27611:9;:28::i;:::-;27308:339;;;:::o;37275:256::-;37372:7;37408:23;37425:5;37408:16;:23::i;:::-;37400:5;:31;37392:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37497:12;:19;37510:5;37497:19;;;;;;;;;;;;;;;:26;37517:5;37497:26;;;;;;;;;;;;37490:33;;37275:256;;;;:::o;45836:239::-;45895:4;45913:6;45922:1;45913:10;;45908:143;45929:20;:27;;;;45925:1;:31;45908:143;;;46003:5;45976:32;;:20;45997:1;45976:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;45972:72;;;46030:4;46023:11;;;;;45972:72;45958:3;;;;;:::i;:::-;;;;45908:143;;;;46064:5;46057:12;;45836:239;;;;:::o;47708:95::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47791:6:::1;47773:15;;:24;;;;;;;;;;;;;;;;;;47708:95:::0;:::o;48490:468::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48780:7:::1;48801;:5;:7::i;:::-;48793:21;;48822;48793:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48779:69;;;48863:2;48855:11;;;::::0;::::1;;48535:423;48490:468::o:0;27718:185::-;27856:39;27873:4;27879:2;27883:7;27856:39;;;;;;;;;;;;:16;:39::i;:::-;27718:185;;;:::o;46081:329::-;46141:16;46165:23;46191:17;46201:6;46191:9;:17::i;:::-;46165:43;;46215:25;46257:15;46243:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46215:58;;46285:9;46280:103;46300:15;46296:1;:19;46280:103;;;46345:30;46365:6;46373:1;46345:19;:30::i;:::-;46331:8;46340:1;46331:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;46317:3;;;;;:::i;:::-;;;;46280:103;;;;46396:8;46389:15;;;;46081:329;;;:::o;47059:80::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47125:8:::1;47118:4;:15;;;;47059:80:::0;:::o;37797:233::-;37872:7;37908:30;:28;:30::i;:::-;37900:5;:38;37892:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;38005:10;38016:5;38005:17;;;;;;;;:::i;:::-;;;;;;;;;;37998:24;;37797:233;;;:::o;43618:28::-;;;;;;;;;;;;;:::o;47267:98::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47348:11:::1;47338:7;:21;;;;;;;;;;;;:::i;:::-;;47267:98:::0;:::o;43587:26::-;;;;;;;;;;;;;:::o;24553:239::-;24625:7;24645:13;24661:7;:16;24669:7;24661:16;;;;;;;;;;;;;;;;;;;;;24645:32;;24713:1;24696:19;;:5;:19;;;;24688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24779:5;24772:12;;;24553:239;;;:::o;43301:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24283:208::-;24355:7;24400:1;24383:19;;:5;:19;;;;24375:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24467:9;:16;24477:5;24467:16;;;;;;;;;;;;;;;;24460:23;;24283:208;;;:::o;4558:94::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4623:21:::1;4641:1;4623:9;:21::i;:::-;4558:94::o:0;47145:116::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47238:17:::1;47222:13;:33;;;;47145:116:::0;:::o;3907:87::-;3953:7;3980:6;;;;;;;;;;;3973:13;;3907:87;:::o;25028:104::-;25084:13;25117:7;25110:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25028:104;:::o;43651:34::-;;;;;;;;;;;;;:::o;44187:890::-;44253:6;;;;;;;;;;;44252:7;44244:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;44302:13;:11;:13::i;:::-;44293:6;:22;;;;44344:1;44330:11;:15;44322:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;44407:13;;44392:11;:28;;44384:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;44500:9;;44485:11;44476:6;;:20;;;;:::i;:::-;:33;;44468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44563:7;:5;:7::i;:::-;44549:21;;:10;:21;;;44545:383;;44675:24;44702:20;:32;44723:10;44702:32;;;;;;;;;;;;;;;;44675:59;;44791:18;;44776:11;44757:16;:30;;;;:::i;:::-;:52;;44749:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;44886:11;44879:4;;:18;;;;:::i;:::-;44866:9;:31;;44858:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;44572:356;44545:383;44941:9;44953:1;44941:13;;44936:136;44961:11;44956:1;:16;44936:136;;44988:20;:32;45009:10;44988:32;;;;;;;;;;;;;;;;:34;;;;;;;;;:::i;:::-;;;;;;45031:33;45041:10;45062:1;45053:6;;:10;;;;:::i;:::-;45031:9;:33::i;:::-;44974:3;;;;;:::i;:::-;;;;44936:136;;;;44187:890;:::o;26711:295::-;26826:12;:10;:12::i;:::-;26814:24;;:8;:24;;;;26806:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26926:8;26881:18;:32;26900:12;:10;:12::i;:::-;26881:32;;;;;;;;;;;;;;;:42;26914:8;26881:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26979:8;26950:48;;26965:12;:10;:12::i;:::-;26950:48;;;26989:8;26950:48;;;;;;:::i;:::-;;;;;;;;26711:295;;:::o;46874:65::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46929:4:::1;46918:8;;:15;;;;;;;;;;;;;;;;;;46874:65::o:0;27974:328::-;28149:41;28168:12;:10;:12::i;:::-;28182:7;28149:18;:41::i;:::-;28141:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28255:39;28269:4;28275:2;28279:7;28288:5;28255:13;:39::i;:::-;27974:328;;;;:::o;43690:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43542:40::-;;;;:::o;43353:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;46416:436::-;46490:13;46520:16;46528:7;46520;:16::i;:::-;46512:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;46612:5;46600:17;;:8;;;;;;;;;;;:17;;;46597:62;;;46637:14;46630:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46597:62;46665:28;46696:10;:8;:10::i;:::-;46665:41;;46751:1;46726:14;46720:28;:32;:126;;;;;;;;;;;;;;;;;46784:14;46800:18;:7;:16;:18::i;:::-;46820:13;46767:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46720:126;46713:133;;;46416:436;;;;:::o;45085:743::-;45155:6;;;;;;;;;;;45154:7;45146:42;;;;;;;;;;;;:::i;:::-;;;;;;;;;45204:13;:11;:13::i;:::-;45195:6;:22;;;;45246:1;45232:11;:15;45224:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;45309:13;;45294:11;:28;;45286:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;45402:9;;45387:11;45378:6;;:20;;;;:::i;:::-;:33;;45370:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45472:4;45453:23;;:15;;;;;;;;;;;:23;;;45445:32;;;;;;45492:25;45506:10;45492:13;:25::i;:::-;45484:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45552:24;45579:20;:32;45600:10;45579:32;;;;;;;;;;;;;;;;45552:59;;45660:18;;45645:11;45626:16;:30;;;;:::i;:::-;:52;;45618:93;;;;;;;;;;;;:::i;:::-;;;;;;;;;45741:1;45726:11;:16;45718:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;45788:34;45798:10;45810:11;45788:9;:34::i;:::-;45139:689;45085:743;:::o;46947:104::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47039:6:::1;47018:18;:27;;;;46947:104:::0;:::o;43465:32::-;;;;:::o;47371:122::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47470:17:::1;47454:13;:33;;;;;;;;;;;;:::i;:::-;;47371:122:::0;:::o;27077:164::-;27174:4;27198:18;:25;27217:5;27198:25;;;;;;;;;;;;;;;:35;27224:8;27198:35;;;;;;;;;;;;;;;;;;;;;;;;;27191:42;;27077:164;;;;:::o;47811:144::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47893:20:::1;;47886:27;;;;:::i;:::-;47943:6;;47920:20;:29;;;;;;;:::i;:::-;;47811:144:::0;;:::o;47501:120::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47600:15:::1;47583:14;:32;;;;;;;;;;;;:::i;:::-;;47501:120:::0;:::o;4807:192::-;4138:12;:10;:12::i;:::-;4127:23;;:7;:5;:7::i;:::-;:23;;;4119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4916:1:::1;4896:22;;:8;:22;;;;4888:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4972:19;4982:8;4972:9;:19::i;:::-;4807:192:::0;:::o;36967:224::-;37069:4;37108:35;37093:50;;;:11;:50;;;;:90;;;;37147:36;37171:11;37147:23;:36::i;:::-;37093:90;37086:97;;36967:224;;;:::o;2695:98::-;2748:7;2775:10;2768:17;;2695:98;:::o;29812:127::-;29877:4;29929:1;29901:30;;:7;:16;29909:7;29901:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29894:37;;29812:127;;;:::o;33794:174::-;33896:2;33869:15;:24;33885:7;33869:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33952:7;33948:2;33914:46;;33923:23;33938:7;33923:14;:23::i;:::-;33914:46;;;;;;;;;;;;33794:174;;:::o;30106:348::-;30199:4;30224:16;30232:7;30224;:16::i;:::-;30216:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30300:13;30316:23;30331:7;30316:14;:23::i;:::-;30300:39;;30369:5;30358:16;;:7;:16;;;:51;;;;30402:7;30378:31;;:20;30390:7;30378:11;:20::i;:::-;:31;;;30358:51;:87;;;;30413:32;30430:5;30437:7;30413:16;:32::i;:::-;30358:87;30350:96;;;30106:348;;;;:::o;33098:578::-;33257:4;33230:31;;:23;33245:7;33230:14;:23::i;:::-;:31;;;33222:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33340:1;33326:16;;:2;:16;;;;33318:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33396:39;33417:4;33423:2;33427:7;33396:20;:39::i;:::-;33500:29;33517:1;33521:7;33500:8;:29::i;:::-;33561:1;33542:9;:15;33552:4;33542:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33590:1;33573:9;:13;33583:2;33573:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33621:2;33602:7;:16;33610:7;33602:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33660:7;33656:2;33641:27;;33650:4;33641:27;;;;;;;;;;;;33098:578;;;:::o;5007:173::-;5063:16;5082:6;;;;;;;;;;;5063:25;;5108:8;5099:6;;:17;;;;;;;;;;;;;;;;;;5163:8;5132:40;;5153:8;5132:40;;;;;;;;;;;;5052:128;5007:173;:::o;30796:110::-;30872:26;30882:2;30886:7;30872:26;;;;;;;;;;;;:9;:26::i;:::-;30796:110;;:::o;29184:315::-;29341:28;29351:4;29357:2;29361:7;29341:9;:28::i;:::-;29388:48;29411:4;29417:2;29421:7;29430:5;29388:22;:48::i;:::-;29380:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29184:315;;;;:::o;44066:102::-;44126:13;44155:7;44148:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44066:102;:::o;311:723::-;367:13;597:1;588:5;:10;584:53;;;615:10;;;;;;;;;;;;;;;;;;;;;584:53;647:12;662:5;647:20;;678:14;703:78;718:1;710:4;:9;703:78;;736:8;;;;;:::i;:::-;;;;767:2;759:10;;;;;:::i;:::-;;;703:78;;;791:19;823:6;813:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;791:39;;841:154;857:1;848:5;:10;841:154;;885:1;875:11;;;;;:::i;:::-;;;952:2;944:5;:10;;;;:::i;:::-;931:2;:24;;;;:::i;:::-;918:39;;901:6;908;901:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;841:154;;;1019:6;1005:21;;;;;311:723;;;;:::o;23914:305::-;24016:4;24068:25;24053:40;;;:11;:40;;;;:105;;;;24125:33;24110:48;;;:11;:48;;;;24053:105;:158;;;;24175:36;24199:11;24175:23;:36::i;:::-;24053:158;24033:178;;23914:305;;;:::o;48287:194::-;48428:45;48455:4;48461:2;48465:7;48428:26;:45::i;:::-;48287:194;;;:::o;31133:321::-;31263:18;31269:2;31273:7;31263:5;:18::i;:::-;31314:54;31345:1;31349:2;31353:7;31362:5;31314:22;:54::i;:::-;31292:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;31133:321;;;:::o;34533:799::-;34688:4;34709:15;:2;:13;;;:15::i;:::-;34705:620;;;34761:2;34745:36;;;34782:12;:10;:12::i;:::-;34796:4;34802:7;34811:5;34745:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34741:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35004:1;34987:6;:13;:18;34983:272;;;35030:60;;;;;;;;;;:::i;:::-;;;;;;;;34983:272;35205:6;35199:13;35190:6;35186:2;35182:15;35175:38;34741:529;34878:41;;;34868:51;;;:6;:51;;;;34861:58;;;;;34705:620;35309:4;35302:11;;34533:799;;;;;;;:::o;15893:157::-;15978:4;16017:25;16002:40;;;:11;:40;;;;15995:47;;15893:157;;;:::o;38643:589::-;38787:45;38814:4;38820:2;38824:7;38787:26;:45::i;:::-;38865:1;38849:18;;:4;:18;;;38845:187;;;38884:40;38916:7;38884:31;:40::i;:::-;38845:187;;;38954:2;38946:10;;:4;:10;;;38942:90;;38973:47;39006:4;39012:7;38973:32;:47::i;:::-;38942:90;38845:187;39060:1;39046:16;;:2;:16;;;39042:183;;;39079:45;39116:7;39079:36;:45::i;:::-;39042:183;;;39152:4;39146:10;;:2;:10;;;39142:83;;39173:40;39201:2;39205:7;39173:27;:40::i;:::-;39142:83;39042:183;38643:589;;;:::o;31790:382::-;31884:1;31870:16;;:2;:16;;;;31862:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31943:16;31951:7;31943;:16::i;:::-;31942:17;31934:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;32005:45;32034:1;32038:2;32042:7;32005:20;:45::i;:::-;32080:1;32063:9;:13;32073:2;32063:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32111:2;32092:7;:16;32100:7;32092:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32156:7;32152:2;32131:33;;32148:1;32131:33;;;;;;;;;;;;31790:382;;:::o;5953:387::-;6013:4;6221:12;6288:7;6276:20;6268:28;;6331:1;6324:4;:8;6317:15;;;5953:387;;;:::o;35904:126::-;;;;:::o;39955:164::-;40059:10;:17;;;;40032:15;:24;40048:7;40032:24;;;;;;;;;;;:44;;;;40087:10;40103:7;40087:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39955:164;:::o;40746:988::-;41012:22;41062:1;41037:22;41054:4;41037:16;:22::i;:::-;:26;;;;:::i;:::-;41012:51;;41074:18;41095:17;:26;41113:7;41095:26;;;;;;;;;;;;41074:47;;41242:14;41228:10;:28;41224:328;;41273:19;41295:12;:18;41308:4;41295:18;;;;;;;;;;;;;;;:34;41314:14;41295:34;;;;;;;;;;;;41273:56;;41379:11;41346:12;:18;41359:4;41346:18;;;;;;;;;;;;;;;:30;41365:10;41346:30;;;;;;;;;;;:44;;;;41496:10;41463:17;:30;41481:11;41463:30;;;;;;;;;;;:43;;;;41258:294;41224:328;41648:17;:26;41666:7;41648:26;;;;;;;;;;;41641:33;;;41692:12;:18;41705:4;41692:18;;;;;;;;;;;;;;;:34;41711:14;41692:34;;;;;;;;;;;41685:41;;;40827:907;;40746:988;;:::o;42029:1079::-;42282:22;42327:1;42307:10;:17;;;;:21;;;;:::i;:::-;42282:46;;42339:18;42360:15;:24;42376:7;42360:24;;;;;;;;;;;;42339:45;;42711:19;42733:10;42744:14;42733:26;;;;;;;;:::i;:::-;;;;;;;;;;42711:48;;42797:11;42772:10;42783;42772:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42908:10;42877:15;:28;42893:11;42877:28;;;;;;;;;;;:41;;;;43049:15;:24;43065:7;43049:24;;;;;;;;;;;43042:31;;;43084:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42100:1008;;;42029:1079;:::o;39533:221::-;39618:14;39635:20;39652:2;39635:16;:20::i;:::-;39618:37;;39693:7;39666:12;:16;39679:2;39666:16;;;;;;;;;;;;;;;:24;39683:6;39666:24;;;;;;;;;;;:34;;;;39740:6;39711:17;:26;39729:7;39711:26;;;;;;;;;;;:35;;;;39607:147;39533:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:::-;18295:3;18316:67;18380:2;18375:3;18316:67;:::i;:::-;18309:74;;18392:93;18481:3;18392:93;:::i;:::-;18510:2;18505:3;18501:12;18494:19;;18153:366;;;:::o;18525:::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:::-;19039:3;19060:67;19124:2;19119:3;19060:67;:::i;:::-;19053:74;;19136:93;19225:3;19136:93;:::i;:::-;19254:2;19249:3;19245:12;19238:19;;18897:366;;;:::o;19269:::-;19411:3;19432:67;19496:2;19491:3;19432:67;:::i;:::-;19425:74;;19508:93;19597:3;19508:93;:::i;:::-;19626:2;19621:3;19617:12;19610:19;;19269:366;;;:::o;19641:398::-;19800:3;19821:83;19902:1;19897:3;19821:83;:::i;:::-;19814:90;;19913:93;20002:3;19913:93;:::i;:::-;20031:1;20026:3;20022:11;20015:18;;19641:398;;;:::o;20045:366::-;20187:3;20208:67;20272:2;20267:3;20208:67;:::i;:::-;20201:74;;20284:93;20373:3;20284:93;:::i;:::-;20402:2;20397:3;20393:12;20386:19;;20045:366;;;:::o;20417:::-;20559:3;20580:67;20644:2;20639:3;20580:67;:::i;:::-;20573:74;;20656:93;20745:3;20656:93;:::i;:::-;20774:2;20769:3;20765:12;20758:19;;20417:366;;;:::o;20789:::-;20931:3;20952:67;21016:2;21011:3;20952:67;:::i;:::-;20945:74;;21028:93;21117:3;21028:93;:::i;:::-;21146:2;21141:3;21137:12;21130:19;;20789:366;;;:::o;21161:::-;21303:3;21324:67;21388:2;21383:3;21324:67;:::i;:::-;21317:74;;21400:93;21489:3;21400:93;:::i;:::-;21518:2;21513:3;21509:12;21502:19;;21161:366;;;:::o;21533:::-;21675:3;21696:67;21760:2;21755:3;21696:67;:::i;:::-;21689:74;;21772:93;21861:3;21772:93;:::i;:::-;21890:2;21885:3;21881:12;21874:19;;21533:366;;;:::o;21905:108::-;21982:24;22000:5;21982:24;:::i;:::-;21977:3;21970:37;21905:108;;:::o;22019:118::-;22106:24;22124:5;22106:24;:::i;:::-;22101:3;22094:37;22019:118;;:::o;22143:589::-;22368:3;22390:95;22481:3;22472:6;22390:95;:::i;:::-;22383:102;;22502:95;22593:3;22584:6;22502:95;:::i;:::-;22495:102;;22614:92;22702:3;22693:6;22614:92;:::i;:::-;22607:99;;22723:3;22716:10;;22143:589;;;;;;:::o;22738:379::-;22922:3;22944:147;23087:3;22944:147;:::i;:::-;22937:154;;23108:3;23101:10;;22738:379;;;:::o;23123:222::-;23216:4;23254:2;23243:9;23239:18;23231:26;;23267:71;23335:1;23324:9;23320:17;23311:6;23267:71;:::i;:::-;23123:222;;;;:::o;23351:640::-;23546:4;23584:3;23573:9;23569:19;23561:27;;23598:71;23666:1;23655:9;23651:17;23642:6;23598:71;:::i;:::-;23679:72;23747:2;23736:9;23732:18;23723:6;23679:72;:::i;:::-;23761;23829:2;23818:9;23814:18;23805:6;23761:72;:::i;:::-;23880:9;23874:4;23870:20;23865:2;23854:9;23850:18;23843:48;23908:76;23979:4;23970:6;23908:76;:::i;:::-;23900:84;;23351:640;;;;;;;:::o;23997:373::-;24140:4;24178:2;24167:9;24163:18;24155:26;;24227:9;24221:4;24217:20;24213:1;24202:9;24198:17;24191:47;24255:108;24358:4;24349:6;24255:108;:::i;:::-;24247:116;;23997:373;;;;:::o;24376:210::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24514:65;24576:1;24565:9;24561:17;24552:6;24514:65;:::i;:::-;24376:210;;;;:::o;24592:313::-;24705:4;24743:2;24732:9;24728:18;24720:26;;24792:9;24786:4;24782:20;24778:1;24767:9;24763:17;24756:47;24820:78;24893:4;24884:6;24820:78;:::i;:::-;24812:86;;24592:313;;;;:::o;24911:419::-;25077:4;25115:2;25104:9;25100:18;25092:26;;25164:9;25158:4;25154:20;25150:1;25139:9;25135:17;25128:47;25192:131;25318:4;25192:131;:::i;:::-;25184:139;;24911:419;;;:::o;25336:::-;25502:4;25540:2;25529:9;25525:18;25517:26;;25589:9;25583:4;25579:20;25575:1;25564:9;25560:17;25553:47;25617:131;25743:4;25617:131;:::i;:::-;25609:139;;25336:419;;;:::o;25761:::-;25927:4;25965:2;25954:9;25950:18;25942:26;;26014:9;26008:4;26004:20;26000:1;25989:9;25985:17;25978:47;26042:131;26168:4;26042:131;:::i;:::-;26034:139;;25761:419;;;:::o;26186:::-;26352:4;26390:2;26379:9;26375:18;26367:26;;26439:9;26433:4;26429:20;26425:1;26414:9;26410:17;26403:47;26467:131;26593:4;26467:131;:::i;:::-;26459:139;;26186:419;;;:::o;26611:::-;26777:4;26815:2;26804:9;26800:18;26792:26;;26864:9;26858:4;26854:20;26850:1;26839:9;26835:17;26828:47;26892:131;27018:4;26892:131;:::i;:::-;26884:139;;26611:419;;;:::o;27036:::-;27202:4;27240:2;27229:9;27225:18;27217:26;;27289:9;27283:4;27279:20;27275:1;27264:9;27260:17;27253:47;27317:131;27443:4;27317:131;:::i;:::-;27309:139;;27036:419;;;:::o;27461:::-;27627:4;27665:2;27654:9;27650:18;27642:26;;27714:9;27708:4;27704:20;27700:1;27689:9;27685:17;27678:47;27742:131;27868:4;27742:131;:::i;:::-;27734:139;;27461:419;;;:::o;27886:::-;28052:4;28090:2;28079:9;28075:18;28067:26;;28139:9;28133:4;28129:20;28125:1;28114:9;28110:17;28103:47;28167:131;28293:4;28167:131;:::i;:::-;28159:139;;27886:419;;;:::o;28311:::-;28477:4;28515:2;28504:9;28500:18;28492:26;;28564:9;28558:4;28554:20;28550:1;28539:9;28535:17;28528:47;28592:131;28718:4;28592:131;:::i;:::-;28584:139;;28311:419;;;:::o;28736:::-;28902:4;28940:2;28929:9;28925:18;28917:26;;28989:9;28983:4;28979:20;28975:1;28964:9;28960:17;28953:47;29017:131;29143:4;29017:131;:::i;:::-;29009:139;;28736:419;;;:::o;29161:::-;29327:4;29365:2;29354:9;29350:18;29342:26;;29414:9;29408:4;29404:20;29400:1;29389:9;29385:17;29378:47;29442:131;29568:4;29442:131;:::i;:::-;29434:139;;29161:419;;;:::o;29586:::-;29752:4;29790:2;29779:9;29775:18;29767:26;;29839:9;29833:4;29829:20;29825:1;29814:9;29810:17;29803:47;29867:131;29993:4;29867:131;:::i;:::-;29859:139;;29586:419;;;:::o;30011:::-;30177:4;30215:2;30204:9;30200:18;30192:26;;30264:9;30258:4;30254:20;30250:1;30239:9;30235:17;30228:47;30292:131;30418:4;30292:131;:::i;:::-;30284:139;;30011:419;;;:::o;30436:::-;30602:4;30640:2;30629:9;30625:18;30617:26;;30689:9;30683:4;30679:20;30675:1;30664:9;30660:17;30653:47;30717:131;30843:4;30717:131;:::i;:::-;30709:139;;30436:419;;;:::o;30861:::-;31027:4;31065:2;31054:9;31050:18;31042:26;;31114:9;31108:4;31104:20;31100:1;31089:9;31085:17;31078:47;31142:131;31268:4;31142:131;:::i;:::-;31134:139;;30861:419;;;:::o;31286:::-;31452:4;31490:2;31479:9;31475:18;31467:26;;31539:9;31533:4;31529:20;31525:1;31514:9;31510:17;31503:47;31567:131;31693:4;31567:131;:::i;:::-;31559:139;;31286:419;;;:::o;31711:::-;31877:4;31915:2;31904:9;31900:18;31892:26;;31964:9;31958:4;31954:20;31950:1;31939:9;31935:17;31928:47;31992:131;32118:4;31992:131;:::i;:::-;31984:139;;31711:419;;;:::o;32136:::-;32302:4;32340:2;32329:9;32325:18;32317:26;;32389:9;32383:4;32379:20;32375:1;32364:9;32360:17;32353:47;32417:131;32543:4;32417:131;:::i;:::-;32409:139;;32136:419;;;:::o;32561:::-;32727:4;32765:2;32754:9;32750:18;32742:26;;32814:9;32808:4;32804:20;32800:1;32789:9;32785:17;32778:47;32842:131;32968:4;32842:131;:::i;:::-;32834:139;;32561:419;;;:::o;32986:::-;33152:4;33190:2;33179:9;33175:18;33167:26;;33239:9;33233:4;33229:20;33225:1;33214:9;33210:17;33203:47;33267:131;33393:4;33267:131;:::i;:::-;33259:139;;32986:419;;;:::o;33411:::-;33577:4;33615:2;33604:9;33600:18;33592:26;;33664:9;33658:4;33654:20;33650:1;33639:9;33635:17;33628:47;33692:131;33818:4;33692:131;:::i;:::-;33684:139;;33411:419;;;:::o;33836:::-;34002:4;34040:2;34029:9;34025:18;34017:26;;34089:9;34083:4;34079:20;34075:1;34064:9;34060:17;34053:47;34117:131;34243:4;34117:131;:::i;:::-;34109:139;;33836:419;;;:::o;34261:::-;34427:4;34465:2;34454:9;34450:18;34442:26;;34514:9;34508:4;34504:20;34500:1;34489:9;34485:17;34478:47;34542:131;34668:4;34542:131;:::i;:::-;34534:139;;34261:419;;;:::o;34686:::-;34852:4;34890:2;34879:9;34875:18;34867:26;;34939:9;34933:4;34929:20;34925:1;34914:9;34910:17;34903:47;34967:131;35093:4;34967:131;:::i;:::-;34959:139;;34686:419;;;:::o;35111:::-;35277:4;35315:2;35304:9;35300:18;35292:26;;35364:9;35358:4;35354:20;35350:1;35339:9;35335:17;35328:47;35392:131;35518:4;35392:131;:::i;:::-;35384:139;;35111:419;;;:::o;35536:::-;35702:4;35740:2;35729:9;35725:18;35717:26;;35789:9;35783:4;35779:20;35775:1;35764:9;35760:17;35753:47;35817:131;35943:4;35817:131;:::i;:::-;35809:139;;35536:419;;;:::o;35961:222::-;36054:4;36092:2;36081:9;36077:18;36069:26;;36105:71;36173:1;36162:9;36158:17;36149:6;36105:71;:::i;:::-;35961:222;;;;:::o;36189:129::-;36223:6;36250:20;;:::i;:::-;36240:30;;36279:33;36307:4;36299:6;36279:33;:::i;:::-;36189:129;;;:::o;36324:75::-;36357:6;36390:2;36384:9;36374:19;;36324:75;:::o;36405:307::-;36466:4;36556:18;36548:6;36545:30;36542:56;;;36578:18;;:::i;:::-;36542:56;36616:29;36638:6;36616:29;:::i;:::-;36608:37;;36700:4;36694;36690:15;36682:23;;36405:307;;;:::o;36718:308::-;36780:4;36870:18;36862:6;36859:30;36856:56;;;36892:18;;:::i;:::-;36856:56;36930:29;36952:6;36930:29;:::i;:::-;36922:37;;37014:4;37008;37004:15;36996:23;;36718:308;;;:::o;37032:132::-;37099:4;37122:3;37114:11;;37152:4;37147:3;37143:14;37135:22;;37032:132;;;:::o;37170:141::-;37219:4;37242:3;37234:11;;37265:3;37262:1;37255:14;37299:4;37296:1;37286:18;37278:26;;37170:141;;;:::o;37317:114::-;37384:6;37418:5;37412:12;37402:22;;37317:114;;;:::o;37437:98::-;37488:6;37522:5;37516:12;37506:22;;37437:98;;;:::o;37541:99::-;37593:6;37627:5;37621:12;37611:22;;37541:99;;;:::o;37646:113::-;37716:4;37748;37743:3;37739:14;37731:22;;37646:113;;;:::o;37765:184::-;37864:11;37898:6;37893:3;37886:19;37938:4;37933:3;37929:14;37914:29;;37765:184;;;;:::o;37955:168::-;38038:11;38072:6;38067:3;38060:19;38112:4;38107:3;38103:14;38088:29;;37955:168;;;;:::o;38129:147::-;38230:11;38267:3;38252:18;;38129:147;;;;:::o;38282:169::-;38366:11;38400:6;38395:3;38388:19;38440:4;38435:3;38431:14;38416:29;;38282:169;;;;:::o;38457:148::-;38559:11;38596:3;38581:18;;38457:148;;;;:::o;38611:305::-;38651:3;38670:20;38688:1;38670:20;:::i;:::-;38665:25;;38704:20;38722:1;38704:20;:::i;:::-;38699:25;;38858:1;38790:66;38786:74;38783:1;38780:81;38777:107;;;38864:18;;:::i;:::-;38777:107;38908:1;38905;38901:9;38894:16;;38611:305;;;;:::o;38922:185::-;38962:1;38979:20;38997:1;38979:20;:::i;:::-;38974:25;;39013:20;39031:1;39013:20;:::i;:::-;39008:25;;39052:1;39042:35;;39057:18;;:::i;:::-;39042:35;39099:1;39096;39092:9;39087:14;;38922:185;;;;:::o;39113:348::-;39153:7;39176:20;39194:1;39176:20;:::i;:::-;39171:25;;39210:20;39228:1;39210:20;:::i;:::-;39205:25;;39398:1;39330:66;39326:74;39323:1;39320:81;39315:1;39308:9;39301:17;39297:105;39294:131;;;39405:18;;:::i;:::-;39294:131;39453:1;39450;39446:9;39435:20;;39113:348;;;;:::o;39467:191::-;39507:4;39527:20;39545:1;39527:20;:::i;:::-;39522:25;;39561:20;39579:1;39561:20;:::i;:::-;39556:25;;39600:1;39597;39594:8;39591:34;;;39605:18;;:::i;:::-;39591:34;39650:1;39647;39643:9;39635:17;;39467:191;;;;:::o;39664:96::-;39701:7;39730:24;39748:5;39730:24;:::i;:::-;39719:35;;39664:96;;;:::o;39766:90::-;39800:7;39843:5;39836:13;39829:21;39818:32;;39766:90;;;:::o;39862:149::-;39898:7;39938:66;39931:5;39927:78;39916:89;;39862:149;;;:::o;40017:126::-;40054:7;40094:42;40087:5;40083:54;40072:65;;40017:126;;;:::o;40149:77::-;40186:7;40215:5;40204:16;;40149:77;;;:::o;40232:154::-;40316:6;40311:3;40306;40293:30;40378:1;40369:6;40364:3;40360:16;40353:27;40232:154;;;:::o;40392:307::-;40460:1;40470:113;40484:6;40481:1;40478:13;40470:113;;;40569:1;40564:3;40560:11;40554:18;40550:1;40545:3;40541:11;40534:39;40506:2;40503:1;40499:10;40494:15;;40470:113;;;40601:6;40598:1;40595:13;40592:101;;;40681:1;40672:6;40667:3;40663:16;40656:27;40592:101;40441:258;40392:307;;;:::o;40705:320::-;40749:6;40786:1;40780:4;40776:12;40766:22;;40833:1;40827:4;40823:12;40854:18;40844:81;;40910:4;40902:6;40898:17;40888:27;;40844:81;40972:2;40964:6;40961:14;40941:18;40938:38;40935:84;;;40991:18;;:::i;:::-;40935:84;40756:269;40705:320;;;:::o;41031:281::-;41114:27;41136:4;41114:27;:::i;:::-;41106:6;41102:40;41244:6;41232:10;41229:22;41208:18;41196:10;41193:34;41190:62;41187:88;;;41255:18;;:::i;:::-;41187:88;41295:10;41291:2;41284:22;41074:238;41031:281;;:::o;41318:233::-;41357:3;41380:24;41398:5;41380:24;:::i;:::-;41371:33;;41426:66;41419:5;41416:77;41413:103;;;41496:18;;:::i;:::-;41413:103;41543:1;41536:5;41532:13;41525:20;;41318:233;;;:::o;41557:176::-;41589:1;41606:20;41624:1;41606:20;:::i;:::-;41601:25;;41640:20;41658:1;41640:20;:::i;:::-;41635:25;;41679:1;41669:35;;41684:18;;:::i;:::-;41669:35;41725:1;41722;41718:9;41713:14;;41557:176;;;;:::o;41739:180::-;41787:77;41784:1;41777:88;41884:4;41881:1;41874:15;41908:4;41905:1;41898:15;41925:180;41973:77;41970:1;41963:88;42070:4;42067:1;42060:15;42094:4;42091:1;42084:15;42111:180;42159:77;42156:1;42149:88;42256:4;42253:1;42246:15;42280:4;42277:1;42270:15;42297:180;42345:77;42342:1;42335:88;42442:4;42439:1;42432:15;42466:4;42463:1;42456:15;42483:180;42531:77;42528:1;42521:88;42628:4;42625:1;42618:15;42652:4;42649:1;42642:15;42669:180;42717:77;42714:1;42707:88;42814:4;42811:1;42804:15;42838:4;42835:1;42828:15;42855:117;42964:1;42961;42954:12;42978:117;43087:1;43084;43077:12;43101:117;43210:1;43207;43200:12;43224:117;43333:1;43330;43323:12;43347:117;43456:1;43453;43446:12;43470:117;43579:1;43576;43569:12;43593:102;43634:6;43685:2;43681:7;43676:2;43669:5;43665:14;43661:28;43651:38;;43593:102;;;:::o;43701:230::-;43841:34;43837:1;43829:6;43825:14;43818:58;43910:13;43905:2;43897:6;43893:15;43886:38;43701:230;:::o;43937:237::-;44077:34;44073:1;44065:6;44061:14;44054:58;44146:20;44141:2;44133:6;44129:15;44122:45;43937:237;:::o;44180:225::-;44320:34;44316:1;44308:6;44304:14;44297:58;44389:8;44384:2;44376:6;44372:15;44365:33;44180:225;:::o;44411:178::-;44551:30;44547:1;44539:6;44535:14;44528:54;44411:178;:::o;44595:::-;44735:30;44731:1;44723:6;44719:14;44712:54;44595:178;:::o;44779:221::-;44919:34;44915:1;44907:6;44903:14;44896:58;44988:4;44983:2;44975:6;44971:15;44964:29;44779:221;:::o;45006:223::-;45146:34;45142:1;45134:6;45130:14;45123:58;45215:6;45210:2;45202:6;45198:15;45191:31;45006:223;:::o;45235:175::-;45375:27;45371:1;45363:6;45359:14;45352:51;45235:175;:::o;45416:231::-;45556:34;45552:1;45544:6;45540:14;45533:58;45625:14;45620:2;45612:6;45608:15;45601:39;45416:231;:::o;45653:243::-;45793:34;45789:1;45781:6;45777:14;45770:58;45862:26;45857:2;45849:6;45845:15;45838:51;45653:243;:::o;45902:229::-;46042:34;46038:1;46030:6;46026:14;46019:58;46111:12;46106:2;46098:6;46094:15;46087:37;45902:229;:::o;46137:228::-;46277:34;46273:1;46265:6;46261:14;46254:58;46346:11;46341:2;46333:6;46329:15;46322:36;46137:228;:::o;46371:172::-;46511:24;46507:1;46499:6;46495:14;46488:48;46371:172;:::o;46549:223::-;46689:34;46685:1;46677:6;46673:14;46666:58;46758:6;46753:2;46745:6;46741:15;46734:31;46549:223;:::o;46778:182::-;46918:34;46914:1;46906:6;46902:14;46895:58;46778:182;:::o;46966:231::-;47106:34;47102:1;47094:6;47090:14;47083:58;47175:14;47170:2;47162:6;47158:15;47151:39;46966:231;:::o;47203:182::-;47343:34;47339:1;47331:6;47327:14;47320:58;47203:182;:::o;47391:172::-;47531:24;47527:1;47519:6;47515:14;47508:48;47391:172;:::o;47569:228::-;47709:34;47705:1;47697:6;47693:14;47686:58;47778:11;47773:2;47765:6;47761:15;47754:36;47569:228;:::o;47803:234::-;47943:34;47939:1;47931:6;47927:14;47920:58;48012:17;48007:2;47999:6;47995:15;47988:42;47803:234;:::o;48043:220::-;48183:34;48179:1;48171:6;48167:14;48160:58;48252:3;48247:2;48239:6;48235:15;48228:28;48043:220;:::o;48269:114::-;;:::o;48389:168::-;48529:20;48525:1;48517:6;48513:14;48506:44;48389:168;:::o;48563:236::-;48703:34;48699:1;48691:6;48687:14;48680:58;48772:19;48767:2;48759:6;48755:15;48748:44;48563:236;:::o;48805:231::-;48945:34;48941:1;48933:6;48929:14;48922:58;49014:14;49009:2;49001:6;48997:15;48990:39;48805:231;:::o;49042:173::-;49182:25;49178:1;49170:6;49166:14;49159:49;49042:173;:::o;49221:177::-;49361:29;49357:1;49349:6;49345:14;49338:53;49221:177;:::o;49404:122::-;49477:24;49495:5;49477:24;:::i;:::-;49470:5;49467:35;49457:63;;49516:1;49513;49506:12;49457:63;49404:122;:::o;49532:116::-;49602:21;49617:5;49602:21;:::i;:::-;49595:5;49592:32;49582:60;;49638:1;49635;49628:12;49582:60;49532:116;:::o;49654:120::-;49726:23;49743:5;49726:23;:::i;:::-;49719:5;49716:34;49706:62;;49764:1;49761;49754:12;49706:62;49654:120;:::o;49780:122::-;49853:24;49871:5;49853:24;:::i;:::-;49846:5;49843:35;49833:63;;49892:1;49889;49882:12;49833:63;49780:122;:::o

Swarm Source

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