ETH Price: $3,396.37 (-1.16%)
Gas: 1 Gwei

Token

Abnormal Abstract (AA)
 

Overview

Max Total Supply

234 AA

Holders

80

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
yourlocalroadman.eth
Balance
2 AA
0xab4ce2a08cbea809692218dd7841f681b80069a9
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:
Abstract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/**
 *Submitted for verification at Etherscan.io on 2022-04-13
*/

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File @openzeppelin/contracts/access/[email protected]

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

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

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

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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

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

// File @openzeppelin/contracts/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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

// File @openzeppelin/contracts/token/ERC721/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

/**
 * @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/[email protected]

// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

/**
 * @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/token/ERC721/extensions/[email protected]

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

/**
 * @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/extensions/[email protected]

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

/**
 * @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/utils/[email protected]

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

/**
 * @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/utils/introspection/[email protected]

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

/**
 * @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 contracts/ERC721A.sol

// Creator: Chiru Labs

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex = 0;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

        uint256 updatedIndex = startTokenId;

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

        currentIndex = updatedIndex;
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

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

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

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

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

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

contract Abstract is ERC721A, Ownable {
    string public constant baseExtension = ".json";
    address public constant proxyRegistryAddress =
        0xa5409ec958C83C3f309868babACA7c86DCB077c1;

    string baseURI;
    string public notRevealedUri;
    uint256 public price = 0.002 ether;
    uint256 public MAX_SUPPLY = 234;
    uint256 public FREE_MAX_SUPPLY = 0;
    uint256 public MAX_PER_TX = 2;

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

    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721A("Abnormal Abstract", "AA") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
    }

    function mint(uint256 _amount) public payable {
        require(!paused, "Paused");
        require(MAX_SUPPLY >= totalSupply() + _amount, "Exceeds max supply");
        require(_amount > 0, "No 0 mints");

        if (FREE_MAX_SUPPLY >= totalSupply() + _amount) {
            require(MAX_PER_TX >= _amount, "Exceeds max per transaction");
        } else {
            require(MAX_PER_TX >= _amount, "Exceeds max per transaction");
            require(msg.value >= _amount * price, "Invalid funds provided");
        }

        _safeMint(msg.sender, _amount);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

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

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

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

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        MAX_SUPPLY = _newMaxSupply;
    }

    function setFreeMaxSupply(uint256 _newFreeMaxSupply) public onlyOwner {
        FREE_MAX_SUPPLY = _newFreeMaxSupply;
    }

    function setMaxPerTx(uint256 _newMaxPerTx) public onlyOwner {
        MAX_PER_TX = _newMaxPerTx;
    }

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

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

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token does not exist.");

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

        return
            bytes(baseURI).length > 0
                ? string(
                    abi.encodePacked(
                        baseURI,
                        Strings.toString(_tokenId),
                        baseExtension
                    )
                )
                : "";
    }
}

contract OwnableDelegateProxy {}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

Contract Security Audit

Contract ABI

[{"inputs":[{"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":[],"name":"FREE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","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":[{"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":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFreeMaxSupply","type":"uint256"}],"name":"setFreeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPerTx","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000805566071afd498d0000600a5560ea600b556000600c556002600d556001600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200006557600080fd5b50604051620051d4380380620051d483398181016040528101906200008b9190620004f1565b6040518060400160405280601181526020017f41626e6f726d616c2041627374726163740000000000000000000000000000008152506040518060400160405280600281526020017f414100000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200010f929190620003c3565b50806002908051906020019062000128929190620003c3565b5050506200014b6200013f6200017560201b60201c565b6200017d60201b60201c565b6200015c826200024360201b60201c565b6200016d81620002ee60201b60201c565b50506200077d565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002536200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002796200039960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002d2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c9906200059d565b60405180910390fd5b8060089080519060200190620002ea929190620003c3565b5050565b620002fe6200017560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003246200039960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200037d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000374906200059d565b60405180910390fd5b806009908051906020019062000395929190620003c3565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003d19062000665565b90600052602060002090601f016020900481019282620003f5576000855562000441565b82601f106200041057805160ff191683800117855562000441565b8280016001018555821562000441579182015b828111156200044057825182559160200191906001019062000423565b5b50905062000450919062000454565b5090565b5b808211156200046f57600081600090555060010162000455565b5090565b60006200048a6200048484620005e8565b620005bf565b905082815260208101848484011115620004a957620004a862000734565b5b620004b68482856200062f565b509392505050565b600082601f830112620004d657620004d56200072f565b5b8151620004e884826020860162000473565b91505092915050565b600080604083850312156200050b576200050a6200073e565b5b600083015167ffffffffffffffff8111156200052c576200052b62000739565b5b6200053a85828601620004be565b925050602083015167ffffffffffffffff8111156200055e576200055d62000739565b5b6200056c85828601620004be565b9150509250929050565b6000620005856020836200061e565b9150620005928262000754565b602082019050919050565b60006020820190508181036000830152620005b88162000576565b9050919050565b6000620005cb620005de565b9050620005d982826200069b565b919050565b6000604051905090565b600067ffffffffffffffff82111562000606576200060562000700565b5b620006118262000743565b9050602081019050919050565b600082825260208201905092915050565b60005b838110156200064f57808201518184015260208101905062000632565b838111156200065f576000848401525b50505050565b600060028204905060018216806200067e57607f821691505b60208210811415620006955762000694620006d1565b5b50919050565b620006a68262000743565b810181811067ffffffffffffffff82111715620006c857620006c762000700565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614a47806200078d6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063d223a6311161006f578063d223a631146107e6578063e985e9c51461080f578063f2c4ce1e1461084c578063f2fde38b14610875578063f43a22dc1461089e57610225565b8063b88d4fde14610701578063c66828621461072a578063c6f6f21614610755578063c87b56dd1461077e578063cd7c0326146107bb57610225565b8063940cd05b116100f2578063940cd05b1461063d57806395d89b4114610666578063a035b1fe14610691578063a0712d68146106bc578063a22cb465146106d857610225565b8063715018a6146105a75780638069876d146105be5780638da5cb5b146105e957806391b7f5ed1461061457610225565b806332cb6b0c116101b157806355f804b31161017557806355f804b3146104b05780635c975abb146104d95780636352211e146105045780636f8b44b01461054157806370a082311461056a57610225565b806332cb6b0c146103dd5780633ccfd60b1461040857806342842e0e1461041f5780634f6ccce714610448578063518302271461048557610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061348d565b6108c9565b60405161025e9190613af1565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613460565b610a13565b005b34801561029c57600080fd5b506102a5610aac565b6040516102b29190613b0c565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061355d565b610b3e565b6040516102ef9190613a8a565b60405180910390f35b34801561030457600080fd5b5061030d610bc3565b60405161031a9190613b0c565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613420565b610c51565b005b34801561035857600080fd5b50610361610d6a565b60405161036e9190613e2e565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061330a565b610d73565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613420565b610d83565b6040516103d49190613e2e565b60405180910390f35b3480156103e957600080fd5b506103f2610f81565b6040516103ff9190613e2e565b60405180910390f35b34801561041457600080fd5b5061041d610f87565b005b34801561042b57600080fd5b506104466004803603810190610441919061330a565b61107c565b005b34801561045457600080fd5b5061046f600480360381019061046a919061355d565b61109c565b60405161047c9190613e2e565b60405180910390f35b34801561049157600080fd5b5061049a6110ef565b6040516104a79190613af1565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613514565b611102565b005b3480156104e557600080fd5b506104ee611198565b6040516104fb9190613af1565b60405180910390f35b34801561051057600080fd5b5061052b6004803603810190610526919061355d565b6111ab565b6040516105389190613a8a565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061355d565b6111c1565b005b34801561057657600080fd5b50610591600480360381019061058c919061329d565b611247565b60405161059e9190613e2e565b60405180910390f35b3480156105b357600080fd5b506105bc611330565b005b3480156105ca57600080fd5b506105d36113b8565b6040516105e09190613e2e565b60405180910390f35b3480156105f557600080fd5b506105fe6113be565b60405161060b9190613a8a565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061355d565b6113e8565b005b34801561064957600080fd5b50610664600480360381019061065f9190613460565b61146e565b005b34801561067257600080fd5b5061067b611507565b6040516106889190613b0c565b60405180910390f35b34801561069d57600080fd5b506106a6611599565b6040516106b39190613e2e565b60405180910390f35b6106d660048036038101906106d1919061355d565b61159f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906133e0565b611791565b005b34801561070d57600080fd5b506107286004803603810190610723919061335d565b611912565b005b34801561073657600080fd5b5061073f61196e565b60405161074c9190613b0c565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061355d565b6119a7565b005b34801561078a57600080fd5b506107a560048036038101906107a0919061355d565b611a2d565b6040516107b29190613b0c565b60405180910390f35b3480156107c757600080fd5b506107d0611bbb565b6040516107dd9190613a8a565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061355d565b611bd3565b005b34801561081b57600080fd5b50610836600480360381019061083191906132ca565b611c59565b6040516108439190613af1565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613514565b611d4d565b005b34801561088157600080fd5b5061089c6004803603810190610897919061329d565b611de3565b005b3480156108aa57600080fd5b506108b3611edb565b6040516108c09190613e2e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b82611ee1565b5b9050919050565b610a1b611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610a396113be565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613cae565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610abb9061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae79061419c565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982611f53565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613e0e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610bd09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc9061419c565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b505050505081565b6000610c5c826111ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cec611f4b565b73ffffffffffffffffffffffffffffffffffffffff161480610d1b5750610d1a81610d15611f4b565b611c59565b5b610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613c0e565b60405180910390fd5b610d65838383611f60565b505050565b60008054905090565b610d7e838383612012565b505050565b6000610d8e83611247565b8210610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690613b2e565b60405180910390fd5b6000610dd9610d6a565b905060008060005b83811015610f3f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ed357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2b5786841415610f1c578195505050505050610f7b565b8380610f27906141ff565b9450505b508080610f37906141ff565b915050610de1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613dee565b60405180910390fd5b92915050565b600b5481565b610f8f611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610fad6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613cae565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161102990613a75565b60006040518083038185875af1925050503d8060008114611066576040519150601f19603f3d011682016040523d82523d6000602084013e61106b565b606091505b505090508061107957600080fd5b50565b61109783838360405180602001604052806000815250611912565b505050565b60006110a6610d6a565b82106110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613bce565b60405180910390fd5b819050919050565b600e60019054906101000a900460ff1681565b61110a611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111286113be565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613cae565b60405180910390fd5b8060089080519060200190611194929190613062565b5050565b600e60009054906101000a900460ff1681565b60006111b6826125b9565b600001519050919050565b6111c9611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111e76113be565b73ffffffffffffffffffffffffffffffffffffffff161461123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613cae565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613c4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611338611f4b565b73ffffffffffffffffffffffffffffffffffffffff166113566113be565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613cae565b60405180910390fd5b6113b66000612714565b565b600c5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113f0611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661140e6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613cae565b60405180910390fd5b80600a8190555050565b611476611f4b565b73ffffffffffffffffffffffffffffffffffffffff166114946113be565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613cae565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6060600280546115169061419c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061419c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff16156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690613b4e565b60405180910390fd5b806115f8610d6a565b6116029190613f79565b600b541015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613c2e565b60405180910390fd5b60008111611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613bae565b60405180910390fd5b80611692610d6a565b61169c9190613f79565b600c54106116ee5780600d5410156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613d4e565b60405180910390fd5b611784565b80600d541015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90613d4e565b60405180910390fd5b600a54816117419190614000565b341015611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90613d0e565b60405180910390fd5b5b61178e33826127da565b50565b611799611f4b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613cce565b60405180910390fd5b8060066000611814611f4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c1611f4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119069190613af1565b60405180910390a35050565b61191d848484612012565b611929848484846127f8565b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90613d8e565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6119af611f4b565b73ffffffffffffffffffffffffffffffffffffffff166119cd6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613cae565b60405180910390fd5b80600d8190555050565b6060611a3882611f53565b611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90613c6e565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611b255760098054611aa09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054611acc9061419c565b8015611b195780601f10611aee57610100808354040283529160200191611b19565b820191906000526020600020905b815481529060010190602001808311611afc57829003601f168201915b50505050509050611bb6565b600060088054611b349061419c565b905011611b505760405180602001604052806000815250611bb3565b6008611b5b8361298f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ba393929190613a44565b6040516020818303038152906040525b90505b919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611bdb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611bf96113be565b73ffffffffffffffffffffffffffffffffffffffff1614611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613cae565b60405180910390fd5b80600c8190555050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611cc39190613a8a565b60206040518083038186803b158015611cdb57600080fd5b505afa158015611cef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1391906134e7565b73ffffffffffffffffffffffffffffffffffffffff161415611d39576001915050611d47565b611d438484612af0565b9150505b92915050565b611d55611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611d736113be565b73ffffffffffffffffffffffffffffffffffffffff1614611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613cae565b60405180910390fd5b8060099080519060200190611ddf929190613062565b5050565b611deb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611e096113be565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690613cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613b6e565b60405180910390fd5b611ed881612714565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061201d826125b9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612044611f4b565b73ffffffffffffffffffffffffffffffffffffffff1614806120a05750612069611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661208884610b3e565b73ffffffffffffffffffffffffffffffffffffffff16145b806120bc57506120bb82600001516120b6611f4b565b611c59565b5b9050806120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590613cee565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790613bee565b60405180910390fd5b6121ed8585856001612b84565b6121fd6000848460000151611f60565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124039190613f79565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125495761247981611f53565b15612548576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b18686866001612b8a565b505050505050565b6125c16130e8565b6125ca82611f53565b612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090613b8e565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126fb57809250505061270f565b50808061270790614172565b91505061260f565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f4828260405180602001604052806000815250612b90565b5050565b60006128198473ffffffffffffffffffffffffffffffffffffffff1661304f565b15612982578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612842611f4b565b8786866040518563ffffffff1660e01b81526004016128649493929190613aa5565b602060405180830381600087803b15801561287e57600080fd5b505af19250505080156128af57506040513d601f19601f820116820180604052508101906128ac91906134ba565b60015b612932573d80600081146128df576040519150601f19603f3d011682016040523d82523d6000602084013e6128e4565b606091505b5060008151141561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190613d8e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612987565b600190505b949350505050565b606060008214156129d7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aeb565b600082905060005b60008214612a095780806129f2906141ff565b915050600a82612a029190613fcf565b91506129df565b60008167ffffffffffffffff811115612a2557612a24614335565b5b6040519080825280601f01601f191660200182016040528015612a575781602001600182028036833780820191505090505b5090505b60008514612ae457600182612a70919061405a565b9150600a85612a7f9190614248565b6030612a8b9190613f79565b60f81b818381518110612aa157612aa0614306565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612add9190613fcf565b9450612a5b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613dce565b60405180910390fd5b612c0f81611f53565b15612c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4690613dae565b60405180910390fd5b60008311612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990613d6e565b60405180910390fd5b612c9f6000858386612b84565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d9c9190613f33565b6fffffffffffffffffffffffffffffffff168152602001858360200151612dc39190613f33565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561303257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd260008884886127f8565b613011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300890613d8e565b60405180910390fd5b818061301c906141ff565b925050808061302a906141ff565b915050612f61565b50806000819055506130476000878588612b8a565b505050505050565b600080823b905060008111915050919050565b82805461306e9061419c565b90600052602060002090601f01602090048101928261309057600085556130d7565b82601f106130a957805160ff19168380011785556130d7565b828001600101855582156130d7579182015b828111156130d65782518255916020019190600101906130bb565b5b5090506130e49190613122565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561313b576000816000905550600101613123565b5090565b600061315261314d84613e6e565b613e49565b90508281526020810184848401111561316e5761316d614369565b5b613179848285614130565b509392505050565b600061319461318f84613e9f565b613e49565b9050828152602081018484840111156131b0576131af614369565b5b6131bb848285614130565b509392505050565b6000813590506131d28161499e565b92915050565b6000813590506131e7816149b5565b92915050565b6000813590506131fc816149cc565b92915050565b600081519050613211816149cc565b92915050565b600082601f83011261322c5761322b614364565b5b813561323c84826020860161313f565b91505092915050565b600081519050613254816149e3565b92915050565b600082601f83011261326f5761326e614364565b5b813561327f848260208601613181565b91505092915050565b600081359050613297816149fa565b92915050565b6000602082840312156132b3576132b2614373565b5b60006132c1848285016131c3565b91505092915050565b600080604083850312156132e1576132e0614373565b5b60006132ef858286016131c3565b9250506020613300858286016131c3565b9150509250929050565b60008060006060848603121561332357613322614373565b5b6000613331868287016131c3565b9350506020613342868287016131c3565b925050604061335386828701613288565b9150509250925092565b6000806000806080858703121561337757613376614373565b5b6000613385878288016131c3565b9450506020613396878288016131c3565b93505060406133a787828801613288565b925050606085013567ffffffffffffffff8111156133c8576133c761436e565b5b6133d487828801613217565b91505092959194509250565b600080604083850312156133f7576133f6614373565b5b6000613405858286016131c3565b9250506020613416858286016131d8565b9150509250929050565b6000806040838503121561343757613436614373565b5b6000613445858286016131c3565b925050602061345685828601613288565b9150509250929050565b60006020828403121561347657613475614373565b5b6000613484848285016131d8565b91505092915050565b6000602082840312156134a3576134a2614373565b5b60006134b1848285016131ed565b91505092915050565b6000602082840312156134d0576134cf614373565b5b60006134de84828501613202565b91505092915050565b6000602082840312156134fd576134fc614373565b5b600061350b84828501613245565b91505092915050565b60006020828403121561352a57613529614373565b5b600082013567ffffffffffffffff8111156135485761354761436e565b5b6135548482850161325a565b91505092915050565b60006020828403121561357357613572614373565b5b600061358184828501613288565b91505092915050565b6135938161408e565b82525050565b6135a2816140a0565b82525050565b60006135b382613ee5565b6135bd8185613efb565b93506135cd81856020860161413f565b6135d681614378565b840191505092915050565b60006135ec82613ef0565b6135f68185613f17565b935061360681856020860161413f565b61360f81614378565b840191505092915050565b600061362582613ef0565b61362f8185613f28565b935061363f81856020860161413f565b80840191505092915050565b600081546136588161419c565b6136628186613f28565b9450600182166000811461367d576001811461368e576136c1565b60ff198316865281860193506136c1565b61369785613ed0565b60005b838110156136b95781548189015260018201915060208101905061369a565b838801955050505b50505092915050565b60006136d7602283613f17565b91506136e282614389565b604082019050919050565b60006136fa600683613f17565b9150613705826143d8565b602082019050919050565b600061371d602683613f17565b915061372882614401565b604082019050919050565b6000613740602a83613f17565b915061374b82614450565b604082019050919050565b6000613763600a83613f17565b915061376e8261449f565b602082019050919050565b6000613786602383613f17565b9150613791826144c8565b604082019050919050565b60006137a9602583613f17565b91506137b482614517565b604082019050919050565b60006137cc603983613f17565b91506137d782614566565b604082019050919050565b60006137ef601283613f17565b91506137fa826145b5565b602082019050919050565b6000613812602b83613f17565b915061381d826145de565b604082019050919050565b6000613835601583613f17565b91506138408261462d565b602082019050919050565b6000613858602683613f17565b915061386382614656565b604082019050919050565b600061387b602083613f17565b9150613886826146a5565b602082019050919050565b600061389e601a83613f17565b91506138a9826146ce565b602082019050919050565b60006138c1603283613f17565b91506138cc826146f7565b604082019050919050565b60006138e4601683613f17565b91506138ef82614746565b602082019050919050565b6000613907602283613f17565b91506139128261476f565b604082019050919050565b600061392a601b83613f17565b9150613935826147be565b602082019050919050565b600061394d600083613f0c565b9150613958826147e7565b600082019050919050565b6000613970602383613f17565b915061397b826147ea565b604082019050919050565b6000613993603383613f17565b915061399e82614839565b604082019050919050565b60006139b6601d83613f17565b91506139c182614888565b602082019050919050565b60006139d9602183613f17565b91506139e4826148b1565b604082019050919050565b60006139fc602e83613f17565b9150613a0782614900565b604082019050919050565b6000613a1f602d83613f17565b9150613a2a8261494f565b604082019050919050565b613a3e81614126565b82525050565b6000613a50828661364b565b9150613a5c828561361a565b9150613a68828461361a565b9150819050949350505050565b6000613a8082613940565b9150819050919050565b6000602082019050613a9f600083018461358a565b92915050565b6000608082019050613aba600083018761358a565b613ac7602083018661358a565b613ad46040830185613a35565b8181036060830152613ae681846135a8565b905095945050505050565b6000602082019050613b066000830184613599565b92915050565b60006020820190508181036000830152613b2681846135e1565b905092915050565b60006020820190508181036000830152613b47816136ca565b9050919050565b60006020820190508181036000830152613b67816136ed565b9050919050565b60006020820190508181036000830152613b8781613710565b9050919050565b60006020820190508181036000830152613ba781613733565b9050919050565b60006020820190508181036000830152613bc781613756565b9050919050565b60006020820190508181036000830152613be781613779565b9050919050565b60006020820190508181036000830152613c078161379c565b9050919050565b60006020820190508181036000830152613c27816137bf565b9050919050565b60006020820190508181036000830152613c47816137e2565b9050919050565b60006020820190508181036000830152613c6781613805565b9050919050565b60006020820190508181036000830152613c8781613828565b9050919050565b60006020820190508181036000830152613ca78161384b565b9050919050565b60006020820190508181036000830152613cc78161386e565b9050919050565b60006020820190508181036000830152613ce781613891565b9050919050565b60006020820190508181036000830152613d07816138b4565b9050919050565b60006020820190508181036000830152613d27816138d7565b9050919050565b60006020820190508181036000830152613d47816138fa565b9050919050565b60006020820190508181036000830152613d678161391d565b9050919050565b60006020820190508181036000830152613d8781613963565b9050919050565b60006020820190508181036000830152613da781613986565b9050919050565b60006020820190508181036000830152613dc7816139a9565b9050919050565b60006020820190508181036000830152613de7816139cc565b9050919050565b60006020820190508181036000830152613e07816139ef565b9050919050565b60006020820190508181036000830152613e2781613a12565b9050919050565b6000602082019050613e436000830184613a35565b92915050565b6000613e53613e64565b9050613e5f82826141ce565b919050565b6000604051905090565b600067ffffffffffffffff821115613e8957613e88614335565b5b613e9282614378565b9050602081019050919050565b600067ffffffffffffffff821115613eba57613eb9614335565b5b613ec382614378565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3e826140ea565b9150613f49836140ea565b9250826fffffffffffffffffffffffffffffffff03821115613f6e57613f6d614279565b5b828201905092915050565b6000613f8482614126565b9150613f8f83614126565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc457613fc3614279565b5b828201905092915050565b6000613fda82614126565b9150613fe583614126565b925082613ff557613ff46142a8565b5b828204905092915050565b600061400b82614126565b915061401683614126565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561404f5761404e614279565b5b828202905092915050565b600061406582614126565b915061407083614126565b92508282101561408357614082614279565b5b828203905092915050565b600061409982614106565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140e38261408e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415d578082015181840152602081019050614142565b8381111561416c576000848401525b50505050565b600061417d82614126565b9150600082141561419157614190614279565b5b600182039050919050565b600060028204905060018216806141b457607f821691505b602082108114156141c8576141c76142d7565b5b50919050565b6141d782614378565b810181811067ffffffffffffffff821117156141f6576141f5614335565b5b80604052505050565b600061420a82614126565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423d5761423c614279565b5b600182019050919050565b600061425382614126565b915061425e83614126565b92508261426e5761426d6142a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6149a78161408e565b81146149b257600080fd5b50565b6149be816140a0565b81146149c957600080fd5b50565b6149d5816140ac565b81146149e057600080fd5b50565b6149ec816140d8565b81146149f757600080fd5b50565b614a0381614126565b8114614a0e57600080fd5b5056fea2646970667358221220643c79258215acac042448699e95b181f4f56587c0095b86d16ad1ad3c70bdf964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261667962656961616f726e6667376a666a666969336a6c37747a666f6e7a3678626e706d713475366d683375793371326d74773664717878626900000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063d223a6311161006f578063d223a631146107e6578063e985e9c51461080f578063f2c4ce1e1461084c578063f2fde38b14610875578063f43a22dc1461089e57610225565b8063b88d4fde14610701578063c66828621461072a578063c6f6f21614610755578063c87b56dd1461077e578063cd7c0326146107bb57610225565b8063940cd05b116100f2578063940cd05b1461063d57806395d89b4114610666578063a035b1fe14610691578063a0712d68146106bc578063a22cb465146106d857610225565b8063715018a6146105a75780638069876d146105be5780638da5cb5b146105e957806391b7f5ed1461061457610225565b806332cb6b0c116101b157806355f804b31161017557806355f804b3146104b05780635c975abb146104d95780636352211e146105045780636f8b44b01461054157806370a082311461056a57610225565b806332cb6b0c146103dd5780633ccfd60b1461040857806342842e0e1461041f5780634f6ccce714610448578063518302271461048557610225565b8063081c8c44116101f8578063081c8c44146102f8578063095ea7b31461032357806318160ddd1461034c57806323b872dd146103775780632f745c59146103a057610225565b806301ffc9a71461022a57806302329a291461026757806306fdde0314610290578063081812fc146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c919061348d565b6108c9565b60405161025e9190613af1565b60405180910390f35b34801561027357600080fd5b5061028e60048036038101906102899190613460565b610a13565b005b34801561029c57600080fd5b506102a5610aac565b6040516102b29190613b0c565b60405180910390f35b3480156102c757600080fd5b506102e260048036038101906102dd919061355d565b610b3e565b6040516102ef9190613a8a565b60405180910390f35b34801561030457600080fd5b5061030d610bc3565b60405161031a9190613b0c565b60405180910390f35b34801561032f57600080fd5b5061034a60048036038101906103459190613420565b610c51565b005b34801561035857600080fd5b50610361610d6a565b60405161036e9190613e2e565b60405180910390f35b34801561038357600080fd5b5061039e6004803603810190610399919061330a565b610d73565b005b3480156103ac57600080fd5b506103c760048036038101906103c29190613420565b610d83565b6040516103d49190613e2e565b60405180910390f35b3480156103e957600080fd5b506103f2610f81565b6040516103ff9190613e2e565b60405180910390f35b34801561041457600080fd5b5061041d610f87565b005b34801561042b57600080fd5b506104466004803603810190610441919061330a565b61107c565b005b34801561045457600080fd5b5061046f600480360381019061046a919061355d565b61109c565b60405161047c9190613e2e565b60405180910390f35b34801561049157600080fd5b5061049a6110ef565b6040516104a79190613af1565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613514565b611102565b005b3480156104e557600080fd5b506104ee611198565b6040516104fb9190613af1565b60405180910390f35b34801561051057600080fd5b5061052b6004803603810190610526919061355d565b6111ab565b6040516105389190613a8a565b60405180910390f35b34801561054d57600080fd5b506105686004803603810190610563919061355d565b6111c1565b005b34801561057657600080fd5b50610591600480360381019061058c919061329d565b611247565b60405161059e9190613e2e565b60405180910390f35b3480156105b357600080fd5b506105bc611330565b005b3480156105ca57600080fd5b506105d36113b8565b6040516105e09190613e2e565b60405180910390f35b3480156105f557600080fd5b506105fe6113be565b60405161060b9190613a8a565b60405180910390f35b34801561062057600080fd5b5061063b6004803603810190610636919061355d565b6113e8565b005b34801561064957600080fd5b50610664600480360381019061065f9190613460565b61146e565b005b34801561067257600080fd5b5061067b611507565b6040516106889190613b0c565b60405180910390f35b34801561069d57600080fd5b506106a6611599565b6040516106b39190613e2e565b60405180910390f35b6106d660048036038101906106d1919061355d565b61159f565b005b3480156106e457600080fd5b506106ff60048036038101906106fa91906133e0565b611791565b005b34801561070d57600080fd5b506107286004803603810190610723919061335d565b611912565b005b34801561073657600080fd5b5061073f61196e565b60405161074c9190613b0c565b60405180910390f35b34801561076157600080fd5b5061077c6004803603810190610777919061355d565b6119a7565b005b34801561078a57600080fd5b506107a560048036038101906107a0919061355d565b611a2d565b6040516107b29190613b0c565b60405180910390f35b3480156107c757600080fd5b506107d0611bbb565b6040516107dd9190613a8a565b60405180910390f35b3480156107f257600080fd5b5061080d6004803603810190610808919061355d565b611bd3565b005b34801561081b57600080fd5b50610836600480360381019061083191906132ca565b611c59565b6040516108439190613af1565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190613514565b611d4d565b005b34801561088157600080fd5b5061089c6004803603810190610897919061329d565b611de3565b005b3480156108aa57600080fd5b506108b3611edb565b6040516108c09190613e2e565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fc57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0c5750610a0b82611ee1565b5b9050919050565b610a1b611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610a396113be565b73ffffffffffffffffffffffffffffffffffffffff1614610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690613cae565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b606060018054610abb9061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae79061419c565b8015610b345780601f10610b0957610100808354040283529160200191610b34565b820191906000526020600020905b815481529060010190602001808311610b1757829003601f168201915b5050505050905090565b6000610b4982611f53565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7f90613e0e565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60098054610bd09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfc9061419c565b8015610c495780601f10610c1e57610100808354040283529160200191610c49565b820191906000526020600020905b815481529060010190602001808311610c2c57829003601f168201915b505050505081565b6000610c5c826111ab565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc490613d2e565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cec611f4b565b73ffffffffffffffffffffffffffffffffffffffff161480610d1b5750610d1a81610d15611f4b565b611c59565b5b610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5190613c0e565b60405180910390fd5b610d65838383611f60565b505050565b60008054905090565b610d7e838383612012565b505050565b6000610d8e83611247565b8210610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc690613b2e565b60405180910390fd5b6000610dd9610d6a565b905060008060005b83811015610f3f576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610ed357806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f2b5786841415610f1c578195505050505050610f7b565b8380610f27906141ff565b9450505b508080610f37906141ff565b915050610de1565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290613dee565b60405180910390fd5b92915050565b600b5481565b610f8f611f4b565b73ffffffffffffffffffffffffffffffffffffffff16610fad6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613cae565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff164760405161102990613a75565b60006040518083038185875af1925050503d8060008114611066576040519150601f19603f3d011682016040523d82523d6000602084013e61106b565b606091505b505090508061107957600080fd5b50565b61109783838360405180602001604052806000815250611912565b505050565b60006110a6610d6a565b82106110e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110de90613bce565b60405180910390fd5b819050919050565b600e60019054906101000a900460ff1681565b61110a611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111286113be565b73ffffffffffffffffffffffffffffffffffffffff161461117e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117590613cae565b60405180910390fd5b8060089080519060200190611194929190613062565b5050565b600e60009054906101000a900460ff1681565b60006111b6826125b9565b600001519050919050565b6111c9611f4b565b73ffffffffffffffffffffffffffffffffffffffff166111e76113be565b73ffffffffffffffffffffffffffffffffffffffff161461123d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123490613cae565b60405180910390fd5b80600b8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90613c4e565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611338611f4b565b73ffffffffffffffffffffffffffffffffffffffff166113566113be565b73ffffffffffffffffffffffffffffffffffffffff16146113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390613cae565b60405180910390fd5b6113b66000612714565b565b600c5481565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6113f0611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661140e6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611464576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145b90613cae565b60405180910390fd5b80600a8190555050565b611476611f4b565b73ffffffffffffffffffffffffffffffffffffffff166114946113be565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e190613cae565b60405180910390fd5b80600e60016101000a81548160ff02191690831515021790555050565b6060600280546115169061419c565b80601f01602080910402602001604051908101604052809291908181526020018280546115429061419c565b801561158f5780601f106115645761010080835404028352916020019161158f565b820191906000526020600020905b81548152906001019060200180831161157257829003601f168201915b5050505050905090565b600a5481565b600e60009054906101000a900460ff16156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e690613b4e565b60405180910390fd5b806115f8610d6a565b6116029190613f79565b600b541015611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d90613c2e565b60405180910390fd5b60008111611689576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168090613bae565b60405180910390fd5b80611692610d6a565b61169c9190613f79565b600c54106116ee5780600d5410156116e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e090613d4e565b60405180910390fd5b611784565b80600d541015611733576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172a90613d4e565b60405180910390fd5b600a54816117419190614000565b341015611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a90613d0e565b60405180910390fd5b5b61178e33826127da565b50565b611799611f4b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe90613cce565b60405180910390fd5b8060066000611814611f4b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166118c1611f4b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119069190613af1565b60405180910390a35050565b61191d848484612012565b611929848484846127f8565b611968576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195f90613d8e565b60405180910390fd5b50505050565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b6119af611f4b565b73ffffffffffffffffffffffffffffffffffffffff166119cd6113be565b73ffffffffffffffffffffffffffffffffffffffff1614611a23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1a90613cae565b60405180910390fd5b80600d8190555050565b6060611a3882611f53565b611a77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6e90613c6e565b60405180910390fd5b60001515600e60019054906101000a900460ff1615151415611b255760098054611aa09061419c565b80601f0160208091040260200160405190810160405280929190818152602001828054611acc9061419c565b8015611b195780601f10611aee57610100808354040283529160200191611b19565b820191906000526020600020905b815481529060010190602001808311611afc57829003601f168201915b50505050509050611bb6565b600060088054611b349061419c565b905011611b505760405180602001604052806000815250611bb3565b6008611b5b8361298f565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250604051602001611ba393929190613a44565b6040516020818303038152906040525b90505b919050565b73a5409ec958c83c3f309868babaca7c86dcb077c181565b611bdb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611bf96113be565b73ffffffffffffffffffffffffffffffffffffffff1614611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4690613cae565b60405180910390fd5b80600c8190555050565b60008073a5409ec958c83c3f309868babaca7c86dcb077c190508273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1663c4552791866040518263ffffffff1660e01b8152600401611cc39190613a8a565b60206040518083038186803b158015611cdb57600080fd5b505afa158015611cef573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1391906134e7565b73ffffffffffffffffffffffffffffffffffffffff161415611d39576001915050611d47565b611d438484612af0565b9150505b92915050565b611d55611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611d736113be565b73ffffffffffffffffffffffffffffffffffffffff1614611dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc090613cae565b60405180910390fd5b8060099080519060200190611ddf929190613062565b5050565b611deb611f4b565b73ffffffffffffffffffffffffffffffffffffffff16611e096113be565b73ffffffffffffffffffffffffffffffffffffffff1614611e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5690613cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ecf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec690613b6e565b60405180910390fd5b611ed881612714565b50565b600d5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600061201d826125b9565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612044611f4b565b73ffffffffffffffffffffffffffffffffffffffff1614806120a05750612069611f4b565b73ffffffffffffffffffffffffffffffffffffffff1661208884610b3e565b73ffffffffffffffffffffffffffffffffffffffff16145b806120bc57506120bb82600001516120b6611f4b565b611c59565b5b9050806120fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f590613cee565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612170576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216790613c8e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156121e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d790613bee565b60405180910390fd5b6121ed8585856001612b84565b6121fd6000848460000151611f60565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846124039190613f79565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156125495761247981611f53565b15612548576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125b18686866001612b8a565b505050505050565b6125c16130e8565b6125ca82611f53565b612609576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260090613b8e565b60405180910390fd5b60008290505b6000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146126fb57809250505061270f565b50808061270790614172565b91505061260f565b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127f4828260405180602001604052806000815250612b90565b5050565b60006128198473ffffffffffffffffffffffffffffffffffffffff1661304f565b15612982578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612842611f4b565b8786866040518563ffffffff1660e01b81526004016128649493929190613aa5565b602060405180830381600087803b15801561287e57600080fd5b505af19250505080156128af57506040513d601f19601f820116820180604052508101906128ac91906134ba565b60015b612932573d80600081146128df576040519150601f19603f3d011682016040523d82523d6000602084013e6128e4565b606091505b5060008151141561292a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292190613d8e565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612987565b600190505b949350505050565b606060008214156129d7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612aeb565b600082905060005b60008214612a095780806129f2906141ff565b915050600a82612a029190613fcf565b91506129df565b60008167ffffffffffffffff811115612a2557612a24614335565b5b6040519080825280601f01601f191660200182016040528015612a575781602001600182028036833780820191505090505b5090505b60008514612ae457600182612a70919061405a565b9150600a85612a7f9190614248565b6030612a8b9190613f79565b60f81b818381518110612aa157612aa0614306565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612add9190613fcf565b9450612a5b565b8093505050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bfd90613dce565b60405180910390fd5b612c0f81611f53565b15612c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c4690613dae565b60405180910390fd5b60008311612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990613d6e565b60405180910390fd5b612c9f6000858386612b84565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151612d9c9190613f33565b6fffffffffffffffffffffffffffffffff168152602001858360200151612dc39190613f33565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561303257818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd260008884886127f8565b613011576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161300890613d8e565b60405180910390fd5b818061301c906141ff565b925050808061302a906141ff565b915050612f61565b50806000819055506130476000878588612b8a565b505050505050565b600080823b905060008111915050919050565b82805461306e9061419c565b90600052602060002090601f01602090048101928261309057600085556130d7565b82601f106130a957805160ff19168380011785556130d7565b828001600101855582156130d7579182015b828111156130d65782518255916020019190600101906130bb565b5b5090506130e49190613122565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561313b576000816000905550600101613123565b5090565b600061315261314d84613e6e565b613e49565b90508281526020810184848401111561316e5761316d614369565b5b613179848285614130565b509392505050565b600061319461318f84613e9f565b613e49565b9050828152602081018484840111156131b0576131af614369565b5b6131bb848285614130565b509392505050565b6000813590506131d28161499e565b92915050565b6000813590506131e7816149b5565b92915050565b6000813590506131fc816149cc565b92915050565b600081519050613211816149cc565b92915050565b600082601f83011261322c5761322b614364565b5b813561323c84826020860161313f565b91505092915050565b600081519050613254816149e3565b92915050565b600082601f83011261326f5761326e614364565b5b813561327f848260208601613181565b91505092915050565b600081359050613297816149fa565b92915050565b6000602082840312156132b3576132b2614373565b5b60006132c1848285016131c3565b91505092915050565b600080604083850312156132e1576132e0614373565b5b60006132ef858286016131c3565b9250506020613300858286016131c3565b9150509250929050565b60008060006060848603121561332357613322614373565b5b6000613331868287016131c3565b9350506020613342868287016131c3565b925050604061335386828701613288565b9150509250925092565b6000806000806080858703121561337757613376614373565b5b6000613385878288016131c3565b9450506020613396878288016131c3565b93505060406133a787828801613288565b925050606085013567ffffffffffffffff8111156133c8576133c761436e565b5b6133d487828801613217565b91505092959194509250565b600080604083850312156133f7576133f6614373565b5b6000613405858286016131c3565b9250506020613416858286016131d8565b9150509250929050565b6000806040838503121561343757613436614373565b5b6000613445858286016131c3565b925050602061345685828601613288565b9150509250929050565b60006020828403121561347657613475614373565b5b6000613484848285016131d8565b91505092915050565b6000602082840312156134a3576134a2614373565b5b60006134b1848285016131ed565b91505092915050565b6000602082840312156134d0576134cf614373565b5b60006134de84828501613202565b91505092915050565b6000602082840312156134fd576134fc614373565b5b600061350b84828501613245565b91505092915050565b60006020828403121561352a57613529614373565b5b600082013567ffffffffffffffff8111156135485761354761436e565b5b6135548482850161325a565b91505092915050565b60006020828403121561357357613572614373565b5b600061358184828501613288565b91505092915050565b6135938161408e565b82525050565b6135a2816140a0565b82525050565b60006135b382613ee5565b6135bd8185613efb565b93506135cd81856020860161413f565b6135d681614378565b840191505092915050565b60006135ec82613ef0565b6135f68185613f17565b935061360681856020860161413f565b61360f81614378565b840191505092915050565b600061362582613ef0565b61362f8185613f28565b935061363f81856020860161413f565b80840191505092915050565b600081546136588161419c565b6136628186613f28565b9450600182166000811461367d576001811461368e576136c1565b60ff198316865281860193506136c1565b61369785613ed0565b60005b838110156136b95781548189015260018201915060208101905061369a565b838801955050505b50505092915050565b60006136d7602283613f17565b91506136e282614389565b604082019050919050565b60006136fa600683613f17565b9150613705826143d8565b602082019050919050565b600061371d602683613f17565b915061372882614401565b604082019050919050565b6000613740602a83613f17565b915061374b82614450565b604082019050919050565b6000613763600a83613f17565b915061376e8261449f565b602082019050919050565b6000613786602383613f17565b9150613791826144c8565b604082019050919050565b60006137a9602583613f17565b91506137b482614517565b604082019050919050565b60006137cc603983613f17565b91506137d782614566565b604082019050919050565b60006137ef601283613f17565b91506137fa826145b5565b602082019050919050565b6000613812602b83613f17565b915061381d826145de565b604082019050919050565b6000613835601583613f17565b91506138408261462d565b602082019050919050565b6000613858602683613f17565b915061386382614656565b604082019050919050565b600061387b602083613f17565b9150613886826146a5565b602082019050919050565b600061389e601a83613f17565b91506138a9826146ce565b602082019050919050565b60006138c1603283613f17565b91506138cc826146f7565b604082019050919050565b60006138e4601683613f17565b91506138ef82614746565b602082019050919050565b6000613907602283613f17565b91506139128261476f565b604082019050919050565b600061392a601b83613f17565b9150613935826147be565b602082019050919050565b600061394d600083613f0c565b9150613958826147e7565b600082019050919050565b6000613970602383613f17565b915061397b826147ea565b604082019050919050565b6000613993603383613f17565b915061399e82614839565b604082019050919050565b60006139b6601d83613f17565b91506139c182614888565b602082019050919050565b60006139d9602183613f17565b91506139e4826148b1565b604082019050919050565b60006139fc602e83613f17565b9150613a0782614900565b604082019050919050565b6000613a1f602d83613f17565b9150613a2a8261494f565b604082019050919050565b613a3e81614126565b82525050565b6000613a50828661364b565b9150613a5c828561361a565b9150613a68828461361a565b9150819050949350505050565b6000613a8082613940565b9150819050919050565b6000602082019050613a9f600083018461358a565b92915050565b6000608082019050613aba600083018761358a565b613ac7602083018661358a565b613ad46040830185613a35565b8181036060830152613ae681846135a8565b905095945050505050565b6000602082019050613b066000830184613599565b92915050565b60006020820190508181036000830152613b2681846135e1565b905092915050565b60006020820190508181036000830152613b47816136ca565b9050919050565b60006020820190508181036000830152613b67816136ed565b9050919050565b60006020820190508181036000830152613b8781613710565b9050919050565b60006020820190508181036000830152613ba781613733565b9050919050565b60006020820190508181036000830152613bc781613756565b9050919050565b60006020820190508181036000830152613be781613779565b9050919050565b60006020820190508181036000830152613c078161379c565b9050919050565b60006020820190508181036000830152613c27816137bf565b9050919050565b60006020820190508181036000830152613c47816137e2565b9050919050565b60006020820190508181036000830152613c6781613805565b9050919050565b60006020820190508181036000830152613c8781613828565b9050919050565b60006020820190508181036000830152613ca78161384b565b9050919050565b60006020820190508181036000830152613cc78161386e565b9050919050565b60006020820190508181036000830152613ce781613891565b9050919050565b60006020820190508181036000830152613d07816138b4565b9050919050565b60006020820190508181036000830152613d27816138d7565b9050919050565b60006020820190508181036000830152613d47816138fa565b9050919050565b60006020820190508181036000830152613d678161391d565b9050919050565b60006020820190508181036000830152613d8781613963565b9050919050565b60006020820190508181036000830152613da781613986565b9050919050565b60006020820190508181036000830152613dc7816139a9565b9050919050565b60006020820190508181036000830152613de7816139cc565b9050919050565b60006020820190508181036000830152613e07816139ef565b9050919050565b60006020820190508181036000830152613e2781613a12565b9050919050565b6000602082019050613e436000830184613a35565b92915050565b6000613e53613e64565b9050613e5f82826141ce565b919050565b6000604051905090565b600067ffffffffffffffff821115613e8957613e88614335565b5b613e9282614378565b9050602081019050919050565b600067ffffffffffffffff821115613eba57613eb9614335565b5b613ec382614378565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613f3e826140ea565b9150613f49836140ea565b9250826fffffffffffffffffffffffffffffffff03821115613f6e57613f6d614279565b5b828201905092915050565b6000613f8482614126565b9150613f8f83614126565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613fc457613fc3614279565b5b828201905092915050565b6000613fda82614126565b9150613fe583614126565b925082613ff557613ff46142a8565b5b828204905092915050565b600061400b82614126565b915061401683614126565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561404f5761404e614279565b5b828202905092915050565b600061406582614126565b915061407083614126565b92508282101561408357614082614279565b5b828203905092915050565b600061409982614106565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006140e38261408e565b9050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561415d578082015181840152602081019050614142565b8381111561416c576000848401525b50505050565b600061417d82614126565b9150600082141561419157614190614279565b5b600182039050919050565b600060028204905060018216806141b457607f821691505b602082108114156141c8576141c76142d7565b5b50919050565b6141d782614378565b810181811067ffffffffffffffff821117156141f6576141f5614335565b5b80604052505050565b600061420a82614126565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561423d5761423c614279565b5b600182019050919050565b600061425382614126565b915061425e83614126565b92508261426e5761426d6142a8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757365640000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f4e6f2030206d696e747300000000000000000000000000000000000000000000600082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f496e76616c69642066756e64732070726f766964656400000000000000000000600082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f45786365656473206d617820706572207472616e73616374696f6e0000000000600082015250565b50565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f7220300000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b6149a78161408e565b81146149b257600080fd5b50565b6149be816140a0565b81146149c957600080fd5b50565b6149d5816140ac565b81146149e057600080fd5b50565b6149ec816140d8565b81146149f757600080fd5b50565b614a0381614126565b8114614a0e57600080fd5b5056fea2646970667358221220643c79258215acac042448699e95b181f4f56587c0095b86d16ad1ad3c70bdf964736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000005868747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f6261667962656961616f726e6667376a666a666969336a6c37747a666f6e7a3678626e706d713475366d683375793371326d74773664717878626900000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): https://nftstorage.link/ipfs/bafybeiaaornfg7jfjfii3jl7tzfonz6xbnpmq4u6mh3uy3q2mtw6dqxxbi
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [3] : 68747470733a2f2f6e667473746f726167652e6c696e6b2f697066732f626166
Arg [4] : 7962656961616f726e6667376a666a666969336a6c37747a666f6e7a3678626e
Arg [5] : 706d713475366d683375793371326d7477366471787862690000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

40287:3420:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27542:422;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42241:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29325:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31020:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40513:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30541:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25901:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32047:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26606:864;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40589:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42049:184;;;;;;;;;;;;;:::i;:::-;;32280:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26078:228;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40738:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42875:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40706:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29134:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42516:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28028:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2714:103;;;;;;;;;;;;;:::i;:::-;;40627:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2063:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42418:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42328:82;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29494:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40548:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41010:578;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31384:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32528:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40332:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42763:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43115:589;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40385:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42631:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41596:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42981:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2972:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40668:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27542:422;27689:4;27746:25;27731:40;;;:11;:40;;;;:105;;;;27803:33;27788:48;;;:11;:48;;;;27731:105;:172;;;;27868:35;27853:50;;;:11;:50;;;;27731:172;:225;;;;27920:36;27944:11;27920:23;:36::i;:::-;27731:225;27711:245;;27542:422;;;:::o;42241:79::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42306:6:::1;42297;;:15;;;;;;;;;;;;;;;;;;42241:79:::0;:::o;29325:100::-;29379:13;29412:5;29405:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29325:100;:::o;31020:292::-;31124:7;31171:16;31179:7;31171;:16::i;:::-;31149:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;31280:15;:24;31296:7;31280:24;;;;;;;;;;;;;;;;;;;;;31273:31;;31020:292;;;:::o;40513:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;30541:413::-;30614:13;30630:24;30646:7;30630:15;:24::i;:::-;30614:40;;30679:5;30673:11;;:2;:11;;;;30665:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;30774:5;30758:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;30783:37;30800:5;30807:12;:10;:12::i;:::-;30783:16;:37::i;:::-;30758:62;30736:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;30918:28;30927:2;30931:7;30940:5;30918:8;:28::i;:::-;30603:351;30541:413;;:::o;25901:100::-;25954:7;25981:12;;25974:19;;25901:100;:::o;32047:162::-;32173:28;32183:4;32189:2;32193:7;32173:9;:28::i;:::-;32047:162;;;:::o;26606:864::-;26731:7;26772:16;26782:5;26772:9;:16::i;:::-;26764:5;:24;26756:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;26838:22;26863:13;:11;:13::i;:::-;26838:38;;26887:19;26921:25;26975:9;26970:426;26994:14;26990:1;:18;26970:426;;;27030:31;27064:11;:14;27076:1;27064:14;;;;;;;;;;;27030:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27123:1;27097:28;;:9;:14;;;:28;;;27093:103;;27166:9;:14;;;27146:34;;27093:103;27235:5;27214:26;;:17;:26;;;27210:175;;;27280:5;27265:11;:20;27261:77;;;27317:1;27310:8;;;;;;;;;27261:77;27356:13;;;;;:::i;:::-;;;;27210:175;27015:381;27010:3;;;;;:::i;:::-;;;;26970:426;;;;27406:56;;;;;;;;;;:::i;:::-;;;;;;;;26606:864;;;;;:::o;40589:31::-;;;;:::o;42049:184::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42098:12:::1;42124:10;42116:24;;42162:21;42116:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42097:101;;;42217:7;42209:16;;;::::0;::::1;;42086:147;42049:184::o:0;32280:177::-;32410:39;32427:4;32433:2;32437:7;32410:39;;;;;;;;;;;;:16;:39::i;:::-;32280:177;;;:::o;26078:228::-;26181:7;26222:13;:11;:13::i;:::-;26214:5;:21;26206:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;26293:5;26286:12;;26078:228;;;:::o;40738:28::-;;;;;;;;;;;;;:::o;42875:98::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42957:8:::1;42947:7;:18;;;;;;;;;;;;:::i;:::-;;42875:98:::0;:::o;40706:25::-;;;;;;;;;;;;;:::o;29134:124::-;29198:7;29225:20;29237:7;29225:11;:20::i;:::-;:25;;;29218:32;;29134:124;;;:::o;42516:107::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42602:13:::1;42589:10;:26;;;;42516:107:::0;:::o;28028:258::-;28092:7;28151:1;28134:19;;:5;:19;;;;28112:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;28250:12;:19;28263:5;28250:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;28242:36;;28235:43;;28028:258;;;:::o;2714:103::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2779:30:::1;2806:1;2779:18;:30::i;:::-;2714:103::o:0;40627:34::-;;;;:::o;2063:87::-;2109:7;2136:6;;;;;;;;;;;2129:13;;2063:87;:::o;42418:90::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42491:9:::1;42483:5;:17;;;;42418:90:::0;:::o;42328:82::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42396:6:::1;42385:8;;:17;;;;;;;;;;;;;;;;;;42328:82:::0;:::o;29494:104::-;29550:13;29583:7;29576:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29494:104;:::o;40548:34::-;;;;:::o;41010:578::-;41076:6;;;;;;;;;;;41075:7;41067:26;;;;;;;;;;;;:::i;:::-;;;;;;;;;41142:7;41126:13;:11;:13::i;:::-;:23;;;;:::i;:::-;41112:10;;:37;;41104:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41201:1;41191:7;:11;41183:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;41269:7;41253:13;:11;:13::i;:::-;:23;;;;:::i;:::-;41234:15;;:42;41230:308;;41315:7;41301:10;;:21;;41293:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41230:308;;;41409:7;41395:10;;:21;;41387:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;41494:5;;41484:7;:15;;;;:::i;:::-;41471:9;:28;;41463:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;41230:308;41550:30;41560:10;41572:7;41550:9;:30::i;:::-;41010:578;:::o;31384:311::-;31514:12;:10;:12::i;:::-;31502:24;;:8;:24;;;;31494:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;31615:8;31570:18;:32;31589:12;:10;:12::i;:::-;31570:32;;;;;;;;;;;;;;;:42;31603:8;31570:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31668:8;31639:48;;31654:12;:10;:12::i;:::-;31639:48;;;31678:8;31639:48;;;;;;:::i;:::-;;;;;;;;31384:311;;:::o;32528:355::-;32687:28;32697:4;32703:2;32707:7;32687:9;:28::i;:::-;32748:48;32771:4;32777:2;32781:7;32790:5;32748:22;:48::i;:::-;32726:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;32528:355;;;;:::o;40332:46::-;;;;;;;;;;;;;;;;;;;:::o;42763:104::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42847:12:::1;42834:10;:25;;;;42763:104:::0;:::o;43115:589::-;43217:13;43256:17;43264:8;43256:7;:17::i;:::-;43248:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;43328:5;43316:17;;:8;;;;;;;;;;;:17;;;43312:71;;;43357:14;43350:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43312:71;43439:1;43421:7;43415:21;;;;;:::i;:::-;;;:25;:281;;;;;;;;;;;;;;;;;43532:7;43566:26;43583:8;43566:16;:26::i;:::-;43619:13;;;;;;;;;;;;;;;;;43489:166;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43415:281;43395:301;;43115:589;;;;:::o;40385:98::-;40441:42;40385:98;:::o;42631:124::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42730:17:::1;42712:15;:35;;;;42631:124:::0;:::o;41596:445::-;41721:4;41806:27;40441:42;41806:65;;41927:8;41886:49;;41894:13;:21;;;41916:5;41894:28;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41886:49;;;41882:93;;;41959:4;41952:11;;;;;41882:93;41994:39;42017:5;42024:8;41994:22;:39::i;:::-;41987:46;;;41596:445;;;;;:::o;42981:126::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43084:15:::1;43067:14;:32;;;;;;;;;;;;:::i;:::-;;42981:126:::0;:::o;2972:238::-;2294:12;:10;:12::i;:::-;2283:23;;:7;:5;:7::i;:::-;:23;;;2275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3095:1:::1;3075:22;;:8;:22;;;;3053:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3174:28;3193:8;3174:18;:28::i;:::-;2972:238:::0;:::o;40668:29::-;;;;:::o;23894:207::-;24024:4;24068:25;24053:40;;;:11;:40;;;;24046:47;;23894:207;;;:::o;787:98::-;840:7;867:10;860:17;;787:98;:::o;33138:111::-;33195:4;33229:12;;33219:7;:22;33212:29;;33138:111;;;:::o;37317:196::-;37459:2;37432:15;:24;37448:7;37432:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;37497:7;37493:2;37477:28;;37486:5;37477:28;;;;;;;;;;;;37317:196;;;:::o;35281:1918::-;35396:35;35434:20;35446:7;35434:11;:20::i;:::-;35396:58;;35467:22;35509:13;:18;;;35493:34;;:12;:10;:12::i;:::-;:34;;;:87;;;;35568:12;:10;:12::i;:::-;35544:36;;:20;35556:7;35544:11;:20::i;:::-;:36;;;35493:87;:154;;;;35597:50;35614:13;:18;;;35634:12;:10;:12::i;:::-;35597:16;:50::i;:::-;35493:154;35467:181;;35683:17;35661:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;35835:4;35813:26;;:13;:18;;;:26;;;35791:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;35938:1;35924:16;;:2;:16;;;;35916:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35995:43;36017:4;36023:2;36027:7;36036:1;35995:21;:43::i;:::-;36103:49;36120:1;36124:7;36133:13;:18;;;36103:8;:49::i;:::-;36387:1;36357:12;:18;36370:4;36357:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36431:1;36403:12;:16;36416:2;36403:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36479:43;;;;;;;;36494:2;36479:43;;;;;;36505:15;36479:43;;;;;36456:11;:20;36468:7;36456:20;;;;;;;;;;;:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36762:19;36794:1;36784:7;:11;;;;:::i;:::-;36762:33;;36851:1;36810:43;;:11;:24;36822:11;36810:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36806:288;;;36874:20;36882:11;36874:7;:20::i;:::-;36870:213;;;36942:125;;;;;;;;36979:13;:18;;;36942:125;;;;;;37020:13;:28;;;36942:125;;;;;36915:11;:24;36927:11;36915:24;;;;;;;;;;;:152;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36870:213;36806:288;37130:7;37126:2;37111:27;;37120:4;37111:27;;;;;;;;;;;;37149:42;37170:4;37176:2;37180:7;37189:1;37149:20;:42::i;:::-;35385:1814;;;35281:1918;;;:::o;28568:504::-;28656:21;;:::i;:::-;28703:16;28711:7;28703;:16::i;:::-;28695:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28784:12;28799:7;28784:22;;28779:216;28833:31;28867:11;:17;28879:4;28867:17;;;;;;;;;;;28833:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28929:1;28903:28;;:9;:14;;;:28;;;28899:85;;28959:9;28952:16;;;;;;28899:85;28818:177;28810:6;;;;;:::i;:::-;;;;28779:216;;28568:504;;;;:::o;3370:191::-;3444:16;3463:6;;;;;;;;;;;3444:25;;3489:8;3480:6;;:17;;;;;;;;;;;;;;;;;;3544:8;3513:40;;3534:8;3513:40;;;;;;;;;;;;3433:128;3370:191;:::o;33257:104::-;33326:27;33336:2;33340:8;33326:27;;;;;;;;;;;;:9;:27::i;:::-;33257:104;;:::o;38078:985::-;38233:4;38254:15;:2;:13;;;:15::i;:::-;38250:806;;;38323:2;38307:36;;;38366:12;:10;:12::i;:::-;38401:4;38428:7;38458:5;38307:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38286:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38686:1;38669:6;:13;:18;38665:321;;;38712:109;;;;;;;;;;:::i;:::-;;;;;;;;38665:321;38936:6;38930:13;38921:6;38917:2;38913:15;38906:38;38286:715;38556:45;;;38546:55;;;:6;:55;;;;38539:62;;;;;38250:806;39040:4;39033:11;;38078:985;;;;;;;:::o;3910:723::-;3966:13;4196:1;4187:5;:10;4183:53;;;4214:10;;;;;;;;;;;;;;;;;;;;;4183:53;4246:12;4261:5;4246:20;;4277:14;4302:78;4317:1;4309:4;:9;4302:78;;4335:8;;;;;:::i;:::-;;;;4366:2;4358:10;;;;;:::i;:::-;;;4302:78;;;4390:19;4422:6;4412:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4390:39;;4440:154;4456:1;4447:5;:10;4440:154;;4484:1;4474:11;;;;;:::i;:::-;;;4551:2;4543:5;:10;;;;:::i;:::-;4530:2;:24;;;;:::i;:::-;4517:39;;4500:6;4507;4500:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;4580:2;4571:11;;;;;:::i;:::-;;;4440:154;;;4618:6;4604:21;;;;;3910:723;;;;:::o;31766:214::-;31908:4;31937:18;:25;31956:5;31937:25;;;;;;;;;;;;;;;:35;31963:8;31937:35;;;;;;;;;;;;;;;;;;;;;;;;;31930:42;;31766:214;;;;:::o;39551:159::-;;;;;:::o;40122:158::-;;;;;:::o;33638:1389::-;33761:20;33784:12;;33761:35;;33829:1;33815:16;;:2;:16;;;;33807:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;34014:21;34022:12;34014:7;:21::i;:::-;34013:22;34005:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;34099:1;34088:8;:12;34080:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;34153:61;34183:1;34187:2;34191:12;34205:8;34153:21;:61::i;:::-;34227:30;34260:12;:16;34273:2;34260:16;;;;;;;;;;;;;;;34227:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34306:135;;;;;;;;34362:8;34332:11;:19;;;:39;;;;:::i;:::-;34306:135;;;;;;34421:8;34386:11;:24;;;:44;;;;:::i;:::-;34306:135;;;;;34287:12;:16;34300:2;34287:16;;;;;;;;;;;;;;;:154;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34480:43;;;;;;;;34495:2;34480:43;;;;;;34506:15;34480:43;;;;;34452:11;:25;34464:12;34452:25;;;;;;;;;;;:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34536:20;34559:12;34536:35;;34589:9;34584:325;34608:8;34604:1;:12;34584:325;;;34668:12;34664:2;34643:38;;34660:1;34643:38;;;;;;;;;;;;34722:59;34753:1;34757:2;34761:12;34775:5;34722:22;:59::i;:::-;34696:172;;;;;;;;;;;;:::i;:::-;;;;;;;;;34883:14;;;;;:::i;:::-;;;;34618:3;;;;;:::i;:::-;;;;34584:325;;;;34936:12;34921;:27;;;;34959:60;34988:1;34992:2;34996:12;35010:8;34959:20;:60::i;:::-;33750:1277;;;33638:1389;;;:::o;15256:387::-;15316:4;15524:12;15591:7;15579:20;15571:28;;15634:1;15627:4;:8;15620:15;;;15256:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1772:201::-;1858:5;1889:6;1883:13;1874:22;;1905:62;1961:5;1905:62;:::i;:::-;1772:201;;;;:::o;1993:340::-;2049:5;2098:3;2091:4;2083:6;2079:17;2075:27;2065:122;;2106:79;;:::i;:::-;2065:122;2223:6;2210:20;2248:79;2323:3;2315:6;2308:4;2300:6;2296:17;2248:79;:::i;:::-;2239:88;;2055:278;1993:340;;;;:::o;2339:139::-;2385:5;2423:6;2410:20;2401:29;;2439:33;2466:5;2439:33;:::i;:::-;2339:139;;;;:::o;2484:329::-;2543:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:119;;;2598:79;;:::i;:::-;2560:119;2718:1;2743:53;2788:7;2779:6;2768:9;2764:22;2743:53;:::i;:::-;2733:63;;2689:117;2484:329;;;;:::o;2819:474::-;2887:6;2895;2944:2;2932:9;2923:7;2919:23;2915:32;2912:119;;;2950:79;;:::i;:::-;2912:119;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;3197:2;3223:53;3268:7;3259:6;3248:9;3244:22;3223:53;:::i;:::-;3213:63;;3168:118;2819:474;;;;;:::o;3299:619::-;3376:6;3384;3392;3441:2;3429:9;3420:7;3416:23;3412:32;3409:119;;;3447:79;;:::i;:::-;3409:119;3567:1;3592:53;3637:7;3628:6;3617:9;3613:22;3592:53;:::i;:::-;3582:63;;3538:117;3694:2;3720:53;3765:7;3756:6;3745:9;3741:22;3720:53;:::i;:::-;3710:63;;3665:118;3822:2;3848:53;3893:7;3884:6;3873:9;3869:22;3848:53;:::i;:::-;3838:63;;3793:118;3299:619;;;;;:::o;3924:943::-;4019:6;4027;4035;4043;4092:3;4080:9;4071:7;4067:23;4063:33;4060:120;;;4099:79;;:::i;:::-;4060:120;4219:1;4244:53;4289:7;4280:6;4269:9;4265:22;4244:53;:::i;:::-;4234:63;;4190:117;4346:2;4372:53;4417:7;4408:6;4397:9;4393:22;4372:53;:::i;:::-;4362:63;;4317:118;4474:2;4500:53;4545:7;4536:6;4525:9;4521:22;4500:53;:::i;:::-;4490:63;;4445:118;4630:2;4619:9;4615:18;4602:32;4661:18;4653:6;4650:30;4647:117;;;4683:79;;:::i;:::-;4647:117;4788:62;4842:7;4833:6;4822:9;4818:22;4788:62;:::i;:::-;4778:72;;4573:287;3924:943;;;;;;;:::o;4873:468::-;4938:6;4946;4995:2;4983:9;4974:7;4970:23;4966:32;4963:119;;;5001:79;;:::i;:::-;4963:119;5121:1;5146:53;5191:7;5182:6;5171:9;5167:22;5146:53;:::i;:::-;5136:63;;5092:117;5248:2;5274:50;5316:7;5307:6;5296:9;5292:22;5274:50;:::i;:::-;5264:60;;5219:115;4873:468;;;;;:::o;5347:474::-;5415:6;5423;5472:2;5460:9;5451:7;5447:23;5443:32;5440:119;;;5478:79;;:::i;:::-;5440:119;5598:1;5623:53;5668:7;5659:6;5648:9;5644:22;5623:53;:::i;:::-;5613:63;;5569:117;5725:2;5751:53;5796:7;5787:6;5776:9;5772:22;5751:53;:::i;:::-;5741:63;;5696:118;5347:474;;;;;:::o;5827:323::-;5883:6;5932:2;5920:9;5911:7;5907:23;5903:32;5900:119;;;5938:79;;:::i;:::-;5900:119;6058:1;6083:50;6125:7;6116:6;6105:9;6101:22;6083:50;:::i;:::-;6073:60;;6029:114;5827:323;;;;:::o;6156:327::-;6214:6;6263:2;6251:9;6242:7;6238:23;6234:32;6231:119;;;6269:79;;:::i;:::-;6231:119;6389:1;6414:52;6458:7;6449:6;6438:9;6434:22;6414:52;:::i;:::-;6404:62;;6360:116;6156:327;;;;:::o;6489:349::-;6558:6;6607:2;6595:9;6586:7;6582:23;6578:32;6575:119;;;6613:79;;:::i;:::-;6575:119;6733:1;6758:63;6813:7;6804:6;6793:9;6789:22;6758:63;:::i;:::-;6748:73;;6704:127;6489:349;;;;:::o;6844:409::-;6943:6;6992:2;6980:9;6971:7;6967:23;6963:32;6960:119;;;6998:79;;:::i;:::-;6960:119;7118:1;7143:93;7228:7;7219:6;7208:9;7204:22;7143:93;:::i;:::-;7133:103;;7089:157;6844:409;;;;:::o;7259:509::-;7328:6;7377:2;7365:9;7356:7;7352:23;7348:32;7345:119;;;7383:79;;:::i;:::-;7345:119;7531:1;7520:9;7516:17;7503:31;7561:18;7553:6;7550:30;7547:117;;;7583:79;;:::i;:::-;7547:117;7688:63;7743:7;7734:6;7723:9;7719:22;7688:63;:::i;:::-;7678:73;;7474:287;7259:509;;;;:::o;7774:329::-;7833:6;7882:2;7870:9;7861:7;7857:23;7853:32;7850:119;;;7888:79;;:::i;:::-;7850:119;8008:1;8033:53;8078:7;8069:6;8058:9;8054:22;8033:53;:::i;:::-;8023:63;;7979:117;7774:329;;;;:::o;8109:118::-;8196:24;8214:5;8196:24;:::i;:::-;8191:3;8184:37;8109:118;;:::o;8233:109::-;8314:21;8329:5;8314:21;:::i;:::-;8309:3;8302:34;8233:109;;:::o;8348:360::-;8434:3;8462:38;8494:5;8462:38;:::i;:::-;8516:70;8579:6;8574:3;8516:70;:::i;:::-;8509:77;;8595:52;8640:6;8635:3;8628:4;8621:5;8617:16;8595:52;:::i;:::-;8672:29;8694:6;8672:29;:::i;:::-;8667:3;8663:39;8656:46;;8438:270;8348:360;;;;:::o;8714:364::-;8802:3;8830:39;8863:5;8830:39;:::i;:::-;8885:71;8949:6;8944:3;8885:71;:::i;:::-;8878:78;;8965:52;9010:6;9005:3;8998:4;8991:5;8987:16;8965:52;:::i;:::-;9042:29;9064:6;9042:29;:::i;:::-;9037:3;9033:39;9026:46;;8806:272;8714:364;;;;:::o;9084:377::-;9190:3;9218:39;9251:5;9218:39;:::i;:::-;9273:89;9355:6;9350:3;9273:89;:::i;:::-;9266:96;;9371:52;9416:6;9411:3;9404:4;9397:5;9393:16;9371:52;:::i;:::-;9448:6;9443:3;9439:16;9432:23;;9194:267;9084:377;;;;:::o;9491:845::-;9594:3;9631:5;9625:12;9660:36;9686:9;9660:36;:::i;:::-;9712:89;9794:6;9789:3;9712:89;:::i;:::-;9705:96;;9832:1;9821:9;9817:17;9848:1;9843:137;;;;9994:1;9989:341;;;;9810:520;;9843:137;9927:4;9923:9;9912;9908:25;9903:3;9896:38;9963:6;9958:3;9954:16;9947:23;;9843:137;;9989:341;10056:38;10088:5;10056:38;:::i;:::-;10116:1;10130:154;10144:6;10141:1;10138:13;10130:154;;;10218:7;10212:14;10208:1;10203:3;10199:11;10192:35;10268:1;10259:7;10255:15;10244:26;;10166:4;10163:1;10159:12;10154:17;;10130:154;;;10313:6;10308:3;10304:16;10297:23;;9996:334;;9810:520;;9598:738;;9491:845;;;;:::o;10342:366::-;10484:3;10505:67;10569:2;10564:3;10505:67;:::i;:::-;10498:74;;10581:93;10670:3;10581:93;:::i;:::-;10699:2;10694:3;10690:12;10683:19;;10342:366;;;:::o;10714:365::-;10856:3;10877:66;10941:1;10936:3;10877:66;:::i;:::-;10870:73;;10952:93;11041:3;10952:93;:::i;:::-;11070:2;11065:3;11061:12;11054:19;;10714:365;;;:::o;11085:366::-;11227:3;11248:67;11312:2;11307:3;11248:67;:::i;:::-;11241:74;;11324:93;11413:3;11324:93;:::i;:::-;11442:2;11437:3;11433:12;11426:19;;11085:366;;;:::o;11457:::-;11599:3;11620:67;11684:2;11679:3;11620:67;:::i;:::-;11613:74;;11696:93;11785:3;11696:93;:::i;:::-;11814:2;11809:3;11805:12;11798:19;;11457:366;;;:::o;11829:::-;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:398::-;17196:3;17217:83;17298:1;17293:3;17217:83;:::i;:::-;17210:90;;17309:93;17398:3;17309:93;:::i;:::-;17427:1;17422:3;17418:11;17411:18;;17037:398;;;:::o;17441:366::-;17583:3;17604:67;17668:2;17663:3;17604:67;:::i;:::-;17597:74;;17680:93;17769:3;17680:93;:::i;:::-;17798:2;17793:3;17789:12;17782:19;;17441:366;;;:::o;17813:::-;17955:3;17976:67;18040:2;18035:3;17976:67;:::i;:::-;17969:74;;18052:93;18141:3;18052:93;:::i;:::-;18170:2;18165:3;18161:12;18154:19;;17813:366;;;:::o;18185:::-;18327:3;18348:67;18412:2;18407:3;18348:67;:::i;:::-;18341:74;;18424:93;18513:3;18424:93;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18185:366;;;:::o;18557:::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:118::-;20132:24;20150:5;20132:24;:::i;:::-;20127:3;20120:37;20045:118;;:::o;20169:589::-;20394:3;20416:92;20504:3;20495:6;20416:92;:::i;:::-;20409:99;;20525:95;20616:3;20607:6;20525:95;:::i;:::-;20518:102;;20637:95;20728:3;20719:6;20637:95;:::i;:::-;20630:102;;20749:3;20742:10;;20169:589;;;;;;:::o;20764:379::-;20948:3;20970:147;21113:3;20970:147;:::i;:::-;20963:154;;21134:3;21127:10;;20764:379;;;:::o;21149:222::-;21242:4;21280:2;21269:9;21265:18;21257:26;;21293:71;21361:1;21350:9;21346:17;21337:6;21293:71;:::i;:::-;21149:222;;;;:::o;21377:640::-;21572:4;21610:3;21599:9;21595:19;21587:27;;21624:71;21692:1;21681:9;21677:17;21668:6;21624:71;:::i;:::-;21705:72;21773:2;21762:9;21758:18;21749:6;21705:72;:::i;:::-;21787;21855:2;21844:9;21840:18;21831:6;21787:72;:::i;:::-;21906:9;21900:4;21896:20;21891:2;21880:9;21876:18;21869:48;21934:76;22005:4;21996:6;21934:76;:::i;:::-;21926:84;;21377:640;;;;;;;:::o;22023:210::-;22110:4;22148:2;22137:9;22133:18;22125:26;;22161:65;22223:1;22212:9;22208:17;22199:6;22161:65;:::i;:::-;22023:210;;;;:::o;22239:313::-;22352:4;22390:2;22379:9;22375:18;22367:26;;22439:9;22433:4;22429:20;22425:1;22414:9;22410:17;22403:47;22467:78;22540:4;22531:6;22467:78;:::i;:::-;22459:86;;22239:313;;;;:::o;22558:419::-;22724:4;22762:2;22751:9;22747:18;22739:26;;22811:9;22805:4;22801:20;22797:1;22786:9;22782:17;22775:47;22839:131;22965:4;22839:131;:::i;:::-;22831:139;;22558:419;;;:::o;22983:::-;23149:4;23187:2;23176:9;23172:18;23164:26;;23236:9;23230:4;23226:20;23222:1;23211:9;23207:17;23200:47;23264:131;23390:4;23264:131;:::i;:::-;23256:139;;22983:419;;;:::o;23408:::-;23574:4;23612:2;23601:9;23597:18;23589:26;;23661:9;23655:4;23651:20;23647:1;23636:9;23632:17;23625:47;23689:131;23815:4;23689:131;:::i;:::-;23681:139;;23408:419;;;:::o;23833:::-;23999:4;24037:2;24026:9;24022:18;24014:26;;24086:9;24080:4;24076:20;24072:1;24061:9;24057:17;24050:47;24114:131;24240:4;24114:131;:::i;:::-;24106:139;;23833:419;;;:::o;24258:::-;24424:4;24462:2;24451:9;24447:18;24439:26;;24511:9;24505:4;24501:20;24497:1;24486:9;24482:17;24475:47;24539:131;24665:4;24539:131;:::i;:::-;24531:139;;24258:419;;;:::o;24683:::-;24849:4;24887:2;24876:9;24872:18;24864:26;;24936:9;24930:4;24926:20;24922:1;24911:9;24907:17;24900:47;24964:131;25090:4;24964:131;:::i;:::-;24956:139;;24683:419;;;:::o;25108:::-;25274:4;25312:2;25301:9;25297:18;25289:26;;25361:9;25355:4;25351:20;25347:1;25336:9;25332:17;25325:47;25389:131;25515:4;25389:131;:::i;:::-;25381:139;;25108:419;;;:::o;25533:::-;25699:4;25737:2;25726:9;25722:18;25714:26;;25786:9;25780:4;25776:20;25772:1;25761:9;25757:17;25750:47;25814:131;25940:4;25814:131;:::i;:::-;25806:139;;25533:419;;;:::o;25958:::-;26124:4;26162:2;26151:9;26147:18;26139:26;;26211:9;26205:4;26201:20;26197:1;26186:9;26182:17;26175:47;26239:131;26365:4;26239:131;:::i;:::-;26231:139;;25958:419;;;:::o;26383:::-;26549:4;26587:2;26576:9;26572:18;26564:26;;26636:9;26630:4;26626:20;26622:1;26611:9;26607:17;26600:47;26664:131;26790:4;26664:131;:::i;:::-;26656:139;;26383:419;;;:::o;26808:::-;26974:4;27012:2;27001:9;26997:18;26989:26;;27061:9;27055:4;27051:20;27047:1;27036:9;27032:17;27025:47;27089:131;27215:4;27089:131;:::i;:::-;27081:139;;26808:419;;;:::o;27233:::-;27399:4;27437:2;27426:9;27422:18;27414:26;;27486:9;27480:4;27476:20;27472:1;27461:9;27457:17;27450:47;27514:131;27640:4;27514:131;:::i;:::-;27506:139;;27233:419;;;:::o;27658:::-;27824:4;27862:2;27851:9;27847:18;27839:26;;27911:9;27905:4;27901:20;27897:1;27886:9;27882:17;27875:47;27939:131;28065:4;27939:131;:::i;:::-;27931:139;;27658:419;;;:::o;28083:::-;28249:4;28287:2;28276:9;28272:18;28264:26;;28336:9;28330:4;28326:20;28322:1;28311:9;28307:17;28300:47;28364:131;28490:4;28364:131;:::i;:::-;28356:139;;28083:419;;;:::o;28508:::-;28674:4;28712:2;28701:9;28697:18;28689:26;;28761:9;28755:4;28751:20;28747:1;28736:9;28732:17;28725:47;28789:131;28915:4;28789:131;:::i;:::-;28781:139;;28508:419;;;:::o;28933:::-;29099:4;29137:2;29126:9;29122:18;29114:26;;29186:9;29180:4;29176:20;29172:1;29161:9;29157:17;29150:47;29214:131;29340:4;29214:131;:::i;:::-;29206:139;;28933:419;;;:::o;29358:::-;29524:4;29562:2;29551:9;29547:18;29539:26;;29611:9;29605:4;29601:20;29597:1;29586:9;29582:17;29575:47;29639:131;29765:4;29639:131;:::i;:::-;29631:139;;29358:419;;;:::o;29783:::-;29949:4;29987:2;29976:9;29972:18;29964:26;;30036:9;30030:4;30026:20;30022:1;30011:9;30007:17;30000:47;30064:131;30190:4;30064:131;:::i;:::-;30056:139;;29783:419;;;:::o;30208:::-;30374:4;30412:2;30401:9;30397:18;30389:26;;30461:9;30455:4;30451:20;30447:1;30436:9;30432:17;30425:47;30489:131;30615:4;30489:131;:::i;:::-;30481:139;;30208:419;;;:::o;30633:::-;30799:4;30837:2;30826:9;30822:18;30814:26;;30886:9;30880:4;30876:20;30872:1;30861:9;30857:17;30850:47;30914:131;31040:4;30914:131;:::i;:::-;30906:139;;30633:419;;;:::o;31058:::-;31224:4;31262:2;31251:9;31247:18;31239:26;;31311:9;31305:4;31301:20;31297:1;31286:9;31282:17;31275:47;31339:131;31465:4;31339:131;:::i;:::-;31331:139;;31058:419;;;:::o;31483:::-;31649:4;31687:2;31676:9;31672:18;31664:26;;31736:9;31730:4;31726:20;31722:1;31711:9;31707:17;31700:47;31764:131;31890:4;31764:131;:::i;:::-;31756:139;;31483:419;;;:::o;31908:::-;32074:4;32112:2;32101:9;32097:18;32089:26;;32161:9;32155:4;32151:20;32147:1;32136:9;32132:17;32125:47;32189:131;32315:4;32189:131;:::i;:::-;32181:139;;31908:419;;;:::o;32758:::-;32924:4;32962:2;32951:9;32947:18;32939:26;;33011:9;33005:4;33001:20;32997:1;32986:9;32982:17;32975:47;33039:131;33165:4;33039:131;:::i;:::-;33031:139;;32758:419;;;:::o;33183:222::-;33276:4;33314:2;33303:9;33299:18;33291:26;;33327:71;33395:1;33384:9;33380:17;33371:6;33327:71;:::i;:::-;33183:222;;;;:::o;33411:129::-;33445:6;33472:20;;:::i;:::-;33462:30;;33501:33;33529:4;33521:6;33501:33;:::i;:::-;33411:129;;;:::o;33546:75::-;33579:6;33612:2;33606:9;33596:19;;33546:75;:::o;33627:307::-;33688:4;33778:18;33770:6;33767:30;33764:56;;;33800:18;;:::i;:::-;33764:56;33838:29;33860:6;33838:29;:::i;:::-;33830:37;;33922:4;33916;33912:15;33904:23;;33627:307;;;:::o;33940:308::-;34002:4;34092:18;34084:6;34081:30;34078:56;;;34114:18;;:::i;:::-;34078:56;34152:29;34174:6;34152:29;:::i;:::-;34144:37;;34236:4;34230;34226:15;34218:23;;33940:308;;;:::o;34254:141::-;34303:4;34326:3;34318:11;;34349:3;34346:1;34339:14;34383:4;34380:1;34370:18;34362:26;;34254:141;;;:::o;34401:98::-;34452:6;34486:5;34480:12;34470:22;;34401:98;;;:::o;34505:99::-;34557:6;34591:5;34585:12;34575:22;;34505:99;;;:::o;34610:168::-;34693:11;34727:6;34722:3;34715:19;34767:4;34762:3;34758:14;34743:29;;34610:168;;;;:::o;34784:147::-;34885:11;34922:3;34907:18;;34784:147;;;;:::o;34937:169::-;35021:11;35055:6;35050:3;35043:19;35095:4;35090:3;35086:14;35071:29;;34937:169;;;;:::o;35112:148::-;35214:11;35251:3;35236:18;;35112:148;;;;:::o;35266:273::-;35306:3;35325:20;35343:1;35325:20;:::i;:::-;35320:25;;35359:20;35377:1;35359:20;:::i;:::-;35354:25;;35481:1;35445:34;35441:42;35438:1;35435:49;35432:75;;;35487:18;;:::i;:::-;35432:75;35531:1;35528;35524:9;35517:16;;35266:273;;;;:::o;35545:305::-;35585:3;35604:20;35622:1;35604:20;:::i;:::-;35599:25;;35638:20;35656:1;35638:20;:::i;:::-;35633:25;;35792:1;35724:66;35720:74;35717:1;35714:81;35711:107;;;35798:18;;:::i;:::-;35711:107;35842:1;35839;35835:9;35828:16;;35545:305;;;;:::o;35856:185::-;35896:1;35913:20;35931:1;35913:20;:::i;:::-;35908:25;;35947:20;35965:1;35947:20;:::i;:::-;35942:25;;35986:1;35976:35;;35991:18;;:::i;:::-;35976:35;36033:1;36030;36026:9;36021:14;;35856:185;;;;:::o;36047:348::-;36087:7;36110:20;36128:1;36110:20;:::i;:::-;36105:25;;36144:20;36162:1;36144:20;:::i;:::-;36139:25;;36332:1;36264:66;36260:74;36257:1;36254:81;36249:1;36242:9;36235:17;36231:105;36228:131;;;36339:18;;:::i;:::-;36228:131;36387:1;36384;36380:9;36369:20;;36047:348;;;;:::o;36401:191::-;36441:4;36461:20;36479:1;36461:20;:::i;:::-;36456:25;;36495:20;36513:1;36495:20;:::i;:::-;36490:25;;36534:1;36531;36528:8;36525:34;;;36539:18;;:::i;:::-;36525:34;36584:1;36581;36577:9;36569:17;;36401:191;;;;:::o;36598:96::-;36635:7;36664:24;36682:5;36664:24;:::i;:::-;36653:35;;36598:96;;;:::o;36700:90::-;36734:7;36777:5;36770:13;36763:21;36752:32;;36700:90;;;:::o;36796:149::-;36832:7;36872:66;36865:5;36861:78;36850:89;;36796:149;;;:::o;36951:125::-;37017:7;37046:24;37064:5;37046:24;:::i;:::-;37035:35;;36951:125;;;:::o;37082:118::-;37119:7;37159:34;37152:5;37148:46;37137:57;;37082:118;;;:::o;37206:126::-;37243:7;37283:42;37276:5;37272:54;37261:65;;37206:126;;;:::o;37338:77::-;37375:7;37404:5;37393:16;;37338:77;;;:::o;37421:154::-;37505:6;37500:3;37495;37482:30;37567:1;37558:6;37553:3;37549:16;37542:27;37421:154;;;:::o;37581:307::-;37649:1;37659:113;37673:6;37670:1;37667:13;37659:113;;;37758:1;37753:3;37749:11;37743:18;37739:1;37734:3;37730:11;37723:39;37695:2;37692:1;37688:10;37683:15;;37659:113;;;37790:6;37787:1;37784:13;37781:101;;;37870:1;37861:6;37856:3;37852:16;37845:27;37781:101;37630:258;37581:307;;;:::o;37894:171::-;37933:3;37956:24;37974:5;37956:24;:::i;:::-;37947:33;;38002:4;37995:5;37992:15;37989:41;;;38010:18;;:::i;:::-;37989:41;38057:1;38050:5;38046:13;38039:20;;37894:171;;;:::o;38071:320::-;38115:6;38152:1;38146:4;38142:12;38132:22;;38199:1;38193:4;38189:12;38220:18;38210:81;;38276:4;38268:6;38264:17;38254:27;;38210:81;38338:2;38330:6;38327:14;38307:18;38304:38;38301:84;;;38357:18;;:::i;:::-;38301:84;38122:269;38071:320;;;:::o;38397:281::-;38480:27;38502:4;38480:27;:::i;:::-;38472:6;38468:40;38610:6;38598:10;38595:22;38574:18;38562:10;38559:34;38556:62;38553:88;;;38621:18;;:::i;:::-;38553:88;38661:10;38657:2;38650:22;38440:238;38397:281;;:::o;38684:233::-;38723:3;38746:24;38764:5;38746:24;:::i;:::-;38737:33;;38792:66;38785:5;38782:77;38779:103;;;38862:18;;:::i;:::-;38779:103;38909:1;38902:5;38898:13;38891:20;;38684:233;;;:::o;38923:176::-;38955:1;38972:20;38990:1;38972:20;:::i;:::-;38967:25;;39006:20;39024:1;39006:20;:::i;:::-;39001:25;;39045:1;39035:35;;39050:18;;:::i;:::-;39035:35;39091:1;39088;39084:9;39079:14;;38923:176;;;;:::o;39105:180::-;39153:77;39150:1;39143:88;39250:4;39247:1;39240:15;39274:4;39271:1;39264:15;39291:180;39339:77;39336:1;39329:88;39436:4;39433:1;39426:15;39460:4;39457:1;39450:15;39477:180;39525:77;39522:1;39515:88;39622:4;39619:1;39612:15;39646:4;39643:1;39636:15;39663:180;39711:77;39708:1;39701:88;39808:4;39805:1;39798:15;39832:4;39829:1;39822:15;39849:180;39897:77;39894:1;39887:88;39994:4;39991:1;39984:15;40018:4;40015:1;40008:15;40035:117;40144:1;40141;40134:12;40158:117;40267:1;40264;40257:12;40281:117;40390:1;40387;40380:12;40404:117;40513:1;40510;40503:12;40527:102;40568:6;40619:2;40615:7;40610:2;40603:5;40599:14;40595:28;40585:38;;40527:102;;;:::o;40635:221::-;40775:34;40771:1;40763:6;40759:14;40752:58;40844:4;40839:2;40831:6;40827:15;40820:29;40635:221;:::o;40862:156::-;41002:8;40998:1;40990:6;40986:14;40979:32;40862:156;:::o;41024:225::-;41164:34;41160:1;41152:6;41148:14;41141:58;41233:8;41228:2;41220:6;41216:15;41209:33;41024:225;:::o;41255:229::-;41395:34;41391:1;41383:6;41379:14;41372:58;41464:12;41459:2;41451:6;41447:15;41440:37;41255:229;:::o;41490:160::-;41630:12;41626:1;41618:6;41614:14;41607:36;41490:160;:::o;41656:222::-;41796:34;41792:1;41784:6;41780:14;41773:58;41865:5;41860:2;41852:6;41848:15;41841:30;41656:222;:::o;41884:224::-;42024:34;42020:1;42012:6;42008:14;42001:58;42093:7;42088:2;42080:6;42076:15;42069:32;41884:224;:::o;42114:244::-;42254:34;42250:1;42242:6;42238:14;42231:58;42323:27;42318:2;42310:6;42306:15;42299:52;42114:244;:::o;42364:168::-;42504:20;42500:1;42492:6;42488:14;42481:44;42364:168;:::o;42538:230::-;42678:34;42674:1;42666:6;42662:14;42655:58;42747:13;42742:2;42734:6;42730:15;42723:38;42538:230;:::o;42774:171::-;42914:23;42910:1;42902:6;42898:14;42891:47;42774:171;:::o;42951:225::-;43091:34;43087:1;43079:6;43075:14;43068:58;43160:8;43155:2;43147:6;43143:15;43136:33;42951:225;:::o;43182:182::-;43322:34;43318:1;43310:6;43306:14;43299:58;43182:182;:::o;43370:176::-;43510:28;43506:1;43498:6;43494:14;43487:52;43370:176;:::o;43552:237::-;43692:34;43688:1;43680:6;43676:14;43669:58;43761:20;43756:2;43748:6;43744:15;43737:45;43552:237;:::o;43795:172::-;43935:24;43931:1;43923:6;43919:14;43912:48;43795:172;:::o;43973:221::-;44113:34;44109:1;44101:6;44097:14;44090:58;44182:4;44177:2;44169:6;44165:15;44158:29;43973:221;:::o;44200:177::-;44340:29;44336:1;44328:6;44324:14;44317:53;44200:177;:::o;44383:114::-;;:::o;44503:222::-;44643:34;44639:1;44631:6;44627:14;44620:58;44712:5;44707:2;44699:6;44695:15;44688:30;44503:222;:::o;44731:238::-;44871:34;44867:1;44859:6;44855:14;44848:58;44940:21;44935:2;44927:6;44923:15;44916:46;44731:238;:::o;44975:179::-;45115:31;45111:1;45103:6;45099:14;45092:55;44975:179;:::o;45160:220::-;45300:34;45296:1;45288:6;45284:14;45277:58;45369:3;45364:2;45356:6;45352:15;45345:28;45160:220;:::o;45386:233::-;45526:34;45522:1;45514:6;45510:14;45503:58;45595:16;45590:2;45582:6;45578:15;45571:41;45386:233;:::o;45865:232::-;46005:34;46001:1;45993:6;45989:14;45982:58;46074:15;46069:2;46061:6;46057:15;46050:40;45865:232;:::o;46103:122::-;46176:24;46194:5;46176:24;:::i;:::-;46169:5;46166:35;46156:63;;46215:1;46212;46205:12;46156:63;46103:122;:::o;46231:116::-;46301:21;46316:5;46301:21;:::i;:::-;46294:5;46291:32;46281:60;;46337:1;46334;46327:12;46281:60;46231:116;:::o;46353:120::-;46425:23;46442:5;46425:23;:::i;:::-;46418:5;46415:34;46405:62;;46463:1;46460;46453:12;46405:62;46353:120;:::o;46479:180::-;46581:53;46628:5;46581:53;:::i;:::-;46574:5;46571:64;46561:92;;46649:1;46646;46639:12;46561:92;46479:180;:::o;46665:122::-;46738:24;46756:5;46738:24;:::i;:::-;46731:5;46728:35;46718:63;;46777:1;46774;46767:12;46718:63;46665:122;:::o

Swarm Source

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