ETH Price: $2,515.77 (+1.29%)

Token

Furried (FURIED)
 

Overview

Max Total Supply

300 FURIED

Holders

300

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
*长相思兮长相忆.eth
Balance
1 FURIED
0xc218f7b14d28f813DB62965814F49987a650F7a1
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:
Furried

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-11-12
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

//     ___                                  _ 
//   /'___)                   _            ( )
//  | (__  _   _  _ __  _ __ (_)   __     _| |
//  | ,__)( ) ( )( '__)( '__)| | /'__`\ /'_` |
//  | |   | (_) || |   | |   | |(  ___/( (_| |
//  (_)   `\___/'(_)   (_)   (_)`\____)`\__,_)
//   ..... the bears are back .... NOV 2022...                                         

/**
 * @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;
    }
}
pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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


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


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

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

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

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

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

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

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

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

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

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

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

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


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}
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);

    /**
     * @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);
}
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return (_currentIndex - _burnCounter) - 1;    
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                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 ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

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

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

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 TransferToNonERC721ReceiverImplementer();
                } 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.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n � 2 + 1, and for v in (302): v ? {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}
abstract contract EIP712 {
    /* solhint-disable var-name-mixedcase */
    // Cache the domain separator as an immutable value, but also store the chain id that it corresponds to, in order to
    // invalidate the cached domain separator if the chain id changes.
    bytes32 private immutable _CACHED_DOMAIN_SEPARATOR;
    uint256 private immutable _CACHED_CHAIN_ID;
    address private immutable _CACHED_THIS;

    bytes32 private immutable _HASHED_NAME;
    bytes32 private immutable _HASHED_VERSION;
    bytes32 private immutable _TYPE_HASH;

    /* solhint-enable var-name-mixedcase */

    /**
     * @dev Initializes the domain separator and parameter caches.
     *
     * The meaning of `name` and `version` is specified in
     * https://eips.ethereum.org/EIPS/eip-712#definition-of-domainseparator[EIP 712]:
     *
     * - `name`: the user readable name of the signing domain, i.e. the name of the DApp or the protocol.
     * - `version`: the current major version of the signing domain.
     *
     * NOTE: These parameters cannot be changed except through a xref:learn::upgrading-smart-contracts.adoc[smart
     * contract upgrade].
     */
    constructor(string memory name, string memory version) {
        bytes32 hashedName = keccak256(bytes(name));
        bytes32 hashedVersion = keccak256(bytes(version));
        bytes32 typeHash = keccak256(
            "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"
        );
        _HASHED_NAME = hashedName;
        _HASHED_VERSION = hashedVersion;
        _CACHED_CHAIN_ID = block.chainid;
        _CACHED_DOMAIN_SEPARATOR = _buildDomainSeparator(typeHash, hashedName, hashedVersion);
        _CACHED_THIS = address(this);
        _TYPE_HASH = typeHash;
    }

    /**
     * @dev Returns the domain separator for the current chain.
     */
    function _domainSeparatorV4() internal view returns (bytes32) {
        if (address(this) == _CACHED_THIS && block.chainid == _CACHED_CHAIN_ID) {
            return _CACHED_DOMAIN_SEPARATOR;
        } else {
            return _buildDomainSeparator(_TYPE_HASH, _HASHED_NAME, _HASHED_VERSION);
        }
    }

    function _buildDomainSeparator(
        bytes32 typeHash,
        bytes32 nameHash,
        bytes32 versionHash
    ) private view returns (bytes32) {
        return keccak256(abi.encode(typeHash, nameHash, versionHash, block.chainid, address(this)));
    }

    /**
     * @dev Given an already https://eips.ethereum.org/EIPS/eip-712#definition-of-hashstruct[hashed struct], this
     * function returns the hash of the fully encoded EIP712 message for this domain.
     *
     * This hash can be used together with {ECDSA-recover} to obtain the signer of a message. For example:
     *
     * ```solidity
     * bytes32 digest = _hashTypedDataV4(keccak256(abi.encode(
     *     keccak256("Mail(address to,string contents)"),
     *     mailTo,
     *     keccak256(bytes(mailContents))
     * )));
     * address signer = ECDSA.recover(digest, signature);
     * ```
     */
    function _hashTypedDataV4(bytes32 structHash) internal view virtual returns (bytes32) {
        return ECDSA.toTypedDataHash(_domainSeparatorV4(), structHash);
    }
}

contract Furried is Ownable, ERC721A {

    uint256 public walletMax = 2;
    using Strings for uint256;

    mapping(uint256 => string) private _tokenURIs;
    bool public publicSaleOpen = false;
    string public baseURI = "ipfs://willbeupdated/";
    string public _extension = ".json";
    uint256 public price = 0 ether;
    uint256 public maxSupply = 1533;

    constructor() ERC721A("Furried", "FURIED"){}
    
    function mintNFT(uint256 _quantity) public payable {
        require(_quantity > 0 && _quantity <= walletMax, "Wallet full, check max per wallet!");
        require(totalSupply() + _quantity <= maxSupply, "Reached max supply!");
        require(msg.value == price * _quantity, "Needs to send more ETH!");
        require(getMintedCount(msg.sender) + _quantity <= walletMax, "Exceeded max minting amount!");
        require(publicSaleOpen, "Public sale not yet started!");

        _safeMint(msg.sender, _quantity);

    }


    function sendGifts(address[] memory _wallets) external onlyOwner{
        require(totalSupply() + _wallets.length <= maxSupply, "Max Supply Reached.");
        for(uint i = 0; i < _wallets.length; i++)
            _safeMint(_wallets[i], 1);

    }
   function sendGiftsToWallet(address _wallet, uint256 _num) external onlyOwner{
               require(totalSupply() + _num <= maxSupply, "Max Supply Reached.");
            _safeMint(_wallet, _num);
    }


    function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
        require(
            _exists(_tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );

        return string(abi.encodePacked(baseURI, _tokenId.toString(), _extension));
    }

    function updateBaseURI(string memory _newBaseURI) onlyOwner public {
        baseURI = _newBaseURI;
    }
    function updateExtension(string memory _temp) onlyOwner public {
        _extension = _temp;
    }

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

    function setPrice(uint256 _price) public onlyOwner() {
        price = _price;
    }
    function setWalletMaxs(uint256 _walletMax) public onlyOwner() {
        walletMax = _walletMax;
    }

    function setmaxSupply(uint256 _supply) public onlyOwner() {
        require(_supply <= 5858, "Error: New max supply cant be higher than original max.");
        maxSupply = _supply;
    }

    function toggleSale() public onlyOwner() {
        publicSaleOpen = !publicSaleOpen;
    }


    function getBalance() public view returns(uint) {
        return address(this).balance;
    }

    function getMintedCount(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

    function withdraw() external onlyOwner {
        uint _balance = address(this).balance;
        payable(owner()).transfer(_balance); //Owner
    }

    function getOwnershipData(uint256 tokenId)
    external
    view
    returns (TokenOwnership memory)
  {
    return ownershipOf(tokenId);
  }
    receive() external payable {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_extension","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"baseURI","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":[],"name":"getBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getMintedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_wallets","type":"address[]"}],"name":"sendGifts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"sendGiftsToWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_walletMax","type":"uint256"}],"name":"setWalletMaxs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"setmaxSupply","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":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_temp","type":"string"}],"name":"updateExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526001805560026009556000600b60006101000a81548160ff0219169083151502179055506040518060400160405280601581526020017f697066733a2f2f77696c6c6265757064617465642f0000000000000000000000815250600c9080519060200190620000759291906200026f565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600d9080519060200190620000c39291906200026f565b506000600e556105fd600f55348015620000dc57600080fd5b506040518060400160405280600781526020017f46757272696564000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f4655524945440000000000000000000000000000000000000000000000000000815250620001696200015d620001a360201b60201c565b620001ab60201b60201c565b8160039080519060200190620001819291906200026f565b5080600490805190602001906200019a9291906200026f565b50505062000384565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200027d906200031f565b90600052602060002090601f016020900481019282620002a15760008555620002ed565b82601f10620002bc57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ec578251825591602001919060010190620002cf565b5b509050620002fc919062000300565b5090565b5b808211156200031b57600081600090555060010162000301565b5090565b600060028204905060018216806200033857607f821691505b602082108114156200034f576200034e62000355565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613f7780620003946000396000f3fe60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131a0565b61088c565b60405161025e9190613624565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b604051610289919061363f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613243565b610a00565b6040516102c691906135bd565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613117565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a91906137bc565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b60405161034591906137bc565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613243565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190613001565b610c6b565b005b3480156103ac57600080fd5b506103b5610c7b565b6040516103c2919061363f565b60405180910390f35b3480156103d757600080fd5b506103e0610d09565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613001565b610ddb565b005b34801561041757600080fd5b50610432600480360381019061042d9190613243565b610dfb565b005b34801561044057600080fd5b5061045b60048036038101906104569190613243565b610e81565b60405161046891906135bd565b60405180910390f35b34801561047d57600080fd5b50610486610e97565b604051610493919061363f565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612f94565b610f25565b6040516104d091906137bc565b60405180910390f35b3480156104e557600080fd5b506104ee610ff5565b6040516104fb919061363f565b60405180910390f35b34801561051057600080fd5b50610519611087565b005b34801561052757600080fd5b50610542600480360381019061053d9190613157565b61110f565b005b34801561055057600080fd5b5061055961122b565b005b34801561056757600080fd5b50610582600480360381019061057d91906131fa565b6112d3565b005b34801561059057600080fd5b50610599611369565b6040516105a691906135bd565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613243565b611392565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190613243565b611418565b60405161060c91906137a1565b60405180910390f35b61062f600480360381019061062a9190613243565b611430565b005b34801561063d57600080fd5b50610658600480360381019061065391906131fa565b6115db565b005b34801561066657600080fd5b5061066f611671565b60405161067c919061363f565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612f94565b611703565b6040516106b991906137bc565b60405180910390f35b3480156106ce57600080fd5b506106d7611715565b6040516106e491906137bc565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906130d7565b61171b565b005b34801561072257600080fd5b5061073d60048036038101906107389190613054565b611893565b005b34801561074b57600080fd5b5061076660048036038101906107619190613243565b6118e6565b604051610773919061363f565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613117565b611965565b005b3480156107b157600080fd5b506107ba611a46565b6040516107c791906137bc565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190612fc1565b611a4c565b6040516108049190613624565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612f94565b611ae0565b005b34801561084257600080fd5b5061084b611bd8565b6040516108589190613624565b60405180910390f35b34801561086d57600080fd5b50610876611beb565b60405161088391906137bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bf1565b5b9050919050565b60606003805461097d90613ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613ac1565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c5b565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610e81565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c96565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c96565b611a4c565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c9e565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c96565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611369565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613741565b60405180910390fd5b6116e2811115610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906136a1565b60405180910390fd5b80600f8190555050565b610c76838383611d50565b505050565b600d8054610c8890613ac1565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb490613ac1565b8015610d015780601f10610cd657610100808354040283529160200191610d01565b820191906000526020600020905b815481529060010190602001808311610ce457829003601f168201915b505050505081565b610d11611c96565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611369565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613741565b60405180910390fd5b6000479050610d92611369565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd7573d6000803e3d6000fd5b5050565b610df683838360405180602001604052806000815250611893565b505050565b610e03611c96565b73ffffffffffffffffffffffffffffffffffffffff16610e21611369565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613741565b60405180910390fd5b8060098190555050565b6000610e8c82612241565b600001519050919050565b600c8054610ea490613ac1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090613ac1565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c805461100490613ac1565b80601f016020809104026020016040519081016040528092919081815260200182805461103090613ac1565b801561107d5780601f106110525761010080835404028352916020019161107d565b820191906000526020600020905b81548152906001019060200180831161106057829003601f168201915b5050505050905090565b61108f611c96565b73ffffffffffffffffffffffffffffffffffffffff166110ad611369565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613741565b60405180910390fd5b61110d60006124bd565b565b611117611c96565b73ffffffffffffffffffffffffffffffffffffffff16611135611369565b73ffffffffffffffffffffffffffffffffffffffff161461118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290613741565b60405180910390fd5b600f548151611198610b8f565b6111a291906138e2565b11156111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613781565b60405180910390fd5b60005b81518110156112275761121482828151811061120557611204613c2b565b5b60200260200101516001612581565b808061121f90613b24565b9150506111e6565b5050565b611233611c96565b73ffffffffffffffffffffffffffffffffffffffff16611251611369565b73ffffffffffffffffffffffffffffffffffffffff16146112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90613741565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6112db611c96565b73ffffffffffffffffffffffffffffffffffffffff166112f9611369565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613741565b60405180910390fd5b80600d9080519060200190611365929190612cc7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61139a611c96565b73ffffffffffffffffffffffffffffffffffffffff166113b8611369565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590613741565b60405180910390fd5b80600e8190555050565b611420612d4d565b61142982612241565b9050919050565b60008111801561144257506009548111155b611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613701565b60405180910390fd5b600f548161148d610b8f565b61149791906138e2565b11156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613761565b60405180910390fd5b80600e546114e69190613969565b3414611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e90613681565b60405180910390fd5b6009548161153433611703565b61153e91906138e2565b111561157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906136e1565b60405180910390fd5b600b60009054906101000a900460ff166115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613661565b60405180910390fd5b6115d83382612581565b50565b6115e3611c96565b73ffffffffffffffffffffffffffffffffffffffff16611601611369565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613741565b60405180910390fd5b80600c908051906020019061166d929190612cc7565b5050565b60606004805461168090613ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac90613ac1565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b5050505050905090565b600061170e8261259f565b9050919050565b600e5481565b611723611c96565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611788576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611795611c96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611842611c96565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118879190613624565b60405180910390a35050565b61189e848484611d50565b6118aa8484848461266f565b6118e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118f182611c5b565b611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790613721565b60405180910390fd5b600c61193b836127fd565b600d60405160200161194f9392919061358c565b6040516020818303038152906040529050919050565b61196d611c96565b73ffffffffffffffffffffffffffffffffffffffff1661198b611369565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613741565b60405180910390fd5b600f54816119ed610b8f565b6119f791906138e2565b1115611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613781565b60405180910390fd5b611a428282612581565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae8611c96565b73ffffffffffffffffffffffffffffffffffffffff16611b06611369565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc3906136c1565b60405180910390fd5b611bd5816124bd565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c8f575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d5b82612241565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d82611c96565b73ffffffffffffffffffffffffffffffffffffffff161480611db55750611db48260000151611daf611c96565b611a4c565b5b80611dfa5750611dc3611c96565b73ffffffffffffffffffffffffffffffffffffffff16611de284610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f10858585600161295e565b611f206000848460000151611c9e565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121d1576001548110156121d05782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223a8585856001612964565b5050505050565b612249612d4d565b6000829050600154811015612486576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161248457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123685780925050506124b8565b5b60011561248357818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247e5780925050506124b8565b612369565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61259b82826040518060200160405280600081525061296a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612607576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006126908473ffffffffffffffffffffffffffffffffffffffff1661297c565b156127f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b9611c96565b8786866040518563ffffffff1660e01b81526004016126db94939291906135d8565b602060405180830381600087803b1580156126f557600080fd5b505af192505050801561272657506040513d601f19601f8201168201806040525081019061272391906131cd565b60015b6127a0573d8060008114612756576040519150601f19603f3d011682016040523d82523d6000602084013e61275b565b606091505b50600081511415612798576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f5565b600190505b949350505050565b60606000821415612845576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612959565b600082905060005b6000821461287757808061286090613b24565b915050600a826128709190613938565b915061284d565b60008167ffffffffffffffff81111561289357612892613c5a565b5b6040519080825280601f01601f1916602001820160405280156128c55781602001600182028036833780820191505090505b5090505b60008514612952576001826128de91906139c3565b9150600a856128ed9190613b6d565b60306128f991906138e2565b60f81b81838151811061290f5761290e613c2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561294b9190613938565b94506128c9565b8093505050505b919050565b50505050565b50505050565b612977838383600161298f565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129fd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a45600086838761295e565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612caa57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c5e5750612c5c600088848861266f565b155b15612c95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612be3565b508060018190555050612cc06000868387612964565b5050505050565b828054612cd390613ac1565b90600052602060002090601f016020900481019282612cf55760008555612d3c565b82601f10612d0e57805160ff1916838001178555612d3c565b82800160010185558215612d3c579182015b82811115612d3b578251825591602001919060010190612d20565b5b509050612d499190612d90565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612da9576000816000905550600101612d91565b5090565b6000612dc0612dbb846137fc565b6137d7565b90508083825260208201905082856020860282011115612de357612de2613c8e565b5b60005b85811015612e135781612df98882612ea1565b845260208401935060208301925050600181019050612de6565b5050509392505050565b6000612e30612e2b84613828565b6137d7565b905082815260208101848484011115612e4c57612e4b613c93565b5b612e57848285613a7f565b509392505050565b6000612e72612e6d84613859565b6137d7565b905082815260208101848484011115612e8e57612e8d613c93565b5b612e99848285613a7f565b509392505050565b600081359050612eb081613ee5565b92915050565b600082601f830112612ecb57612eca613c89565b5b8135612edb848260208601612dad565b91505092915050565b600081359050612ef381613efc565b92915050565b600081359050612f0881613f13565b92915050565b600081519050612f1d81613f13565b92915050565b600082601f830112612f3857612f37613c89565b5b8135612f48848260208601612e1d565b91505092915050565b600082601f830112612f6657612f65613c89565b5b8135612f76848260208601612e5f565b91505092915050565b600081359050612f8e81613f2a565b92915050565b600060208284031215612faa57612fa9613c9d565b5b6000612fb884828501612ea1565b91505092915050565b60008060408385031215612fd857612fd7613c9d565b5b6000612fe685828601612ea1565b9250506020612ff785828601612ea1565b9150509250929050565b60008060006060848603121561301a57613019613c9d565b5b600061302886828701612ea1565b935050602061303986828701612ea1565b925050604061304a86828701612f7f565b9150509250925092565b6000806000806080858703121561306e5761306d613c9d565b5b600061307c87828801612ea1565b945050602061308d87828801612ea1565b935050604061309e87828801612f7f565b925050606085013567ffffffffffffffff8111156130bf576130be613c98565b5b6130cb87828801612f23565b91505092959194509250565b600080604083850312156130ee576130ed613c9d565b5b60006130fc85828601612ea1565b925050602061310d85828601612ee4565b9150509250929050565b6000806040838503121561312e5761312d613c9d565b5b600061313c85828601612ea1565b925050602061314d85828601612f7f565b9150509250929050565b60006020828403121561316d5761316c613c9d565b5b600082013567ffffffffffffffff81111561318b5761318a613c98565b5b61319784828501612eb6565b91505092915050565b6000602082840312156131b6576131b5613c9d565b5b60006131c484828501612ef9565b91505092915050565b6000602082840312156131e3576131e2613c9d565b5b60006131f184828501612f0e565b91505092915050565b6000602082840312156132105761320f613c9d565b5b600082013567ffffffffffffffff81111561322e5761322d613c98565b5b61323a84828501612f51565b91505092915050565b60006020828403121561325957613258613c9d565b5b600061326784828501612f7f565b91505092915050565b613279816139f7565b82525050565b613288816139f7565b82525050565b61329781613a09565b82525050565b6132a681613a09565b82525050565b60006132b78261389f565b6132c181856138b5565b93506132d1818560208601613a8e565b6132da81613ca2565b840191505092915050565b60006132f0826138aa565b6132fa81856138c6565b935061330a818560208601613a8e565b61331381613ca2565b840191505092915050565b6000613329826138aa565b61333381856138d7565b9350613343818560208601613a8e565b80840191505092915050565b6000815461335c81613ac1565b61336681866138d7565b945060018216600081146133815760018114613392576133c5565b60ff198316865281860193506133c5565b61339b8561388a565b60005b838110156133bd5781548189015260018201915060208101905061339e565b838801955050505b50505092915050565b60006133db601c836138c6565b91506133e682613cb3565b602082019050919050565b60006133fe6017836138c6565b915061340982613cdc565b602082019050919050565b60006134216037836138c6565b915061342c82613d05565b604082019050919050565b60006134446026836138c6565b915061344f82613d54565b604082019050919050565b6000613467601c836138c6565b915061347282613da3565b602082019050919050565b600061348a6022836138c6565b915061349582613dcc565b604082019050919050565b60006134ad602c836138c6565b91506134b882613e1b565b604082019050919050565b60006134d06020836138c6565b91506134db82613e6a565b602082019050919050565b60006134f36013836138c6565b91506134fe82613e93565b602082019050919050565b60006135166013836138c6565b915061352182613ebc565b602082019050919050565b6060820160008201516135426000850182613270565b506020820151613555602085018261357d565b506040820151613568604085018261328e565b50505050565b61357781613a61565b82525050565b61358681613a6b565b82525050565b6000613598828661334f565b91506135a4828561331e565b91506135b0828461334f565b9150819050949350505050565b60006020820190506135d2600083018461327f565b92915050565b60006080820190506135ed600083018761327f565b6135fa602083018661327f565b613607604083018561356e565b818103606083015261361981846132ac565b905095945050505050565b6000602082019050613639600083018461329d565b92915050565b6000602082019050818103600083015261365981846132e5565b905092915050565b6000602082019050818103600083015261367a816133ce565b9050919050565b6000602082019050818103600083015261369a816133f1565b9050919050565b600060208201905081810360008301526136ba81613414565b9050919050565b600060208201905081810360008301526136da81613437565b9050919050565b600060208201905081810360008301526136fa8161345a565b9050919050565b6000602082019050818103600083015261371a8161347d565b9050919050565b6000602082019050818103600083015261373a816134a0565b9050919050565b6000602082019050818103600083015261375a816134c3565b9050919050565b6000602082019050818103600083015261377a816134e6565b9050919050565b6000602082019050818103600083015261379a81613509565b9050919050565b60006060820190506137b6600083018461352c565b92915050565b60006020820190506137d1600083018461356e565b92915050565b60006137e16137f2565b90506137ed8282613af3565b919050565b6000604051905090565b600067ffffffffffffffff82111561381757613816613c5a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561384357613842613c5a565b5b61384c82613ca2565b9050602081019050919050565b600067ffffffffffffffff82111561387457613873613c5a565b5b61387d82613ca2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138ed82613a61565b91506138f883613a61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392d5761392c613b9e565b5b828201905092915050565b600061394382613a61565b915061394e83613a61565b92508261395e5761395d613bcd565b5b828204905092915050565b600061397482613a61565b915061397f83613a61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139b8576139b7613b9e565b5b828202905092915050565b60006139ce82613a61565b91506139d983613a61565b9250828210156139ec576139eb613b9e565b5b828203905092915050565b6000613a0282613a41565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613aac578082015181840152602081019050613a91565b83811115613abb576000848401525b50505050565b60006002820490506001821680613ad957607f821691505b60208210811415613aed57613aec613bfc565b5b50919050565b613afc82613ca2565b810181811067ffffffffffffffff82111715613b1b57613b1a613c5a565b5b80604052505050565b6000613b2f82613a61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b6257613b61613b9e565b5b600182019050919050565b6000613b7882613a61565b9150613b8383613a61565b925082613b9357613b92613bcd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b613eee816139f7565b8114613ef957600080fd5b50565b613f0581613a09565b8114613f1057600080fd5b50565b613f1c81613a15565b8114613f2757600080fd5b50565b613f3381613a61565b8114613f3e57600080fd5b5056fea264697066735822122077d4a34ff53a0907ec4c1919556593153b063ce7e7147ad76bff2e47e25c0cf764736f6c63430008070033

Deployed Bytecode

0x60806040526004361061021e5760003560e01c80637d8966e411610123578063a035b1fe116100ab578063d5abeb011161006f578063d5abeb01146107a5578063e985e9c5146107d0578063f2fde38b1461080d578063f9e2379914610836578063fe3145241461086157610225565b8063a035b1fe146106c2578063a22cb465146106ed578063b88d4fde14610716578063c87b56dd1461073f578063d1f919ed1461077c57610225565b80639231ab2a116100f25780639231ab2a146105d85780639264274414610615578063931688cb1461063157806395d89b411461065a57806397d6696b1461068557610225565b80637d8966e4146105445780637e6182d91461055b5780638da5cb5b1461058457806391b7f5ed146105af57610225565b80633ccfd60b116101a65780636c0360eb116101755780636c0360eb1461047157806370a082311461049c578063714c5398146104d9578063715018a6146105045780637c8255db1461051b57610225565b80633ccfd60b146103cb57806342842e0e146103e25780635c0017c21461040b5780636352211e1461043457610225565b806312065fe0116101ed57806312065fe0146102f857806318160ddd14610323578063228025e81461034e57806323b872dd146103775780633ae1dd9d146103a057610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf57610225565b3661022557005b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906131a0565b61088c565b60405161025e9190613624565b60405180910390f35b34801561027357600080fd5b5061027c61096e565b604051610289919061363f565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b49190613243565b610a00565b6040516102c691906135bd565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190613117565b610a7c565b005b34801561030457600080fd5b5061030d610b87565b60405161031a91906137bc565b60405180910390f35b34801561032f57600080fd5b50610338610b8f565b60405161034591906137bc565b60405180910390f35b34801561035a57600080fd5b5061037560048036038101906103709190613243565b610ba0565b005b34801561038357600080fd5b5061039e60048036038101906103999190613001565b610c6b565b005b3480156103ac57600080fd5b506103b5610c7b565b6040516103c2919061363f565b60405180910390f35b3480156103d757600080fd5b506103e0610d09565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613001565b610ddb565b005b34801561041757600080fd5b50610432600480360381019061042d9190613243565b610dfb565b005b34801561044057600080fd5b5061045b60048036038101906104569190613243565b610e81565b60405161046891906135bd565b60405180910390f35b34801561047d57600080fd5b50610486610e97565b604051610493919061363f565b60405180910390f35b3480156104a857600080fd5b506104c360048036038101906104be9190612f94565b610f25565b6040516104d091906137bc565b60405180910390f35b3480156104e557600080fd5b506104ee610ff5565b6040516104fb919061363f565b60405180910390f35b34801561051057600080fd5b50610519611087565b005b34801561052757600080fd5b50610542600480360381019061053d9190613157565b61110f565b005b34801561055057600080fd5b5061055961122b565b005b34801561056757600080fd5b50610582600480360381019061057d91906131fa565b6112d3565b005b34801561059057600080fd5b50610599611369565b6040516105a691906135bd565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613243565b611392565b005b3480156105e457600080fd5b506105ff60048036038101906105fa9190613243565b611418565b60405161060c91906137a1565b60405180910390f35b61062f600480360381019061062a9190613243565b611430565b005b34801561063d57600080fd5b50610658600480360381019061065391906131fa565b6115db565b005b34801561066657600080fd5b5061066f611671565b60405161067c919061363f565b60405180910390f35b34801561069157600080fd5b506106ac60048036038101906106a79190612f94565b611703565b6040516106b991906137bc565b60405180910390f35b3480156106ce57600080fd5b506106d7611715565b6040516106e491906137bc565b60405180910390f35b3480156106f957600080fd5b50610714600480360381019061070f91906130d7565b61171b565b005b34801561072257600080fd5b5061073d60048036038101906107389190613054565b611893565b005b34801561074b57600080fd5b5061076660048036038101906107619190613243565b6118e6565b604051610773919061363f565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190613117565b611965565b005b3480156107b157600080fd5b506107ba611a46565b6040516107c791906137bc565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190612fc1565b611a4c565b6040516108049190613624565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190612f94565b611ae0565b005b34801561084257600080fd5b5061084b611bd8565b6040516108589190613624565b60405180910390f35b34801561086d57600080fd5b50610876611beb565b60405161088391906137bc565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610967575061096682611bf1565b5b9050919050565b60606003805461097d90613ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546109a990613ac1565b80156109f65780601f106109cb576101008083540402835291602001916109f6565b820191906000526020600020905b8154815290600101906020018083116109d957829003601f168201915b5050505050905090565b6000610a0b82611c5b565b610a41576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610e81565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aef576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0e611c96565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b405750610b3e81610b39611c96565b611a4c565b155b15610b77576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b82838383611c9e565b505050565b600047905090565b600060016002546001540303905090565b610ba8611c96565b73ffffffffffffffffffffffffffffffffffffffff16610bc6611369565b73ffffffffffffffffffffffffffffffffffffffff1614610c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1390613741565b60405180910390fd5b6116e2811115610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906136a1565b60405180910390fd5b80600f8190555050565b610c76838383611d50565b505050565b600d8054610c8890613ac1565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb490613ac1565b8015610d015780601f10610cd657610100808354040283529160200191610d01565b820191906000526020600020905b815481529060010190602001808311610ce457829003601f168201915b505050505081565b610d11611c96565b73ffffffffffffffffffffffffffffffffffffffff16610d2f611369565b73ffffffffffffffffffffffffffffffffffffffff1614610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613741565b60405180910390fd5b6000479050610d92611369565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dd7573d6000803e3d6000fd5b5050565b610df683838360405180602001604052806000815250611893565b505050565b610e03611c96565b73ffffffffffffffffffffffffffffffffffffffff16610e21611369565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e90613741565b60405180910390fd5b8060098190555050565b6000610e8c82612241565b600001519050919050565b600c8054610ea490613ac1565b80601f0160208091040260200160405190810160405280929190818152602001828054610ed090613ac1565b8015610f1d5780601f10610ef257610100808354040283529160200191610f1d565b820191906000526020600020905b815481529060010190602001808311610f0057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f8d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600c805461100490613ac1565b80601f016020809104026020016040519081016040528092919081815260200182805461103090613ac1565b801561107d5780601f106110525761010080835404028352916020019161107d565b820191906000526020600020905b81548152906001019060200180831161106057829003601f168201915b5050505050905090565b61108f611c96565b73ffffffffffffffffffffffffffffffffffffffff166110ad611369565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90613741565b60405180910390fd5b61110d60006124bd565b565b611117611c96565b73ffffffffffffffffffffffffffffffffffffffff16611135611369565b73ffffffffffffffffffffffffffffffffffffffff161461118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290613741565b60405180910390fd5b600f548151611198610b8f565b6111a291906138e2565b11156111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90613781565b60405180910390fd5b60005b81518110156112275761121482828151811061120557611204613c2b565b5b60200260200101516001612581565b808061121f90613b24565b9150506111e6565b5050565b611233611c96565b73ffffffffffffffffffffffffffffffffffffffff16611251611369565b73ffffffffffffffffffffffffffffffffffffffff16146112a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129e90613741565b60405180910390fd5b600b60009054906101000a900460ff1615600b60006101000a81548160ff021916908315150217905550565b6112db611c96565b73ffffffffffffffffffffffffffffffffffffffff166112f9611369565b73ffffffffffffffffffffffffffffffffffffffff161461134f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134690613741565b60405180910390fd5b80600d9080519060200190611365929190612cc7565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61139a611c96565b73ffffffffffffffffffffffffffffffffffffffff166113b8611369565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590613741565b60405180910390fd5b80600e8190555050565b611420612d4d565b61142982612241565b9050919050565b60008111801561144257506009548111155b611481576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147890613701565b60405180910390fd5b600f548161148d610b8f565b61149791906138e2565b11156114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613761565b60405180910390fd5b80600e546114e69190613969565b3414611527576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151e90613681565b60405180910390fd5b6009548161153433611703565b61153e91906138e2565b111561157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906136e1565b60405180910390fd5b600b60009054906101000a900460ff166115ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c590613661565b60405180910390fd5b6115d83382612581565b50565b6115e3611c96565b73ffffffffffffffffffffffffffffffffffffffff16611601611369565b73ffffffffffffffffffffffffffffffffffffffff1614611657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164e90613741565b60405180910390fd5b80600c908051906020019061166d929190612cc7565b5050565b60606004805461168090613ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546116ac90613ac1565b80156116f95780601f106116ce576101008083540402835291602001916116f9565b820191906000526020600020905b8154815290600101906020018083116116dc57829003601f168201915b5050505050905090565b600061170e8261259f565b9050919050565b600e5481565b611723611c96565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611788576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611795611c96565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611842611c96565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118879190613624565b60405180910390a35050565b61189e848484611d50565b6118aa8484848461266f565b6118e0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606118f182611c5b565b611930576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192790613721565b60405180910390fd5b600c61193b836127fd565b600d60405160200161194f9392919061358c565b6040516020818303038152906040529050919050565b61196d611c96565b73ffffffffffffffffffffffffffffffffffffffff1661198b611369565b73ffffffffffffffffffffffffffffffffffffffff16146119e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d890613741565b60405180910390fd5b600f54816119ed610b8f565b6119f791906138e2565b1115611a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2f90613781565b60405180910390fd5b611a428282612581565b5050565b600f5481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ae8611c96565b73ffffffffffffffffffffffffffffffffffffffff16611b06611369565b73ffffffffffffffffffffffffffffffffffffffff1614611b5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5390613741565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc3906136c1565b60405180910390fd5b611bd5816124bd565b50565b600b60009054906101000a900460ff1681565b60095481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600060015482108015611c8f575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611d5b82612241565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611d82611c96565b73ffffffffffffffffffffffffffffffffffffffff161480611db55750611db48260000151611daf611c96565b611a4c565b5b80611dfa5750611dc3611c96565b73ffffffffffffffffffffffffffffffffffffffff16611de284610a00565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611e33576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611e9c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f10858585600161295e565b611f206000848460000151611c9e565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166005600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121d1576001548110156121d05782600001516005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461223a8585856001612964565b5050505050565b612249612d4d565b6000829050600154811015612486576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161248457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123685780925050506124b8565b5b60011561248357818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461247e5780925050506124b8565b612369565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61259b82826040518060200160405280600081525061296a565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612607576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b60006126908473ffffffffffffffffffffffffffffffffffffffff1661297c565b156127f0578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126b9611c96565b8786866040518563ffffffff1660e01b81526004016126db94939291906135d8565b602060405180830381600087803b1580156126f557600080fd5b505af192505050801561272657506040513d601f19601f8201168201806040525081019061272391906131cd565b60015b6127a0573d8060008114612756576040519150601f19603f3d011682016040523d82523d6000602084013e61275b565b606091505b50600081511415612798576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506127f5565b600190505b949350505050565b60606000821415612845576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612959565b600082905060005b6000821461287757808061286090613b24565b915050600a826128709190613938565b915061284d565b60008167ffffffffffffffff81111561289357612892613c5a565b5b6040519080825280601f01601f1916602001820160405280156128c55781602001600182028036833780820191505090505b5090505b60008514612952576001826128de91906139c3565b9150600a856128ed9190613b6d565b60306128f991906138e2565b60f81b81838151811061290f5761290e613c2b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561294b9190613938565b94506128c9565b8093505050505b919050565b50505050565b50505050565b612977838383600161298f565b505050565b600080823b905060008111915050919050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156129fd576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612a38576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a45600086838761295e565b83600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612caa57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612c5e5750612c5c600088848861266f565b155b15612c95576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612be3565b508060018190555050612cc06000868387612964565b5050505050565b828054612cd390613ac1565b90600052602060002090601f016020900481019282612cf55760008555612d3c565b82601f10612d0e57805160ff1916838001178555612d3c565b82800160010185558215612d3c579182015b82811115612d3b578251825591602001919060010190612d20565b5b509050612d499190612d90565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612da9576000816000905550600101612d91565b5090565b6000612dc0612dbb846137fc565b6137d7565b90508083825260208201905082856020860282011115612de357612de2613c8e565b5b60005b85811015612e135781612df98882612ea1565b845260208401935060208301925050600181019050612de6565b5050509392505050565b6000612e30612e2b84613828565b6137d7565b905082815260208101848484011115612e4c57612e4b613c93565b5b612e57848285613a7f565b509392505050565b6000612e72612e6d84613859565b6137d7565b905082815260208101848484011115612e8e57612e8d613c93565b5b612e99848285613a7f565b509392505050565b600081359050612eb081613ee5565b92915050565b600082601f830112612ecb57612eca613c89565b5b8135612edb848260208601612dad565b91505092915050565b600081359050612ef381613efc565b92915050565b600081359050612f0881613f13565b92915050565b600081519050612f1d81613f13565b92915050565b600082601f830112612f3857612f37613c89565b5b8135612f48848260208601612e1d565b91505092915050565b600082601f830112612f6657612f65613c89565b5b8135612f76848260208601612e5f565b91505092915050565b600081359050612f8e81613f2a565b92915050565b600060208284031215612faa57612fa9613c9d565b5b6000612fb884828501612ea1565b91505092915050565b60008060408385031215612fd857612fd7613c9d565b5b6000612fe685828601612ea1565b9250506020612ff785828601612ea1565b9150509250929050565b60008060006060848603121561301a57613019613c9d565b5b600061302886828701612ea1565b935050602061303986828701612ea1565b925050604061304a86828701612f7f565b9150509250925092565b6000806000806080858703121561306e5761306d613c9d565b5b600061307c87828801612ea1565b945050602061308d87828801612ea1565b935050604061309e87828801612f7f565b925050606085013567ffffffffffffffff8111156130bf576130be613c98565b5b6130cb87828801612f23565b91505092959194509250565b600080604083850312156130ee576130ed613c9d565b5b60006130fc85828601612ea1565b925050602061310d85828601612ee4565b9150509250929050565b6000806040838503121561312e5761312d613c9d565b5b600061313c85828601612ea1565b925050602061314d85828601612f7f565b9150509250929050565b60006020828403121561316d5761316c613c9d565b5b600082013567ffffffffffffffff81111561318b5761318a613c98565b5b61319784828501612eb6565b91505092915050565b6000602082840312156131b6576131b5613c9d565b5b60006131c484828501612ef9565b91505092915050565b6000602082840312156131e3576131e2613c9d565b5b60006131f184828501612f0e565b91505092915050565b6000602082840312156132105761320f613c9d565b5b600082013567ffffffffffffffff81111561322e5761322d613c98565b5b61323a84828501612f51565b91505092915050565b60006020828403121561325957613258613c9d565b5b600061326784828501612f7f565b91505092915050565b613279816139f7565b82525050565b613288816139f7565b82525050565b61329781613a09565b82525050565b6132a681613a09565b82525050565b60006132b78261389f565b6132c181856138b5565b93506132d1818560208601613a8e565b6132da81613ca2565b840191505092915050565b60006132f0826138aa565b6132fa81856138c6565b935061330a818560208601613a8e565b61331381613ca2565b840191505092915050565b6000613329826138aa565b61333381856138d7565b9350613343818560208601613a8e565b80840191505092915050565b6000815461335c81613ac1565b61336681866138d7565b945060018216600081146133815760018114613392576133c5565b60ff198316865281860193506133c5565b61339b8561388a565b60005b838110156133bd5781548189015260018201915060208101905061339e565b838801955050505b50505092915050565b60006133db601c836138c6565b91506133e682613cb3565b602082019050919050565b60006133fe6017836138c6565b915061340982613cdc565b602082019050919050565b60006134216037836138c6565b915061342c82613d05565b604082019050919050565b60006134446026836138c6565b915061344f82613d54565b604082019050919050565b6000613467601c836138c6565b915061347282613da3565b602082019050919050565b600061348a6022836138c6565b915061349582613dcc565b604082019050919050565b60006134ad602c836138c6565b91506134b882613e1b565b604082019050919050565b60006134d06020836138c6565b91506134db82613e6a565b602082019050919050565b60006134f36013836138c6565b91506134fe82613e93565b602082019050919050565b60006135166013836138c6565b915061352182613ebc565b602082019050919050565b6060820160008201516135426000850182613270565b506020820151613555602085018261357d565b506040820151613568604085018261328e565b50505050565b61357781613a61565b82525050565b61358681613a6b565b82525050565b6000613598828661334f565b91506135a4828561331e565b91506135b0828461334f565b9150819050949350505050565b60006020820190506135d2600083018461327f565b92915050565b60006080820190506135ed600083018761327f565b6135fa602083018661327f565b613607604083018561356e565b818103606083015261361981846132ac565b905095945050505050565b6000602082019050613639600083018461329d565b92915050565b6000602082019050818103600083015261365981846132e5565b905092915050565b6000602082019050818103600083015261367a816133ce565b9050919050565b6000602082019050818103600083015261369a816133f1565b9050919050565b600060208201905081810360008301526136ba81613414565b9050919050565b600060208201905081810360008301526136da81613437565b9050919050565b600060208201905081810360008301526136fa8161345a565b9050919050565b6000602082019050818103600083015261371a8161347d565b9050919050565b6000602082019050818103600083015261373a816134a0565b9050919050565b6000602082019050818103600083015261375a816134c3565b9050919050565b6000602082019050818103600083015261377a816134e6565b9050919050565b6000602082019050818103600083015261379a81613509565b9050919050565b60006060820190506137b6600083018461352c565b92915050565b60006020820190506137d1600083018461356e565b92915050565b60006137e16137f2565b90506137ed8282613af3565b919050565b6000604051905090565b600067ffffffffffffffff82111561381757613816613c5a565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561384357613842613c5a565b5b61384c82613ca2565b9050602081019050919050565b600067ffffffffffffffff82111561387457613873613c5a565b5b61387d82613ca2565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006138ed82613a61565b91506138f883613a61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561392d5761392c613b9e565b5b828201905092915050565b600061394382613a61565b915061394e83613a61565b92508261395e5761395d613bcd565b5b828204905092915050565b600061397482613a61565b915061397f83613a61565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139b8576139b7613b9e565b5b828202905092915050565b60006139ce82613a61565b91506139d983613a61565b9250828210156139ec576139eb613b9e565b5b828203905092915050565b6000613a0282613a41565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015613aac578082015181840152602081019050613a91565b83811115613abb576000848401525b50505050565b60006002820490506001821680613ad957607f821691505b60208210811415613aed57613aec613bfc565b5b50919050565b613afc82613ca2565b810181811067ffffffffffffffff82111715613b1b57613b1a613c5a565b5b80604052505050565b6000613b2f82613a61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b6257613b61613b9e565b5b600182019050919050565b6000613b7882613a61565b9150613b8383613a61565b925082613b9357613b92613bcd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c69632073616c65206e6f742079657420737461727465642100000000600082015250565b7f4e6565647320746f2073656e64206d6f72652045544821000000000000000000600082015250565b7f4572726f723a204e6577206d617820737570706c792063616e7420626520686960008201527f67686572207468616e206f726967696e616c206d61782e000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d6178206d696e74696e6720616d6f756e742100000000600082015250565b7f57616c6c65742066756c6c2c20636865636b206d6178207065722077616c6c6560008201527f7421000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f52656163686564206d617820737570706c792100000000000000000000000000600082015250565b7f4d617820537570706c7920526561636865642e00000000000000000000000000600082015250565b613eee816139f7565b8114613ef957600080fd5b50565b613f0581613a09565b8114613f1057600080fd5b50565b613f1c81613a15565b8114613f2757600080fd5b50565b613f3381613a61565b8114613f3e57600080fd5b5056fea264697066735822122077d4a34ff53a0907ec4c1919556593153b063ce7e7147ad76bff2e47e25c0cf764736f6c63430008070033

Deployed Bytecode Sourcemap

55359:3148:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25724:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29084:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30587:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30150:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57945:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25375:277;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57645:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31444:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55621:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58165:149;;;;;;;;;;;;;:::i;:::-;;31685:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57534:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28893:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55567:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26093:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57342:92;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14490:94;;;;;;;;;;;;;:::i;:::-;;56335:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57843:92;;;;;;;;;;;;;:::i;:::-;;57234:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13839:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57442:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58322:147;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55795:530;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57121:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29253:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58048:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55662:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30863:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31941:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56808:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56592:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55699:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31213:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14739:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55526:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55405:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25724:305;25826:4;25878:25;25863:40;;;:11;:40;;;;:105;;;;25935:33;25920:48;;;:11;:48;;;;25863:105;:158;;;;25985:36;26009:11;25985:23;:36::i;:::-;25863:158;25843:178;;25724:305;;;:::o;29084:100::-;29138:13;29171:5;29164:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29084:100;:::o;30587:204::-;30655:7;30680:16;30688:7;30680;:16::i;:::-;30675:64;;30705:34;;;;;;;;;;;;;;30675:64;30759:15;:24;30775:7;30759:24;;;;;;;;;;;;;;;;;;;;;30752:31;;30587:204;;;:::o;30150:371::-;30223:13;30239:24;30255:7;30239:15;:24::i;:::-;30223:40;;30284:5;30278:11;;:2;:11;;;30274:48;;;30298:24;;;;;;;;;;;;;;30274:48;30355:5;30339:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;30365:37;30382:5;30389:12;:10;:12::i;:::-;30365:16;:37::i;:::-;30364:38;30339:63;30335:138;;;30426:35;;;;;;;;;;;;;;30335:138;30485:28;30494:2;30498:7;30507:5;30485:8;:28::i;:::-;30212:309;30150:371;;:::o;57945:95::-;57987:4;58011:21;58004:28;;57945:95;:::o;25375:277::-;25419:7;25628:1;25612:12;;25596:13;;:28;25595:34;25588:41;;25375:277;:::o;57645:190::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57733:4:::1;57722:7;:15;;57714:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;57820:7;57808:9;:19;;;;57645:190:::0;:::o;31444:170::-;31578:28;31588:4;31594:2;31598:7;31578:9;:28::i;:::-;31444:170;;;:::o;55621:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58165:149::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58215:13:::1;58231:21;58215:37;;58271:7;:5;:7::i;:::-;58263:25;;:35;58289:8;58263:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;58204:110;58165:149::o:0;31685:185::-;31823:39;31840:4;31846:2;31850:7;31823:39;;;;;;;;;;;;:16;:39::i;:::-;31685:185;;;:::o;57534:103::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57619:10:::1;57607:9;:22;;;;57534:103:::0;:::o;28893:124::-;28957:7;28984:20;28996:7;28984:11;:20::i;:::-;:25;;;28977:32;;28893:124;;;:::o;55567:47::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26093:206::-;26157:7;26198:1;26181:19;;:5;:19;;;26177:60;;;26209:28;;;;;;;;;;;;;;26177:60;26263:12;:19;26276:5;26263:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;26255:36;;26248:43;;26093:206;;;:::o;57342:92::-;57386:13;57419:7;57412:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57342:92;:::o;14490:94::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14555:21:::1;14573:1;14555:9;:21::i;:::-;14490:94::o:0;56335:252::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56453:9:::1;;56434:8;:15;56418:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;56410:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;56501:6;56497:80;56517:8;:15;56513:1;:19;56497:80;;;56552:25;56562:8;56571:1;56562:11;;;;;;;;:::i;:::-;;;;;;;;56575:1;56552:9;:25::i;:::-;56534:3;;;;;:::i;:::-;;;;56497:80;;;;56335:252:::0;:::o;57843:92::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57913:14:::1;;;;;;;;;;;57912:15;57895:14;;:32;;;;;;;;;;;;;;;;;;57843:92::o:0;57234:100::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57321:5:::1;57308:10;:18;;;;;;;;;;;;:::i;:::-;;57234:100:::0;:::o;13839:87::-;13885:7;13912:6;;;;;;;;;;;13905:13;;13839:87;:::o;57442:86::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57514:6:::1;57506:5;:14;;;;57442:86:::0;:::o;58322:147::-;58403:21;;:::i;:::-;58443:20;58455:7;58443:11;:20::i;:::-;58436:27;;58322:147;;;:::o;55795:530::-;55877:1;55865:9;:13;:39;;;;;55895:9;;55882;:22;;55865:39;55857:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;55991:9;;55978;55962:13;:11;:13::i;:::-;:25;;;;:::i;:::-;:38;;55954:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56064:9;56056:5;;:17;;;;:::i;:::-;56043:9;:30;56035:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;56162:9;;56149;56120:26;56135:10;56120:14;:26::i;:::-;:38;;;;:::i;:::-;:51;;56112:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;56223:14;;;;;;;;;;;56215:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;56283:32;56293:10;56305:9;56283;:32::i;:::-;55795:530;:::o;57121:107::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57209:11:::1;57199:7;:21;;;;;;;;;;;;:::i;:::-;;57121:107:::0;:::o;29253:104::-;29309:13;29342:7;29335:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29253:104;:::o;58048:109::-;58108:7;58131:20;58145:5;58131:13;:20::i;:::-;58124:27;;58048:109;;;:::o;55662:30::-;;;;:::o;30863:279::-;30966:12;:10;:12::i;:::-;30954:24;;:8;:24;;;30950:54;;;30987:17;;;;;;;;;;;;;;30950:54;31062:8;31017:18;:32;31036:12;:10;:12::i;:::-;31017:32;;;;;;;;;;;;;;;:42;31050:8;31017:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31115:8;31086:48;;31101:12;:10;:12::i;:::-;31086:48;;;31125:8;31086:48;;;;;;:::i;:::-;;;;;;;;30863:279;;:::o;31941:342::-;32108:28;32118:4;32124:2;32128:7;32108:9;:28::i;:::-;32152:48;32175:4;32181:2;32185:7;32194:5;32152:22;:48::i;:::-;32147:129;;32224:40;;;;;;;;;;;;;;32147:129;31941:342;;;;:::o;56808:305::-;56882:13;56930:17;56938:8;56930:7;:17::i;:::-;56908:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;57063:7;57072:19;:8;:17;:19::i;:::-;57093:10;57046:58;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57032:73;;56808:305;;;:::o;56592:206::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56718:9:::1;;56710:4;56694:13;:11;:13::i;:::-;:20;;;;:::i;:::-;:33;;56686:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;56766:24;56776:7;56785:4;56766:9;:24::i;:::-;56592:206:::0;;:::o;55699:31::-;;;;:::o;31213:164::-;31310:4;31334:18;:25;31353:5;31334:25;;;;;;;;;;;;;;;:35;31360:8;31334:35;;;;;;;;;;;;;;;;;;;;;;;;;31327:42;;31213:164;;;;:::o;14739:192::-;14070:12;:10;:12::i;:::-;14059:23;;:7;:5;:7::i;:::-;:23;;;14051:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14848:1:::1;14828:22;;:8;:22;;;;14820:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14904:19;14914:8;14904:9;:19::i;:::-;14739:192:::0;:::o;55526:34::-;;;;;;;;;;;;;:::o;55405:28::-;;;;:::o;15844:157::-;15929:4;15968:25;15953:40;;;:11;:40;;;;15946:47;;15844:157;;;:::o;32538:144::-;32595:4;32629:13;;32619:7;:23;:55;;;;;32647:11;:20;32659:7;32647:20;;;;;;;;;;;:27;;;;;;;;;;;;32646:28;32619:55;32612:62;;32538:144;;;:::o;979:98::-;1032:7;1059:10;1052:17;;979:98;:::o;39744:196::-;39886:2;39859:15;:24;39875:7;39859:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;39924:7;39920:2;39904:28;;39913:5;39904:28;;;;;;;;;;;;39744:196;;;:::o;35245:2112::-;35360:35;35398:20;35410:7;35398:11;:20::i;:::-;35360:58;;35431:22;35473:13;:18;;;35457:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;35508:50;35525:13;:18;;;35545:12;:10;:12::i;:::-;35508:16;:50::i;:::-;35457:101;:154;;;;35599:12;:10;:12::i;:::-;35575:36;;:20;35587:7;35575:11;:20::i;:::-;:36;;;35457:154;35431:181;;35630:17;35625:66;;35656:35;;;;;;;;;;;;;;35625:66;35728:4;35706:26;;:13;:18;;;:26;;;35702:67;;35741:28;;;;;;;;;;;;;;35702:67;35798:1;35784:16;;:2;:16;;;35780:52;;;35809:23;;;;;;;;;;;;;;35780:52;35845:43;35867:4;35873:2;35877:7;35886:1;35845:21;:43::i;:::-;35953:49;35970:1;35974:7;35983:13;:18;;;35953:8;:49::i;:::-;36328:1;36298:12;:18;36311:4;36298:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36372:1;36344:12;:16;36357:2;36344:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36418:2;36390:11;:20;36402:7;36390:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;36480:15;36435:11;:20;36447:7;36435:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;36748:19;36780:1;36770:7;:11;36748:33;;36841:1;36800:43;;:11;:24;36812:11;36800:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;36796:445;;;37025:13;;37011:11;:27;37007:219;;;37095:13;:18;;;37063:11;:24;37075:11;37063:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37178:13;:28;;;37136:11;:24;37148:11;37136:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37007:219;36796:445;36273:979;37288:7;37284:2;37269:27;;37278:4;37269:27;;;;;;;;;;;;37307:42;37328:4;37334:2;37338:7;37347:1;37307:20;:42::i;:::-;35349:2008;;35245:2112;;;:::o;27748:1083::-;27809:21;;:::i;:::-;27843:12;27858:7;27843:22;;27914:13;;27907:4;:20;27903:861;;;27948:31;27982:11;:17;27994:4;27982:17;;;;;;;;;;;27948:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28023:9;:16;;;28018:731;;28094:1;28068:28;;:9;:14;;;:28;;;28064:101;;28132:9;28125:16;;;;;;28064:101;28469:261;28476:4;28469:261;;;28509:6;;;;;;;;28554:11;:17;28566:4;28554:17;;;;;;;;;;;28542:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28628:1;28602:28;;:9;:14;;;:28;;;28598:109;;28670:9;28663:16;;;;;;28598:109;28469:261;;;28018:731;27929:835;27903:861;28792:31;;;;;;;;;;;;;;27748:1083;;;;:::o;14939:173::-;14995:16;15014:6;;;;;;;;;;;14995:25;;15040:8;15031:6;;:17;;;;;;;;;;;;;;;;;;15095:8;15064:40;;15085:8;15064:40;;;;;;;;;;;;14984:128;14939:173;:::o;32690:104::-;32759:27;32769:2;32773:8;32759:27;;;;;;;;;;;;:9;:27::i;:::-;32690:104;;:::o;26381:207::-;26442:7;26483:1;26466:19;;:5;:19;;;26462:59;;;26494:27;;;;;;;;;;;;;;26462:59;26547:12;:19;26560:5;26547:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;26539:41;;26532:48;;26381:207;;;:::o;40505:790::-;40660:4;40681:15;:2;:13;;;:15::i;:::-;40677:611;;;40733:2;40717:36;;;40754:12;:10;:12::i;:::-;40768:4;40774:7;40783:5;40717:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40713:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40980:1;40963:6;:13;:18;40959:259;;;41013:40;;;;;;;;;;;;;;40959:259;41168:6;41162:13;41153:6;41149:2;41145:15;41138:38;40713:520;40850:45;;;40840:55;;;:6;:55;;;;40833:62;;;;;40677:611;41272:4;41265:11;;40505:790;;;;;;;:::o;1444:723::-;1500:13;1730:1;1721:5;:10;1717:53;;;1748:10;;;;;;;;;;;;;;;;;;;;;1717:53;1780:12;1795:5;1780:20;;1811:14;1836:78;1851:1;1843:4;:9;1836:78;;1869:8;;;;;:::i;:::-;;;;1900:2;1892:10;;;;;:::i;:::-;;;1836:78;;;1924:19;1956:6;1946:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1924:39;;1974:154;1990:1;1981:5;:10;1974:154;;2018:1;2008:11;;;;;:::i;:::-;;;2085:2;2077:5;:10;;;;:::i;:::-;2064:2;:24;;;;:::i;:::-;2051:39;;2034:6;2041;2034:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2114:2;2105:11;;;;;:::i;:::-;;;1974:154;;;2152:6;2138:21;;;;;1444:723;;;;:::o;41943:159::-;;;;;:::o;42761:158::-;;;;;:::o;33157:163::-;33280:32;33286:2;33290:8;33300:5;33307:4;33280:5;:32::i;:::-;33157:163;;;:::o;3909:387::-;3969:4;4177:12;4244:7;4232:20;4224:28;;4287:1;4280:4;:8;4273:15;;;3909:387;;;:::o;33579:1412::-;33718:20;33741:13;;33718:36;;33783:1;33769:16;;:2;:16;;;33765:48;;;33794:19;;;;;;;;;;;;;;33765:48;33840:1;33828:8;:13;33824:44;;;33850:18;;;;;;;;;;;;;;33824:44;33881:61;33911:1;33915:2;33919:12;33933:8;33881:21;:61::i;:::-;34254:8;34219:12;:16;34232:2;34219:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34318:8;34278:12;:16;34291:2;34278:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34377:2;34344:11;:25;34356:12;34344:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;34444:15;34394:11;:25;34406:12;34394:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;34477:20;34500:12;34477:35;;34534:9;34529:328;34549:8;34545:1;:12;34529:328;;;34613:12;34609:2;34588:38;;34605:1;34588:38;;;;;;;;;;;;34649:4;:68;;;;;34658:59;34689:1;34693:2;34697:12;34711:5;34658:22;:59::i;:::-;34657:60;34649:68;34645:164;;;34749:40;;;;;;;;;;;;;;34645:164;34827:14;;;;;;;34559:3;;;;;;;34529:328;;;;34889:12;34873:13;:28;;;;34194:719;34923:60;34952:1;34956:2;34960:12;34974:8;34923:20;:60::i;:::-;33707:1284;33579:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:137::-;2308:5;2346:6;2333:20;2324:29;;2362:32;2388:5;2362:32;:::i;:::-;2263:137;;;;:::o;2406:141::-;2462:5;2493:6;2487:13;2478:22;;2509:32;2535:5;2509:32;:::i;:::-;2406:141;;;;:::o;2566:338::-;2621:5;2670:3;2663:4;2655:6;2651:17;2647:27;2637:122;;2678:79;;:::i;:::-;2637:122;2795:6;2782:20;2820:78;2894:3;2886:6;2879:4;2871:6;2867:17;2820:78;:::i;:::-;2811:87;;2627:277;2566:338;;;;:::o;2924:340::-;2980:5;3029:3;3022:4;3014:6;3010:17;3006:27;2996:122;;3037:79;;:::i;:::-;2996:122;3154:6;3141:20;3179:79;3254:3;3246:6;3239:4;3231:6;3227:17;3179:79;:::i;:::-;3170:88;;2986:278;2924:340;;;;:::o;3270:139::-;3316:5;3354:6;3341:20;3332:29;;3370:33;3397:5;3370:33;:::i;:::-;3270:139;;;;:::o;3415:329::-;3474:6;3523:2;3511:9;3502:7;3498:23;3494:32;3491:119;;;3529:79;;:::i;:::-;3491:119;3649:1;3674:53;3719:7;3710:6;3699:9;3695:22;3674:53;:::i;:::-;3664:63;;3620:117;3415:329;;;;:::o;3750:474::-;3818:6;3826;3875:2;3863:9;3854:7;3850:23;3846:32;3843:119;;;3881:79;;:::i;:::-;3843:119;4001:1;4026:53;4071:7;4062:6;4051:9;4047:22;4026:53;:::i;:::-;4016:63;;3972:117;4128:2;4154:53;4199:7;4190:6;4179:9;4175:22;4154:53;:::i;:::-;4144:63;;4099:118;3750:474;;;;;:::o;4230:619::-;4307:6;4315;4323;4372:2;4360:9;4351:7;4347:23;4343:32;4340:119;;;4378:79;;:::i;:::-;4340:119;4498:1;4523:53;4568:7;4559:6;4548:9;4544:22;4523:53;:::i;:::-;4513:63;;4469:117;4625:2;4651:53;4696:7;4687:6;4676:9;4672:22;4651:53;:::i;:::-;4641:63;;4596:118;4753:2;4779:53;4824:7;4815:6;4804:9;4800:22;4779:53;:::i;:::-;4769:63;;4724:118;4230:619;;;;;:::o;4855:943::-;4950:6;4958;4966;4974;5023:3;5011:9;5002:7;4998:23;4994:33;4991:120;;;5030:79;;:::i;:::-;4991:120;5150:1;5175:53;5220:7;5211:6;5200:9;5196:22;5175:53;:::i;:::-;5165:63;;5121:117;5277:2;5303:53;5348:7;5339:6;5328:9;5324:22;5303:53;:::i;:::-;5293:63;;5248:118;5405:2;5431:53;5476:7;5467:6;5456:9;5452:22;5431:53;:::i;:::-;5421:63;;5376:118;5561:2;5550:9;5546:18;5533:32;5592:18;5584:6;5581:30;5578:117;;;5614:79;;:::i;:::-;5578:117;5719:62;5773:7;5764:6;5753:9;5749:22;5719:62;:::i;:::-;5709:72;;5504:287;4855:943;;;;;;;:::o;5804:468::-;5869:6;5877;5926:2;5914:9;5905:7;5901:23;5897:32;5894:119;;;5932:79;;:::i;:::-;5894:119;6052:1;6077:53;6122:7;6113:6;6102:9;6098:22;6077:53;:::i;:::-;6067:63;;6023:117;6179:2;6205:50;6247:7;6238:6;6227:9;6223:22;6205:50;:::i;:::-;6195:60;;6150:115;5804:468;;;;;:::o;6278:474::-;6346:6;6354;6403:2;6391:9;6382:7;6378:23;6374:32;6371:119;;;6409:79;;:::i;:::-;6371:119;6529:1;6554:53;6599:7;6590:6;6579:9;6575:22;6554:53;:::i;:::-;6544:63;;6500:117;6656:2;6682:53;6727:7;6718:6;6707:9;6703:22;6682:53;:::i;:::-;6672:63;;6627:118;6278:474;;;;;:::o;6758:539::-;6842:6;6891:2;6879:9;6870:7;6866:23;6862:32;6859:119;;;6897:79;;:::i;:::-;6859:119;7045:1;7034:9;7030:17;7017:31;7075:18;7067:6;7064:30;7061:117;;;7097:79;;:::i;:::-;7061:117;7202:78;7272:7;7263:6;7252:9;7248:22;7202:78;:::i;:::-;7192:88;;6988:302;6758:539;;;;:::o;7303:327::-;7361:6;7410:2;7398:9;7389:7;7385:23;7381:32;7378:119;;;7416:79;;:::i;:::-;7378:119;7536:1;7561:52;7605:7;7596:6;7585:9;7581:22;7561:52;:::i;:::-;7551:62;;7507:116;7303:327;;;;:::o;7636:349::-;7705:6;7754:2;7742:9;7733:7;7729:23;7725:32;7722:119;;;7760:79;;:::i;:::-;7722:119;7880:1;7905:63;7960:7;7951:6;7940:9;7936:22;7905:63;:::i;:::-;7895:73;;7851:127;7636:349;;;;:::o;7991:509::-;8060:6;8109:2;8097:9;8088:7;8084:23;8080:32;8077:119;;;8115:79;;:::i;:::-;8077:119;8263:1;8252:9;8248:17;8235:31;8293:18;8285:6;8282:30;8279:117;;;8315:79;;:::i;:::-;8279:117;8420:63;8475:7;8466:6;8455:9;8451:22;8420:63;:::i;:::-;8410:73;;8206:287;7991:509;;;;:::o;8506:329::-;8565:6;8614:2;8602:9;8593:7;8589:23;8585:32;8582:119;;;8620:79;;:::i;:::-;8582:119;8740:1;8765:53;8810:7;8801:6;8790:9;8786:22;8765:53;:::i;:::-;8755:63;;8711:117;8506:329;;;;:::o;8841:108::-;8918:24;8936:5;8918:24;:::i;:::-;8913:3;8906:37;8841:108;;:::o;8955:118::-;9042:24;9060:5;9042:24;:::i;:::-;9037:3;9030:37;8955:118;;:::o;9079:99::-;9150:21;9165:5;9150:21;:::i;:::-;9145:3;9138:34;9079:99;;:::o;9184:109::-;9265:21;9280:5;9265:21;:::i;:::-;9260:3;9253:34;9184:109;;:::o;9299:360::-;9385:3;9413:38;9445:5;9413:38;:::i;:::-;9467:70;9530:6;9525:3;9467:70;:::i;:::-;9460:77;;9546:52;9591:6;9586:3;9579:4;9572:5;9568:16;9546:52;:::i;:::-;9623:29;9645:6;9623:29;:::i;:::-;9618:3;9614:39;9607:46;;9389:270;9299:360;;;;:::o;9665:364::-;9753:3;9781:39;9814:5;9781:39;:::i;:::-;9836:71;9900:6;9895:3;9836:71;:::i;:::-;9829:78;;9916:52;9961:6;9956:3;9949:4;9942:5;9938:16;9916:52;:::i;:::-;9993:29;10015:6;9993:29;:::i;:::-;9988:3;9984:39;9977:46;;9757:272;9665:364;;;;:::o;10035:377::-;10141:3;10169:39;10202:5;10169:39;:::i;:::-;10224:89;10306:6;10301:3;10224:89;:::i;:::-;10217:96;;10322:52;10367:6;10362:3;10355:4;10348:5;10344:16;10322:52;:::i;:::-;10399:6;10394:3;10390:16;10383:23;;10145:267;10035:377;;;;:::o;10442:845::-;10545:3;10582:5;10576:12;10611:36;10637:9;10611:36;:::i;:::-;10663:89;10745:6;10740:3;10663:89;:::i;:::-;10656:96;;10783:1;10772:9;10768:17;10799:1;10794:137;;;;10945:1;10940:341;;;;10761:520;;10794:137;10878:4;10874:9;10863;10859:25;10854:3;10847:38;10914:6;10909:3;10905:16;10898:23;;10794:137;;10940:341;11007:38;11039:5;11007:38;:::i;:::-;11067:1;11081:154;11095:6;11092:1;11089:13;11081:154;;;11169:7;11163:14;11159:1;11154:3;11150:11;11143:35;11219:1;11210:7;11206:15;11195:26;;11117:4;11114:1;11110:12;11105:17;;11081:154;;;11264:6;11259:3;11255:16;11248:23;;10947:334;;10761:520;;10549:738;;10442:845;;;;:::o;11293:366::-;11435:3;11456:67;11520:2;11515:3;11456:67;:::i;:::-;11449:74;;11532:93;11621:3;11532:93;:::i;:::-;11650:2;11645:3;11641:12;11634:19;;11293:366;;;:::o;11665:::-;11807:3;11828:67;11892:2;11887:3;11828:67;:::i;:::-;11821:74;;11904:93;11993:3;11904:93;:::i;:::-;12022:2;12017:3;12013:12;12006:19;;11665:366;;;:::o;12037:::-;12179:3;12200:67;12264:2;12259:3;12200:67;:::i;:::-;12193:74;;12276:93;12365:3;12276:93;:::i;:::-;12394:2;12389:3;12385:12;12378:19;;12037:366;;;:::o;12409:::-;12551:3;12572:67;12636:2;12631:3;12572:67;:::i;:::-;12565:74;;12648:93;12737:3;12648:93;:::i;:::-;12766:2;12761:3;12757:12;12750:19;;12409:366;;;:::o;12781:::-;12923:3;12944:67;13008:2;13003:3;12944:67;:::i;:::-;12937:74;;13020:93;13109:3;13020:93;:::i;:::-;13138:2;13133:3;13129:12;13122:19;;12781:366;;;:::o;13153:::-;13295:3;13316:67;13380:2;13375:3;13316:67;:::i;:::-;13309:74;;13392:93;13481:3;13392:93;:::i;:::-;13510:2;13505:3;13501:12;13494:19;;13153:366;;;:::o;13525:::-;13667:3;13688:67;13752:2;13747:3;13688:67;:::i;:::-;13681:74;;13764:93;13853:3;13764:93;:::i;:::-;13882:2;13877:3;13873:12;13866:19;;13525:366;;;:::o;13897:::-;14039:3;14060:67;14124:2;14119:3;14060:67;:::i;:::-;14053:74;;14136:93;14225:3;14136:93;:::i;:::-;14254:2;14249:3;14245:12;14238:19;;13897:366;;;:::o;14269:::-;14411:3;14432:67;14496:2;14491:3;14432:67;:::i;:::-;14425:74;;14508:93;14597:3;14508:93;:::i;:::-;14626:2;14621:3;14617:12;14610:19;;14269:366;;;:::o;14641:::-;14783:3;14804:67;14868:2;14863:3;14804:67;:::i;:::-;14797:74;;14880:93;14969:3;14880:93;:::i;:::-;14998:2;14993:3;14989:12;14982:19;;14641:366;;;:::o;15083:697::-;15242:4;15237:3;15233:14;15329:4;15322:5;15318:16;15312:23;15348:63;15405:4;15400:3;15396:14;15382:12;15348:63;:::i;:::-;15257:164;15513:4;15506:5;15502:16;15496:23;15532:61;15587:4;15582:3;15578:14;15564:12;15532:61;:::i;:::-;15431:172;15687:4;15680:5;15676:16;15670:23;15706:57;15757:4;15752:3;15748:14;15734:12;15706:57;:::i;:::-;15613:160;15211:569;15083:697;;:::o;15786:118::-;15873:24;15891:5;15873:24;:::i;:::-;15868:3;15861:37;15786:118;;:::o;15910:105::-;15985:23;16002:5;15985:23;:::i;:::-;15980:3;15973:36;15910:105;;:::o;16021:583::-;16243:3;16265:92;16353:3;16344:6;16265:92;:::i;:::-;16258:99;;16374:95;16465:3;16456:6;16374:95;:::i;:::-;16367:102;;16486:92;16574:3;16565:6;16486:92;:::i;:::-;16479:99;;16595:3;16588:10;;16021:583;;;;;;:::o;16610:222::-;16703:4;16741:2;16730:9;16726:18;16718:26;;16754:71;16822:1;16811:9;16807:17;16798:6;16754:71;:::i;:::-;16610:222;;;;:::o;16838:640::-;17033:4;17071:3;17060:9;17056:19;17048:27;;17085:71;17153:1;17142:9;17138:17;17129:6;17085:71;:::i;:::-;17166:72;17234:2;17223:9;17219:18;17210:6;17166:72;:::i;:::-;17248;17316:2;17305:9;17301:18;17292:6;17248:72;:::i;:::-;17367:9;17361:4;17357:20;17352:2;17341:9;17337:18;17330:48;17395:76;17466:4;17457:6;17395:76;:::i;:::-;17387:84;;16838:640;;;;;;;:::o;17484:210::-;17571:4;17609:2;17598:9;17594:18;17586:26;;17622:65;17684:1;17673:9;17669:17;17660:6;17622:65;:::i;:::-;17484:210;;;;:::o;17700:313::-;17813:4;17851:2;17840:9;17836:18;17828:26;;17900:9;17894:4;17890:20;17886:1;17875:9;17871:17;17864:47;17928:78;18001:4;17992:6;17928:78;:::i;:::-;17920:86;;17700:313;;;;:::o;18019:419::-;18185:4;18223:2;18212:9;18208:18;18200:26;;18272:9;18266:4;18262:20;18258:1;18247:9;18243:17;18236:47;18300:131;18426:4;18300:131;:::i;:::-;18292:139;;18019:419;;;:::o;18444:::-;18610:4;18648:2;18637:9;18633:18;18625:26;;18697:9;18691:4;18687:20;18683:1;18672:9;18668:17;18661:47;18725:131;18851:4;18725:131;:::i;:::-;18717:139;;18444:419;;;:::o;18869:::-;19035:4;19073:2;19062:9;19058:18;19050:26;;19122:9;19116:4;19112:20;19108:1;19097:9;19093:17;19086:47;19150:131;19276:4;19150:131;:::i;:::-;19142:139;;18869:419;;;:::o;19294:::-;19460:4;19498:2;19487:9;19483:18;19475:26;;19547:9;19541:4;19537:20;19533:1;19522:9;19518:17;19511:47;19575:131;19701:4;19575:131;:::i;:::-;19567:139;;19294:419;;;:::o;19719:::-;19885:4;19923:2;19912:9;19908:18;19900:26;;19972:9;19966:4;19962:20;19958:1;19947:9;19943:17;19936:47;20000:131;20126:4;20000:131;:::i;:::-;19992:139;;19719:419;;;:::o;20144:::-;20310:4;20348:2;20337:9;20333:18;20325:26;;20397:9;20391:4;20387:20;20383:1;20372:9;20368:17;20361:47;20425:131;20551:4;20425:131;:::i;:::-;20417:139;;20144:419;;;:::o;20569:::-;20735:4;20773:2;20762:9;20758:18;20750:26;;20822:9;20816:4;20812:20;20808:1;20797:9;20793:17;20786:47;20850:131;20976:4;20850:131;:::i;:::-;20842:139;;20569:419;;;:::o;20994:::-;21160:4;21198:2;21187:9;21183:18;21175:26;;21247:9;21241:4;21237:20;21233:1;21222:9;21218:17;21211:47;21275:131;21401:4;21275:131;:::i;:::-;21267:139;;20994:419;;;:::o;21419:::-;21585:4;21623:2;21612:9;21608:18;21600:26;;21672:9;21666:4;21662:20;21658:1;21647:9;21643:17;21636:47;21700:131;21826:4;21700:131;:::i;:::-;21692:139;;21419:419;;;:::o;21844:::-;22010:4;22048:2;22037:9;22033:18;22025:26;;22097:9;22091:4;22087:20;22083:1;22072:9;22068:17;22061:47;22125:131;22251:4;22125:131;:::i;:::-;22117:139;;21844:419;;;:::o;22269:346::-;22424:4;22462:2;22451:9;22447:18;22439:26;;22475:133;22605:1;22594:9;22590:17;22581:6;22475:133;:::i;:::-;22269:346;;;;:::o;22621:222::-;22714:4;22752:2;22741:9;22737:18;22729:26;;22765:71;22833:1;22822:9;22818:17;22809:6;22765:71;:::i;:::-;22621:222;;;;:::o;22849:129::-;22883:6;22910:20;;:::i;:::-;22900:30;;22939:33;22967:4;22959:6;22939:33;:::i;:::-;22849:129;;;:::o;22984:75::-;23017:6;23050:2;23044:9;23034:19;;22984:75;:::o;23065:311::-;23142:4;23232:18;23224:6;23221:30;23218:56;;;23254:18;;:::i;:::-;23218:56;23304:4;23296:6;23292:17;23284:25;;23364:4;23358;23354:15;23346:23;;23065:311;;;:::o;23382:307::-;23443:4;23533:18;23525:6;23522:30;23519:56;;;23555:18;;:::i;:::-;23519:56;23593:29;23615:6;23593:29;:::i;:::-;23585:37;;23677:4;23671;23667:15;23659:23;;23382:307;;;:::o;23695:308::-;23757:4;23847:18;23839:6;23836:30;23833:56;;;23869:18;;:::i;:::-;23833:56;23907:29;23929:6;23907:29;:::i;:::-;23899:37;;23991:4;23985;23981:15;23973:23;;23695:308;;;:::o;24009:141::-;24058:4;24081:3;24073:11;;24104:3;24101:1;24094:14;24138:4;24135:1;24125:18;24117:26;;24009:141;;;:::o;24156:98::-;24207:6;24241:5;24235:12;24225:22;;24156:98;;;:::o;24260:99::-;24312:6;24346:5;24340:12;24330:22;;24260:99;;;:::o;24365:168::-;24448:11;24482:6;24477:3;24470:19;24522:4;24517:3;24513:14;24498:29;;24365:168;;;;:::o;24539:169::-;24623:11;24657:6;24652:3;24645:19;24697:4;24692:3;24688:14;24673:29;;24539:169;;;;:::o;24714:148::-;24816:11;24853:3;24838:18;;24714:148;;;;:::o;24868:305::-;24908:3;24927:20;24945:1;24927:20;:::i;:::-;24922:25;;24961:20;24979:1;24961:20;:::i;:::-;24956:25;;25115:1;25047:66;25043:74;25040:1;25037:81;25034:107;;;25121:18;;:::i;:::-;25034:107;25165:1;25162;25158:9;25151:16;;24868:305;;;;:::o;25179:185::-;25219:1;25236:20;25254:1;25236:20;:::i;:::-;25231:25;;25270:20;25288:1;25270:20;:::i;:::-;25265:25;;25309:1;25299:35;;25314:18;;:::i;:::-;25299:35;25356:1;25353;25349:9;25344:14;;25179:185;;;;:::o;25370:348::-;25410:7;25433:20;25451:1;25433:20;:::i;:::-;25428:25;;25467:20;25485:1;25467:20;:::i;:::-;25462:25;;25655:1;25587:66;25583:74;25580:1;25577:81;25572:1;25565:9;25558:17;25554:105;25551:131;;;25662:18;;:::i;:::-;25551:131;25710:1;25707;25703:9;25692:20;;25370:348;;;;:::o;25724:191::-;25764:4;25784:20;25802:1;25784:20;:::i;:::-;25779:25;;25818:20;25836:1;25818:20;:::i;:::-;25813:25;;25857:1;25854;25851:8;25848:34;;;25862:18;;:::i;:::-;25848:34;25907:1;25904;25900:9;25892:17;;25724:191;;;;:::o;25921:96::-;25958:7;25987:24;26005:5;25987:24;:::i;:::-;25976:35;;25921:96;;;:::o;26023:90::-;26057:7;26100:5;26093:13;26086:21;26075:32;;26023:90;;;:::o;26119:149::-;26155:7;26195:66;26188:5;26184:78;26173:89;;26119:149;;;:::o;26274:126::-;26311:7;26351:42;26344:5;26340:54;26329:65;;26274:126;;;:::o;26406:77::-;26443:7;26472:5;26461:16;;26406:77;;;:::o;26489:101::-;26525:7;26565:18;26558:5;26554:30;26543:41;;26489:101;;;:::o;26596:154::-;26680:6;26675:3;26670;26657:30;26742:1;26733:6;26728:3;26724:16;26717:27;26596:154;;;:::o;26756:307::-;26824:1;26834:113;26848:6;26845:1;26842:13;26834:113;;;26933:1;26928:3;26924:11;26918:18;26914:1;26909:3;26905:11;26898:39;26870:2;26867:1;26863:10;26858:15;;26834:113;;;26965:6;26962:1;26959:13;26956:101;;;27045:1;27036:6;27031:3;27027:16;27020:27;26956:101;26805:258;26756:307;;;:::o;27069:320::-;27113:6;27150:1;27144:4;27140:12;27130:22;;27197:1;27191:4;27187:12;27218:18;27208:81;;27274:4;27266:6;27262:17;27252:27;;27208:81;27336:2;27328:6;27325:14;27305:18;27302:38;27299:84;;;27355:18;;:::i;:::-;27299:84;27120:269;27069:320;;;:::o;27395:281::-;27478:27;27500:4;27478:27;:::i;:::-;27470:6;27466:40;27608:6;27596:10;27593:22;27572:18;27560:10;27557:34;27554:62;27551:88;;;27619:18;;:::i;:::-;27551:88;27659:10;27655:2;27648:22;27438:238;27395:281;;:::o;27682:233::-;27721:3;27744:24;27762:5;27744:24;:::i;:::-;27735:33;;27790:66;27783:5;27780:77;27777:103;;;27860:18;;:::i;:::-;27777:103;27907:1;27900:5;27896:13;27889:20;;27682:233;;;:::o;27921:176::-;27953:1;27970:20;27988:1;27970:20;:::i;:::-;27965:25;;28004:20;28022:1;28004:20;:::i;:::-;27999:25;;28043:1;28033:35;;28048:18;;:::i;:::-;28033:35;28089:1;28086;28082:9;28077:14;;27921:176;;;;:::o;28103:180::-;28151:77;28148:1;28141:88;28248:4;28245:1;28238:15;28272:4;28269:1;28262:15;28289:180;28337:77;28334:1;28327:88;28434:4;28431:1;28424:15;28458:4;28455:1;28448:15;28475:180;28523:77;28520:1;28513:88;28620:4;28617:1;28610:15;28644:4;28641:1;28634:15;28661:180;28709:77;28706:1;28699:88;28806:4;28803:1;28796:15;28830:4;28827:1;28820:15;28847:180;28895:77;28892:1;28885:88;28992:4;28989:1;28982:15;29016:4;29013:1;29006:15;29033:117;29142:1;29139;29132:12;29156:117;29265:1;29262;29255:12;29279:117;29388:1;29385;29378:12;29402:117;29511:1;29508;29501:12;29525:117;29634:1;29631;29624:12;29648:102;29689:6;29740:2;29736:7;29731:2;29724:5;29720:14;29716:28;29706:38;;29648:102;;;:::o;29756:178::-;29896:30;29892:1;29884:6;29880:14;29873:54;29756:178;:::o;29940:173::-;30080:25;30076:1;30068:6;30064:14;30057:49;29940:173;:::o;30119:242::-;30259:34;30255:1;30247:6;30243:14;30236:58;30328:25;30323:2;30315:6;30311:15;30304:50;30119:242;:::o;30367:225::-;30507:34;30503:1;30495:6;30491:14;30484:58;30576:8;30571:2;30563:6;30559:15;30552:33;30367:225;:::o;30598:178::-;30738:30;30734:1;30726:6;30722:14;30715:54;30598:178;:::o;30782:221::-;30922:34;30918:1;30910:6;30906:14;30899:58;30991:4;30986:2;30978:6;30974:15;30967:29;30782:221;:::o;31009:231::-;31149:34;31145:1;31137:6;31133:14;31126:58;31218:14;31213:2;31205:6;31201:15;31194:39;31009:231;:::o;31246:182::-;31386:34;31382:1;31374:6;31370:14;31363:58;31246:182;:::o;31434:169::-;31574:21;31570:1;31562:6;31558:14;31551:45;31434:169;:::o;31609:::-;31749:21;31745:1;31737:6;31733:14;31726:45;31609:169;:::o;31784:122::-;31857:24;31875:5;31857:24;:::i;:::-;31850:5;31847:35;31837:63;;31896:1;31893;31886:12;31837:63;31784:122;:::o;31912:116::-;31982:21;31997:5;31982:21;:::i;:::-;31975:5;31972:32;31962:60;;32018:1;32015;32008:12;31962:60;31912:116;:::o;32034:120::-;32106:23;32123:5;32106:23;:::i;:::-;32099:5;32096:34;32086:62;;32144:1;32141;32134:12;32086:62;32034:120;:::o;32160:122::-;32233:24;32251:5;32233:24;:::i;:::-;32226:5;32223:35;32213:63;;32272:1;32269;32262:12;32213:63;32160:122;:::o

Swarm Source

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