ETH Price: $2,674.44 (+1.41%)

Token

The Italians (ITALIANS)
 

Overview

Max Total Supply

4,444 ITALIANS

Holders

325

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
15 ITALIANS
0x0ab34110eb01ded26b12147a704b271534d8b289
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:
TheItalians

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-07-13
*/

// _______    ______    ______  ________   ______                                         
//|       \  /      \  /      \|        \ /      \                                        
//| $$$$$$$\|  $$$$$$\|  $$$$$$\\$$$$$$$$|  $$$$$$\                                       
//| $$__/ $$| $$__| $$| $$___\$$  | $$   | $$__| $$                                       
//| $$    $$| $$    $$ \$$    \   | $$   | $$    $$                                       
//| $$$$$$$ | $$$$$$$$ _\$$$$$$\  | $$   | $$$$$$$$                                       
//| $$      | $$  | $$|  \__| $$  | $$   | $$  | $$                                       
//| $$      | $$  | $$ \$$    $$  | $$   | $$  | $$                                       
// \$$       \$$   \$$  \$$$$$$    \$$    \$$   \$$                                 
//  ______   _______    ______    ______   __    __  ________  ________  ________  ______ 
// /      \ |       \  /      \  /      \ |  \  |  \|        \|        \|        \|      \
//|  $$$$$$\| $$$$$$$\|  $$$$$$\|  $$$$$$\| $$  | $$| $$$$$$$$ \$$$$$$$$ \$$$$$$$$ \$$$$$$
//| $$___\$$| $$__/ $$| $$__| $$| $$ __\$$| $$__| $$| $$__       | $$      | $$     | $$  
// \$$    \ | $$    $$| $$    $$| $$|    \| $$    $$| $$  \      | $$      | $$     | $$  
// _\$$$$$$\| $$$$$$$ | $$$$$$$$| $$ \$$$$| $$$$$$$$| $$$$$      | $$      | $$     | $$  
//|  \__| $$| $$      | $$  | $$| $$__| $$| $$  | $$| $$_____    | $$      | $$    _| $$_ 
// \$$    $$| $$      | $$  | $$ \$$    $$| $$  | $$| $$     \   | $$      | $$   |   $$ \
//  \$$$$$$  \$$       \$$   \$$  \$$$$$$  \$$   \$$ \$$$$$$$$    \$$       \$$    \$$$$$$                                                                                      
// _______  ______  ________  ________   ______                                           
//|       \|      \|        \|        \ /      \                                          
//| $$$$$$$\\$$$$$$ \$$$$$$$$ \$$$$$$$$|  $$$$$$\                                         
//| $$__/ $$ | $$      /  $$     /  $$ | $$__| $$                                         
//| $$    $$ | $$     /  $$     /  $$  | $$    $$                                         
//| $$$$$$$  | $$    /  $$     /  $$   | $$$$$$$$                                         
//| $$      _| $$_  /  $$___  /  $$___ | $$  | $$                                         
//| $$     |   $$ \|  $$    \|  $$    \| $$  | $$                                         
// \$$      \$$$$$$ \$$$$$$$$ \$$$$$$$$ \$$   \$$                                                   



// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    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;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    // ==============================
    //            IERC721
    // ==============================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

    // ==============================
    //        IERC721Metadata
    // ==============================

    /**
     * @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);

    // ==============================
    //            IERC2309
    // ==============================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev ERC721 token receiver interface.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with `_mintERC2309`.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to `_mintERC2309`
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

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

    // The number of tokens burned.
    uint256 private _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 `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

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

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

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see `_totalMinted`.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Sets the auxiliary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // 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.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> BITPOS_EXTRA_DATA);
    }

    /**
     * Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * 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) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, BITMASK_ADDRESS)
            // `owner | (block.timestamp << BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

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

    /**
     * @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, _toString(tokenId))) : '';
    }

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << BITPOS_NEXT_INITIALIZED`.
            result := shl(BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

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

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), 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-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 {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity);

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @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 for each mint.
     */
    function _mint(address to, uint256 quantity) 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` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _currentIndex = end;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

            _currentIndex = startTokenId + quantity;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    /**
     * @dev Returns whether the `approvedAddress` is equals to `from` or `msgSender`.
     */
    function _isOwnerOrApproved(
        address approvedAddress,
        address from,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `from` to the lower 160 bits, in case the upper bits somehow aren't clean.
            from := and(from, BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, BITMASK_ADDRESS)
            // `msgSender == from || msgSender == approvedAddress`.
            result := or(eq(msgSender, from), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @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 transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // 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 {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (BITMASK_BURNED | BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

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

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

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << BITPOS_EXTRA_DATA;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * 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 _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @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 {}

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

            // Cache the end of the memory to calculate the length later.
            let end := ptr

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

// File: contracts/TheItalians.sol

pragma solidity ^0.8.0;

contract TheItalians is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;

  string  public  baseTokenURI = "";

  uint256 public  maxSupply = 4444;
  uint256 public  FREE_MINTS_PER_TX = 2;
  uint256 public  FREE_MINT_PRICE = 0.000 ether;
  uint256 public  TOTAL_FREE_MINTS = 4444;
  bool public isPublicSaleActive = false;

  constructor() ERC721A("The Italians", "ITALIANS") {

  }

  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require( totalSupply() + numberOfTokens <= maxSupply,"Maximum supply exceeded");
    require( numberOfTokens <= FREE_MINTS_PER_TX ,"Maximum two minuted per txn.");
   

    if(totalSupply() + numberOfTokens > TOTAL_FREE_MINTS || numberOfTokens > FREE_MINTS_PER_TX){
        require(
            (FREE_MINT_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
        );
        
    }
         require(balanceOf(msg.sender) <= 2, "Maximum 3 total minted per wallet.");

    _safeMint(msg.sender, numberOfTokens);
  }

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

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

  function treasuryMint(uint quantity, address user)
    public
    onlyOwner
  {
    require(
      quantity > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + quantity <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, quantity);
  }

  function withdraw()
    public
    onlyOwner
    nonReentrant
  {
    Address.sendValue(payable(msg.sender), address(this).balance);
  }

  function tokenURI(uint _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    return string(abi.encodePacked(baseTokenURI, "/", _tokenId.toString(), ".json"));
  }

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

  function setIsPublicSaleActive(bool _isPublicSaleActive)
      external
      onlyOwner
  {
      isPublicSaleActive = _isPublicSaleActive;
  }

  function setNumFreeMints(uint256 _numfreemints)
      external
      onlyOwner
  {
      TOTAL_FREE_MINTS = _numfreemints;
  }

  function setMaxLimitPerTransaction(uint256 _limit)
      external
      onlyOwner
  {
      FREE_MINTS_PER_TX = _limit;
  }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","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":"numberOfTokens","type":"uint256"}],"name":"mint","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSaleActive","type":"bool"}],"name":"setIsPublicSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxLimitPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numfreemints","type":"uint256"}],"name":"setNumFreeMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600a90805190602001906200002b92919062000226565b5061115c600b556002600c556000600d5561115c600e556000600f60006101000a81548160ff0219169083151502179055503480156200006a57600080fd5b506040518060400160405280600c81526020017f546865204974616c69616e7300000000000000000000000000000000000000008152506040518060400160405280600881526020017f4954414c49414e530000000000000000000000000000000000000000000000008152508160029080519060200190620000ef92919062000226565b5080600390805190602001906200010892919062000226565b50620001196200014f60201b60201c565b600081905550505062000141620001356200015860201b60201c565b6200016060201b60201c565b60016009819055506200033b565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023490620002d6565b90600052602060002090601f016020900481019282620002585760008555620002a4565b82601f106200027357805160ff1916838001178555620002a4565b82800160010185558215620002a4579182015b82811115620002a357825182559160200191906001019062000286565b5b509050620002b39190620002b7565b5090565b5b80821115620002d2576000816000905550600101620002b8565b5090565b60006002820490506001821680620002ef57607f821691505b602082108114156200030657620003056200030c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6132dc806200034b6000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610641578063e985e9c51461066c578063f2a3013e146106a9578063f2fde38b146106d2576101cd565b8063a22cb46514610587578063b88d4fde146105b0578063c87b56dd146105d9578063d547cfb714610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104ec57806395d89b41146105175780639e9fcffc14610542578063a0712d681461056b576101cd565b806370a082311461046d578063715018a6146104aa5780637471e0d5146104c1576101cd565b80631e84c4131161016f57806342842e0e1161013e57806342842e0e146103b357806355f804b3146103dc5780636352211e1461040557806366cb8f9914610442576101cd565b80631e84c4131461031f57806323b872dd1461034a57806328cad13d146103735780633ccfd60b1461039c576101cd565b8063089d4665116101ab578063089d466514610277578063095ea7b3146102a25780630a00ae83146102cb57806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123d5565b6106fb565b60405161020691906128f7565b60405180910390f35b34801561021b57600080fd5b5061022461078d565b6040516102319190612912565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612478565b61081f565b60405161026e9190612890565b60405180910390f35b34801561028357600080fd5b5061028c61089b565b6040516102999190612ab4565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612368565b6108a1565b005b3480156102d757600080fd5b506102f260048036038101906102ed9190612478565b6109e2565b005b34801561030057600080fd5b506103096109f4565b6040516103169190612ab4565b60405180910390f35b34801561032b57600080fd5b50610334610a0b565b60405161034191906128f7565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612252565b610a1e565b005b34801561037f57600080fd5b5061039a600480360381019061039591906123a8565b610d43565b005b3480156103a857600080fd5b506103b1610d68565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612252565b610dd2565b005b3480156103e857600080fd5b5061040360048036038101906103fe919061242f565b610df2565b005b34801561041157600080fd5b5061042c60048036038101906104279190612478565b610e14565b6040516104399190612890565b60405180910390f35b34801561044e57600080fd5b50610457610e26565b6040516104649190612ab4565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906121e5565b610e2c565b6040516104a19190612ab4565b60405180910390f35b3480156104b657600080fd5b506104bf610ee5565b005b3480156104cd57600080fd5b506104d6610ef9565b6040516104e39190612ab4565b60405180910390f35b3480156104f857600080fd5b50610501610eff565b60405161050e9190612890565b60405180910390f35b34801561052357600080fd5b5061052c610f29565b6040516105399190612912565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612478565b610fbb565b005b61058560048036038101906105809190612478565b610fcd565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612328565b61118a565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906122a5565b611302565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612478565b611375565b60405161060d9190612912565b60405180910390f35b34801561062257600080fd5b5061062b6113f1565b6040516106389190612912565b60405180910390f35b34801561064d57600080fd5b5061065661147f565b6040516106639190612ab4565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612212565b611485565b6040516106a091906128f7565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb91906124a5565b611519565b005b3480156106de57600080fd5b506106f960048036038101906106f491906121e5565b6115c9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079c90612d84565b80601f01602080910402602001604051908101604052809291908181526020018280546107c890612d84565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a8261164d565b610860576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e5481565b60006108ac82610e14565b90508073ffffffffffffffffffffffffffffffffffffffff166108cd6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610930576108f9816108f46116ac565b611485565b61092f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109ea6116b4565b80600e8190555050565b60006109fe611732565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6000610a298261173b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a90576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a9c84611809565b91509150610ab28187610aad6116ac565b61182b565b610afe57610ac786610ac26116ac565b611485565b610afd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b72868686600161186f565b8015610b7d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4b85610c27888887611875565b7c02000000000000000000000000000000000000000000000000000000001761189d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cd3576000600185019050600060046000838152602001908152602001600020541415610cd1576000548114610cd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d3b86868660016118c8565b505050505050565b610d4b6116b4565b80600f60006101000a81548160ff02191690831515021790555050565b610d706116b4565b60026009541415610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90612a74565b60405180910390fd5b6002600981905550610dc833476118ce565b6001600981905550565b610ded83838360405180602001604052806000815250611302565b505050565b610dfa6116b4565b80600a9080519060200190610e10929190611ff9565b5050565b6000610e1f8261173b565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e94576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eed6116b4565b610ef760006119c2565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3890612d84565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6490612d84565b8015610fb15780601f10610f8657610100808354040283529160200191610fb1565b820191906000526020600020905b815481529060010190602001808311610f9457829003601f168201915b5050505050905090565b610fc36116b4565b80600c8190555050565b600f60009054906101000a900460ff1661101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612a94565b60405180910390fd5b600b54816110286109f4565b6110329190612bb9565b1115611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a906129d4565b60405180910390fd5b600c548111156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612954565b60405180910390fd5b600e54816110c46109f4565b6110ce9190612bb9565b11806110db5750600c5481115b15611131573481600d546110ef9190612c40565b1115611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790612a54565b60405180910390fd5b5b600261113c33610e2c565b111561117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490612934565b60405180910390fd5b6111873382611a88565b50565b6111926116ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112046116ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112b16116ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112f691906128f7565b60405180910390a35050565b61130d848484610a1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461136f5761133884848484611aa6565b61136e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113808261164d565b6113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690612a14565b60405180910390fd5b600a6113ca83611c06565b6040516020016113db929190612841565b6040516020818303038152906040529050919050565b600a80546113fe90612d84565b80601f016020809104026020016040519081016040528092919081815260200182805461142a90612d84565b80156114775780601f1061144c57610100808354040283529160200191611477565b820191906000526020600020905b81548152906001019060200180831161145a57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115216116b4565b60008211611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612a34565b60405180910390fd5b600b54826115706109f4565b61157a9190612bb9565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906129d4565b60405180910390fd5b6115c58183611a88565b5050565b6115d16116b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612974565b60405180910390fd5b61164a816119c2565b50565b600081611658611732565b11158015611667575060005482105b80156116a5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6116bc611d67565b73ffffffffffffffffffffffffffffffffffffffff166116da610eff565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611727906129f4565b60405180910390fd5b565b60006001905090565b6000808290508061174a611732565b116117d2576000548110156117d15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117cf575b60008114156117c557600460008360019003935083815260200190815260200160002054905061179a565b8092505050611804565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861188c868684611d6f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611908906129b4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119379061287b565b60006040518083038185875af1925050503d8060008114611974576040519150601f19603f3d011682016040523d82523d6000602084013e611979565b606091505b50509050806119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b490612994565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aa2828260405180602001604052806000815250611d78565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc6116ac565b8786866040518563ffffffff1660e01b8152600401611aee94939291906128ab565b602060405180830381600087803b158015611b0857600080fd5b505af1925050508015611b3957506040513d601f19601f82011682018060405250810190611b369190612402565b60015b611bb3573d8060008114611b69576040519150601f19603f3d011682016040523d82523d6000602084013e611b6e565b606091505b50600081511415611bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611c4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d62565b600082905060005b60008214611c80578080611c6990612de7565b915050600a82611c799190612c0f565b9150611c56565b60008167ffffffffffffffff811115611c9c57611c9b612f1d565b5b6040519080825280601f01601f191660200182016040528015611cce5781602001600182028036833780820191505090505b5090505b60008514611d5b57600182611ce79190612c9a565b9150600a85611cf69190612e30565b6030611d029190612bb9565b60f81b818381518110611d1857611d17612eee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d549190612c0f565b9450611cd2565b8093505050505b919050565b600033905090565b60009392505050565b611d828383611e15565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1057600080549050600083820390505b611dc26000868380600101945086611aa6565b611df8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611daf578160005414611e0d57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e82576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611ebd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eca600084838561186f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f4183611f326000866000611875565b611f3b85611fe9565b1761189d565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f6557806000819055505050611fe460008483856118c8565b505050565b60006001821460e11b9050919050565b82805461200590612d84565b90600052602060002090601f016020900481019282612027576000855561206e565b82601f1061204057805160ff191683800117855561206e565b8280016001018555821561206e579182015b8281111561206d578251825591602001919060010190612052565b5b50905061207b919061207f565b5090565b5b80821115612098576000816000905550600101612080565b5090565b60006120af6120aa84612af4565b612acf565b9050828152602081018484840111156120cb576120ca612f51565b5b6120d6848285612d42565b509392505050565b60006120f16120ec84612b25565b612acf565b90508281526020810184848401111561210d5761210c612f51565b5b612118848285612d42565b509392505050565b60008135905061212f8161324a565b92915050565b60008135905061214481613261565b92915050565b60008135905061215981613278565b92915050565b60008151905061216e81613278565b92915050565b600082601f83011261218957612188612f4c565b5b813561219984826020860161209c565b91505092915050565b600082601f8301126121b7576121b6612f4c565b5b81356121c78482602086016120de565b91505092915050565b6000813590506121df8161328f565b92915050565b6000602082840312156121fb576121fa612f5b565b5b600061220984828501612120565b91505092915050565b6000806040838503121561222957612228612f5b565b5b600061223785828601612120565b925050602061224885828601612120565b9150509250929050565b60008060006060848603121561226b5761226a612f5b565b5b600061227986828701612120565b935050602061228a86828701612120565b925050604061229b868287016121d0565b9150509250925092565b600080600080608085870312156122bf576122be612f5b565b5b60006122cd87828801612120565b94505060206122de87828801612120565b93505060406122ef878288016121d0565b925050606085013567ffffffffffffffff8111156123105761230f612f56565b5b61231c87828801612174565b91505092959194509250565b6000806040838503121561233f5761233e612f5b565b5b600061234d85828601612120565b925050602061235e85828601612135565b9150509250929050565b6000806040838503121561237f5761237e612f5b565b5b600061238d85828601612120565b925050602061239e858286016121d0565b9150509250929050565b6000602082840312156123be576123bd612f5b565b5b60006123cc84828501612135565b91505092915050565b6000602082840312156123eb576123ea612f5b565b5b60006123f98482850161214a565b91505092915050565b60006020828403121561241857612417612f5b565b5b60006124268482850161215f565b91505092915050565b60006020828403121561244557612444612f5b565b5b600082013567ffffffffffffffff81111561246357612462612f56565b5b61246f848285016121a2565b91505092915050565b60006020828403121561248e5761248d612f5b565b5b600061249c848285016121d0565b91505092915050565b600080604083850312156124bc576124bb612f5b565b5b60006124ca858286016121d0565b92505060206124db85828601612120565b9150509250929050565b6124ee81612cce565b82525050565b6124fd81612ce0565b82525050565b600061250e82612b6b565b6125188185612b81565b9350612528818560208601612d51565b61253181612f60565b840191505092915050565b600061254782612b76565b6125518185612b9d565b9350612561818560208601612d51565b61256a81612f60565b840191505092915050565b600061258082612b76565b61258a8185612bae565b935061259a818560208601612d51565b80840191505092915050565b600081546125b381612d84565b6125bd8186612bae565b945060018216600081146125d857600181146125e95761261c565b60ff1983168652818601935061261c565b6125f285612b56565b60005b83811015612614578154818901526001820191506020810190506125f5565b838801955050505b50505092915050565b6000612632602283612b9d565b915061263d82612f71565b604082019050919050565b6000612655601c83612b9d565b915061266082612fc0565b602082019050919050565b6000612678602683612b9d565b915061268382612fe9565b604082019050919050565b600061269b603a83612b9d565b91506126a682613038565b604082019050919050565b60006126be601d83612b9d565b91506126c982613087565b602082019050919050565b60006126e1601783612b9d565b91506126ec826130b0565b602082019050919050565b6000612704600583612bae565b915061270f826130d9565b600582019050919050565b6000612727602083612b9d565b915061273282613102565b602082019050919050565b600061274a602f83612b9d565b91506127558261312b565b604082019050919050565b600061276d600083612b92565b91506127788261317a565b600082019050919050565b6000612790601383612b9d565b915061279b8261317d565b602082019050919050565b60006127b3601883612b9d565b91506127be826131a6565b602082019050919050565b60006127d6601f83612b9d565b91506127e1826131cf565b602082019050919050565b60006127f9601783612b9d565b9150612804826131f8565b602082019050919050565b600061281c600183612bae565b915061282782613221565b600182019050919050565b61283b81612d38565b82525050565b600061284d82856125a6565b91506128588261280f565b91506128648284612575565b915061286f826126f7565b91508190509392505050565b600061288682612760565b9150819050919050565b60006020820190506128a560008301846124e5565b92915050565b60006080820190506128c060008301876124e5565b6128cd60208301866124e5565b6128da6040830185612832565b81810360608301526128ec8184612503565b905095945050505050565b600060208201905061290c60008301846124f4565b92915050565b6000602082019050818103600083015261292c818461253c565b905092915050565b6000602082019050818103600083015261294d81612625565b9050919050565b6000602082019050818103600083015261296d81612648565b9050919050565b6000602082019050818103600083015261298d8161266b565b9050919050565b600060208201905081810360008301526129ad8161268e565b9050919050565b600060208201905081810360008301526129cd816126b1565b9050919050565b600060208201905081810360008301526129ed816126d4565b9050919050565b60006020820190508181036000830152612a0d8161271a565b9050919050565b60006020820190508181036000830152612a2d8161273d565b9050919050565b60006020820190508181036000830152612a4d81612783565b9050919050565b60006020820190508181036000830152612a6d816127a6565b9050919050565b60006020820190508181036000830152612a8d816127c9565b9050919050565b60006020820190508181036000830152612aad816127ec565b9050919050565b6000602082019050612ac96000830184612832565b92915050565b6000612ad9612aea565b9050612ae58282612db6565b919050565b6000604051905090565b600067ffffffffffffffff821115612b0f57612b0e612f1d565b5b612b1882612f60565b9050602081019050919050565b600067ffffffffffffffff821115612b4057612b3f612f1d565b5b612b4982612f60565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bc482612d38565b9150612bcf83612d38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0457612c03612e61565b5b828201905092915050565b6000612c1a82612d38565b9150612c2583612d38565b925082612c3557612c34612e90565b5b828204905092915050565b6000612c4b82612d38565b9150612c5683612d38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8f57612c8e612e61565b5b828202905092915050565b6000612ca582612d38565b9150612cb083612d38565b925082821015612cc357612cc2612e61565b5b828203905092915050565b6000612cd982612d18565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d6f578082015181840152602081019050612d54565b83811115612d7e576000848401525b50505050565b60006002820490506001821680612d9c57607f821691505b60208210811415612db057612daf612ebf565b5b50919050565b612dbf82612f60565b810181811067ffffffffffffffff82111715612dde57612ddd612f1d565b5b80604052505050565b6000612df282612d38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e2557612e24612e61565b5b600182019050919050565b6000612e3b82612d38565b9150612e4683612d38565b925082612e5657612e55612e90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d6178696d756d203320746f74616c206d696e746564207065722077616c6c6560008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d2074776f206d696e75746564207065722074786e2e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61325381612cce565b811461325e57600080fd5b50565b61326a81612ce0565b811461327557600080fd5b50565b61328181612cec565b811461328c57600080fd5b50565b61329881612d38565b81146132a357600080fd5b5056fea26469706673582212204a57a883014aed26b43c5b7c0eab33d9d30175ce9348a0297fc7a4111912d05164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063a22cb46511610095578063d5abeb0111610064578063d5abeb0114610641578063e985e9c51461066c578063f2a3013e146106a9578063f2fde38b146106d2576101cd565b8063a22cb46514610587578063b88d4fde146105b0578063c87b56dd146105d9578063d547cfb714610616576101cd565b80638da5cb5b116100d15780638da5cb5b146104ec57806395d89b41146105175780639e9fcffc14610542578063a0712d681461056b576101cd565b806370a082311461046d578063715018a6146104aa5780637471e0d5146104c1576101cd565b80631e84c4131161016f57806342842e0e1161013e57806342842e0e146103b357806355f804b3146103dc5780636352211e1461040557806366cb8f9914610442576101cd565b80631e84c4131461031f57806323b872dd1461034a57806328cad13d146103735780633ccfd60b1461039c576101cd565b8063089d4665116101ab578063089d466514610277578063095ea7b3146102a25780630a00ae83146102cb57806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906123d5565b6106fb565b60405161020691906128f7565b60405180910390f35b34801561021b57600080fd5b5061022461078d565b6040516102319190612912565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612478565b61081f565b60405161026e9190612890565b60405180910390f35b34801561028357600080fd5b5061028c61089b565b6040516102999190612ab4565b60405180910390f35b3480156102ae57600080fd5b506102c960048036038101906102c49190612368565b6108a1565b005b3480156102d757600080fd5b506102f260048036038101906102ed9190612478565b6109e2565b005b34801561030057600080fd5b506103096109f4565b6040516103169190612ab4565b60405180910390f35b34801561032b57600080fd5b50610334610a0b565b60405161034191906128f7565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c9190612252565b610a1e565b005b34801561037f57600080fd5b5061039a600480360381019061039591906123a8565b610d43565b005b3480156103a857600080fd5b506103b1610d68565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612252565b610dd2565b005b3480156103e857600080fd5b5061040360048036038101906103fe919061242f565b610df2565b005b34801561041157600080fd5b5061042c60048036038101906104279190612478565b610e14565b6040516104399190612890565b60405180910390f35b34801561044e57600080fd5b50610457610e26565b6040516104649190612ab4565b60405180910390f35b34801561047957600080fd5b50610494600480360381019061048f91906121e5565b610e2c565b6040516104a19190612ab4565b60405180910390f35b3480156104b657600080fd5b506104bf610ee5565b005b3480156104cd57600080fd5b506104d6610ef9565b6040516104e39190612ab4565b60405180910390f35b3480156104f857600080fd5b50610501610eff565b60405161050e9190612890565b60405180910390f35b34801561052357600080fd5b5061052c610f29565b6040516105399190612912565b60405180910390f35b34801561054e57600080fd5b5061056960048036038101906105649190612478565b610fbb565b005b61058560048036038101906105809190612478565b610fcd565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612328565b61118a565b005b3480156105bc57600080fd5b506105d760048036038101906105d291906122a5565b611302565b005b3480156105e557600080fd5b5061060060048036038101906105fb9190612478565b611375565b60405161060d9190612912565b60405180910390f35b34801561062257600080fd5b5061062b6113f1565b6040516106389190612912565b60405180910390f35b34801561064d57600080fd5b5061065661147f565b6040516106639190612ab4565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e9190612212565b611485565b6040516106a091906128f7565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb91906124a5565b611519565b005b3480156106de57600080fd5b506106f960048036038101906106f491906121e5565b6115c9565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061075657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107865750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461079c90612d84565b80601f01602080910402602001604051908101604052809291908181526020018280546107c890612d84565b80156108155780601f106107ea57610100808354040283529160200191610815565b820191906000526020600020905b8154815290600101906020018083116107f857829003601f168201915b5050505050905090565b600061082a8261164d565b610860576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600e5481565b60006108ac82610e14565b90508073ffffffffffffffffffffffffffffffffffffffff166108cd6116ac565b73ffffffffffffffffffffffffffffffffffffffff1614610930576108f9816108f46116ac565b611485565b61092f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6109ea6116b4565b80600e8190555050565b60006109fe611732565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6000610a298261173b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a90576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a9c84611809565b91509150610ab28187610aad6116ac565b61182b565b610afe57610ac786610ac26116ac565b611485565b610afd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b65576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b72868686600161186f565b8015610b7d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c4b85610c27888887611875565b7c02000000000000000000000000000000000000000000000000000000001761189d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610cd3576000600185019050600060046000838152602001908152602001600020541415610cd1576000548114610cd0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d3b86868660016118c8565b505050505050565b610d4b6116b4565b80600f60006101000a81548160ff02191690831515021790555050565b610d706116b4565b60026009541415610db6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dad90612a74565b60405180910390fd5b6002600981905550610dc833476118ce565b6001600981905550565b610ded83838360405180602001604052806000815250611302565b505050565b610dfa6116b4565b80600a9080519060200190610e10929190611ff9565b5050565b6000610e1f8261173b565b9050919050565b600c5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e94576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eed6116b4565b610ef760006119c2565b565b600d5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610f3890612d84565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6490612d84565b8015610fb15780601f10610f8657610100808354040283529160200191610fb1565b820191906000526020600020905b815481529060010190602001808311610f9457829003601f168201915b5050505050905090565b610fc36116b4565b80600c8190555050565b600f60009054906101000a900460ff1661101c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101390612a94565b60405180910390fd5b600b54816110286109f4565b6110329190612bb9565b1115611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a906129d4565b60405180910390fd5b600c548111156110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af90612954565b60405180910390fd5b600e54816110c46109f4565b6110ce9190612bb9565b11806110db5750600c5481115b15611131573481600d546110ef9190612c40565b1115611130576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112790612a54565b60405180910390fd5b5b600261113c33610e2c565b111561117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490612934565b60405180910390fd5b6111873382611a88565b50565b6111926116ac565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111f7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006112046116ac565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166112b16116ac565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112f691906128f7565b60405180910390a35050565b61130d848484610a1e565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461136f5761133884848484611aa6565b61136e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113808261164d565b6113bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b690612a14565b60405180910390fd5b600a6113ca83611c06565b6040516020016113db929190612841565b6040516020818303038152906040529050919050565b600a80546113fe90612d84565b80601f016020809104026020016040519081016040528092919081815260200182805461142a90612d84565b80156114775780601f1061144c57610100808354040283529160200191611477565b820191906000526020600020905b81548152906001019060200180831161145a57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6115216116b4565b60008211611564576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155b90612a34565b60405180910390fd5b600b54826115706109f4565b61157a9190612bb9565b11156115bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b2906129d4565b60405180910390fd5b6115c58183611a88565b5050565b6115d16116b4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611641576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163890612974565b60405180910390fd5b61164a816119c2565b50565b600081611658611732565b11158015611667575060005482105b80156116a5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b6116bc611d67565b73ffffffffffffffffffffffffffffffffffffffff166116da610eff565b73ffffffffffffffffffffffffffffffffffffffff1614611730576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611727906129f4565b60405180910390fd5b565b60006001905090565b6000808290508061174a611732565b116117d2576000548110156117d15760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117cf575b60008114156117c557600460008360019003935083815260200190815260200160002054905061179a565b8092505050611804565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861188c868684611d6f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b80471015611911576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611908906129b4565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516119379061287b565b60006040518083038185875af1925050503d8060008114611974576040519150601f19603f3d011682016040523d82523d6000602084013e611979565b606091505b50509050806119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b490612994565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611aa2828260405180602001604052806000815250611d78565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc6116ac565b8786866040518563ffffffff1660e01b8152600401611aee94939291906128ab565b602060405180830381600087803b158015611b0857600080fd5b505af1925050508015611b3957506040513d601f19601f82011682018060405250810190611b369190612402565b60015b611bb3573d8060008114611b69576040519150601f19603f3d011682016040523d82523d6000602084013e611b6e565b606091505b50600081511415611bab576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611c4e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611d62565b600082905060005b60008214611c80578080611c6990612de7565b915050600a82611c799190612c0f565b9150611c56565b60008167ffffffffffffffff811115611c9c57611c9b612f1d565b5b6040519080825280601f01601f191660200182016040528015611cce5781602001600182028036833780820191505090505b5090505b60008514611d5b57600182611ce79190612c9a565b9150600a85611cf69190612e30565b6030611d029190612bb9565b60f81b818381518110611d1857611d17612eee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611d549190612c0f565b9450611cd2565b8093505050505b919050565b600033905090565b60009392505050565b611d828383611e15565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e1057600080549050600083820390505b611dc26000868380600101945086611aa6565b611df8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611daf578160005414611e0d57600080fd5b50505b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611e82576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415611ebd576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611eca600084838561186f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611f4183611f326000866000611875565b611f3b85611fe9565b1761189d565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611f6557806000819055505050611fe460008483856118c8565b505050565b60006001821460e11b9050919050565b82805461200590612d84565b90600052602060002090601f016020900481019282612027576000855561206e565b82601f1061204057805160ff191683800117855561206e565b8280016001018555821561206e579182015b8281111561206d578251825591602001919060010190612052565b5b50905061207b919061207f565b5090565b5b80821115612098576000816000905550600101612080565b5090565b60006120af6120aa84612af4565b612acf565b9050828152602081018484840111156120cb576120ca612f51565b5b6120d6848285612d42565b509392505050565b60006120f16120ec84612b25565b612acf565b90508281526020810184848401111561210d5761210c612f51565b5b612118848285612d42565b509392505050565b60008135905061212f8161324a565b92915050565b60008135905061214481613261565b92915050565b60008135905061215981613278565b92915050565b60008151905061216e81613278565b92915050565b600082601f83011261218957612188612f4c565b5b813561219984826020860161209c565b91505092915050565b600082601f8301126121b7576121b6612f4c565b5b81356121c78482602086016120de565b91505092915050565b6000813590506121df8161328f565b92915050565b6000602082840312156121fb576121fa612f5b565b5b600061220984828501612120565b91505092915050565b6000806040838503121561222957612228612f5b565b5b600061223785828601612120565b925050602061224885828601612120565b9150509250929050565b60008060006060848603121561226b5761226a612f5b565b5b600061227986828701612120565b935050602061228a86828701612120565b925050604061229b868287016121d0565b9150509250925092565b600080600080608085870312156122bf576122be612f5b565b5b60006122cd87828801612120565b94505060206122de87828801612120565b93505060406122ef878288016121d0565b925050606085013567ffffffffffffffff8111156123105761230f612f56565b5b61231c87828801612174565b91505092959194509250565b6000806040838503121561233f5761233e612f5b565b5b600061234d85828601612120565b925050602061235e85828601612135565b9150509250929050565b6000806040838503121561237f5761237e612f5b565b5b600061238d85828601612120565b925050602061239e858286016121d0565b9150509250929050565b6000602082840312156123be576123bd612f5b565b5b60006123cc84828501612135565b91505092915050565b6000602082840312156123eb576123ea612f5b565b5b60006123f98482850161214a565b91505092915050565b60006020828403121561241857612417612f5b565b5b60006124268482850161215f565b91505092915050565b60006020828403121561244557612444612f5b565b5b600082013567ffffffffffffffff81111561246357612462612f56565b5b61246f848285016121a2565b91505092915050565b60006020828403121561248e5761248d612f5b565b5b600061249c848285016121d0565b91505092915050565b600080604083850312156124bc576124bb612f5b565b5b60006124ca858286016121d0565b92505060206124db85828601612120565b9150509250929050565b6124ee81612cce565b82525050565b6124fd81612ce0565b82525050565b600061250e82612b6b565b6125188185612b81565b9350612528818560208601612d51565b61253181612f60565b840191505092915050565b600061254782612b76565b6125518185612b9d565b9350612561818560208601612d51565b61256a81612f60565b840191505092915050565b600061258082612b76565b61258a8185612bae565b935061259a818560208601612d51565b80840191505092915050565b600081546125b381612d84565b6125bd8186612bae565b945060018216600081146125d857600181146125e95761261c565b60ff1983168652818601935061261c565b6125f285612b56565b60005b83811015612614578154818901526001820191506020810190506125f5565b838801955050505b50505092915050565b6000612632602283612b9d565b915061263d82612f71565b604082019050919050565b6000612655601c83612b9d565b915061266082612fc0565b602082019050919050565b6000612678602683612b9d565b915061268382612fe9565b604082019050919050565b600061269b603a83612b9d565b91506126a682613038565b604082019050919050565b60006126be601d83612b9d565b91506126c982613087565b602082019050919050565b60006126e1601783612b9d565b91506126ec826130b0565b602082019050919050565b6000612704600583612bae565b915061270f826130d9565b600582019050919050565b6000612727602083612b9d565b915061273282613102565b602082019050919050565b600061274a602f83612b9d565b91506127558261312b565b604082019050919050565b600061276d600083612b92565b91506127788261317a565b600082019050919050565b6000612790601383612b9d565b915061279b8261317d565b602082019050919050565b60006127b3601883612b9d565b91506127be826131a6565b602082019050919050565b60006127d6601f83612b9d565b91506127e1826131cf565b602082019050919050565b60006127f9601783612b9d565b9150612804826131f8565b602082019050919050565b600061281c600183612bae565b915061282782613221565b600182019050919050565b61283b81612d38565b82525050565b600061284d82856125a6565b91506128588261280f565b91506128648284612575565b915061286f826126f7565b91508190509392505050565b600061288682612760565b9150819050919050565b60006020820190506128a560008301846124e5565b92915050565b60006080820190506128c060008301876124e5565b6128cd60208301866124e5565b6128da6040830185612832565b81810360608301526128ec8184612503565b905095945050505050565b600060208201905061290c60008301846124f4565b92915050565b6000602082019050818103600083015261292c818461253c565b905092915050565b6000602082019050818103600083015261294d81612625565b9050919050565b6000602082019050818103600083015261296d81612648565b9050919050565b6000602082019050818103600083015261298d8161266b565b9050919050565b600060208201905081810360008301526129ad8161268e565b9050919050565b600060208201905081810360008301526129cd816126b1565b9050919050565b600060208201905081810360008301526129ed816126d4565b9050919050565b60006020820190508181036000830152612a0d8161271a565b9050919050565b60006020820190508181036000830152612a2d8161273d565b9050919050565b60006020820190508181036000830152612a4d81612783565b9050919050565b60006020820190508181036000830152612a6d816127a6565b9050919050565b60006020820190508181036000830152612a8d816127c9565b9050919050565b60006020820190508181036000830152612aad816127ec565b9050919050565b6000602082019050612ac96000830184612832565b92915050565b6000612ad9612aea565b9050612ae58282612db6565b919050565b6000604051905090565b600067ffffffffffffffff821115612b0f57612b0e612f1d565b5b612b1882612f60565b9050602081019050919050565b600067ffffffffffffffff821115612b4057612b3f612f1d565b5b612b4982612f60565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612bc482612d38565b9150612bcf83612d38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612c0457612c03612e61565b5b828201905092915050565b6000612c1a82612d38565b9150612c2583612d38565b925082612c3557612c34612e90565b5b828204905092915050565b6000612c4b82612d38565b9150612c5683612d38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612c8f57612c8e612e61565b5b828202905092915050565b6000612ca582612d38565b9150612cb083612d38565b925082821015612cc357612cc2612e61565b5b828203905092915050565b6000612cd982612d18565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612d6f578082015181840152602081019050612d54565b83811115612d7e576000848401525b50505050565b60006002820490506001821680612d9c57607f821691505b60208210811415612db057612daf612ebf565b5b50919050565b612dbf82612f60565b810181811067ffffffffffffffff82111715612dde57612ddd612f1d565b5b80604052505050565b6000612df282612d38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612e2557612e24612e61565b5b600182019050919050565b6000612e3b82612d38565b9150612e4683612d38565b925082612e5657612e55612e90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4d6178696d756d203320746f74616c206d696e746564207065722077616c6c6560008201527f742e000000000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178696d756d2074776f206d696e75746564207065722074786e2e00000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61325381612cce565b811461325e57600080fd5b50565b61326a81612ce0565b811461327557600080fd5b50565b61328181612cec565b811461328c57600080fd5b50565b61329881612d38565b81146132a357600080fd5b5056fea26469706673582212204a57a883014aed26b43c5b7c0eab33d9d30175ce9348a0297fc7a4111912d05164736f6c63430008070033

Deployed Bytecode Sourcemap

64806:2694:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34609:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40256:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42202:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65097:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41750:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67230:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33663:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65141:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51467:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67076:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66469:142;;;;;;;;;;;;;:::i;:::-;;43092:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65950:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40045:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65005:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35288:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19200:103;;;;;;;;;;;;;:::i;:::-;;65047:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18552:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40425:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67367:128;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65250:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42478:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43348:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66617:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64928:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64968:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42857:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66171:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19458:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34609:615;34694:4;35009:10;34994:25;;:11;:25;;;;:102;;;;35086:10;35071:25;;:11;:25;;;;34994:102;:179;;;;35163:10;35148:25;;:11;:25;;;;34994:179;34974:199;;34609:615;;;:::o;40256:100::-;40310:13;40343:5;40336:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40256:100;:::o;42202:204::-;42270:7;42295:16;42303:7;42295;:16::i;:::-;42290:64;;42320:34;;;;;;;;;;;;;;42290:64;42374:15;:24;42390:7;42374:24;;;;;;;;;;;;;;;;;;;;;42367:31;;42202:204;;;:::o;65097:39::-;;;;:::o;41750:386::-;41823:13;41839:16;41847:7;41839;:16::i;:::-;41823:32;;41895:5;41872:28;;:19;:17;:19::i;:::-;:28;;;41868:175;;41920:44;41937:5;41944:19;:17;:19::i;:::-;41920:16;:44::i;:::-;41915:128;;41992:35;;;;;;;;;;;;;;41915:128;41868:175;42082:2;42055:15;:24;42071:7;42055:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;42120:7;42116:2;42100:28;;42109:5;42100:28;;;;;;;;;;;;41812:324;41750:386;;:::o;67230:131::-;18438:13;:11;:13::i;:::-;67342::::1;67323:16;:32;;;;67230:131:::0;:::o;33663:315::-;33716:7;33944:15;:13;:15::i;:::-;33929:12;;33913:13;;:28;:46;33906:53;;33663:315;:::o;65141:38::-;;;;;;;;;;;;;:::o;51467:2800::-;51601:27;51631;51650:7;51631:18;:27::i;:::-;51601:57;;51716:4;51675:45;;51691:19;51675:45;;;51671:86;;51729:28;;;;;;;;;;;;;;51671:86;51771:27;51800:23;51827:28;51847:7;51827:19;:28::i;:::-;51770:85;;;;51955:62;51974:15;51991:4;51997:19;:17;:19::i;:::-;51955:18;:62::i;:::-;51950:174;;52037:43;52054:4;52060:19;:17;:19::i;:::-;52037:16;:43::i;:::-;52032:92;;52089:35;;;;;;;;;;;;;;52032:92;51950:174;52155:1;52141:16;;:2;:16;;;52137:52;;;52166:23;;;;;;;;;;;;;;52137:52;52202:43;52224:4;52230:2;52234:7;52243:1;52202:21;:43::i;:::-;52338:15;52335:160;;;52478:1;52457:19;52450:30;52335:160;52873:18;:24;52892:4;52873:24;;;;;;;;;;;;;;;;52871:26;;;;;;;;;;;;52942:18;:22;52961:2;52942:22;;;;;;;;;;;;;;;;52940:24;;;;;;;;;;;53264:145;53301:2;53349:45;53364:4;53370:2;53374:19;53349:14;:45::i;:::-;30891:8;53322:72;53264:18;:145::i;:::-;53235:17;:26;53253:7;53235:26;;;;;;;;;;;:174;;;;53579:1;30891:8;53529:19;:46;:51;53525:626;;;53601:19;53633:1;53623:7;:11;53601:33;;53790:1;53756:17;:30;53774:11;53756:30;;;;;;;;;;;;:35;53752:384;;;53894:13;;53879:11;:28;53875:242;;54074:19;54041:17;:30;54059:11;54041:30;;;;;;;;;;;:52;;;;53875:242;53752:384;53582:569;53525:626;54198:7;54194:2;54179:27;;54188:4;54179:27;;;;;;;;;;;;54217:42;54238:4;54244:2;54248:7;54257:1;54217:20;:42::i;:::-;51590:2677;;;51467:2800;;;:::o;67076:148::-;18438:13;:11;:13::i;:::-;67199:19:::1;67178:18;;:40;;;;;;;;;;;;;;;;;;67076:148:::0;:::o;66469:142::-;18438:13;:11;:13::i;:::-;15477:1:::1;16075:7;;:19;;16067:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;15477:1;16208:7;:18;;;;66544:61:::2;66570:10;66583:21;66544:17;:61::i;:::-;15433:1:::1;16387:7;:22;;;;66469:142::o:0;43092:185::-;43230:39;43247:4;43253:2;43257:7;43230:39;;;;;;;;;;;;:16;:39::i;:::-;43092:185;;;:::o;65950:108::-;18438:13;:11;:13::i;:::-;66045:7:::1;66030:12;:22;;;;;;;;;;;;:::i;:::-;;65950:108:::0;:::o;40045:144::-;40109:7;40152:27;40171:7;40152:18;:27::i;:::-;40129:52;;40045:144;;;:::o;65005:37::-;;;;:::o;35288:224::-;35352:7;35393:1;35376:19;;:5;:19;;;35372:60;;;35404:28;;;;;;;;;;;;;;35372:60;29843:13;35450:18;:25;35469:5;35450:25;;;;;;;;;;;;;;;;:54;35443:61;;35288:224;;;:::o;19200:103::-;18438:13;:11;:13::i;:::-;19265:30:::1;19292:1;19265:18;:30::i;:::-;19200:103::o:0;65047:45::-;;;;:::o;18552:87::-;18598:7;18625:6;;;;;;;;;;;18618:13;;18552:87;:::o;40425:104::-;40481:13;40514:7;40507:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40425:104;:::o;67367:128::-;18438:13;:11;:13::i;:::-;67483:6:::1;67463:17;:26;;;;67367:128:::0;:::o;65250:694::-;65337:18;;;;;;;;;;;65329:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;65433:9;;65415:14;65399:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;65390:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;65503:17;;65485:14;:35;;65476:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;65603:16;;65586:14;65570:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:49;:87;;;;65640:17;;65623:14;:34;65570:87;65567:241;;;65729:9;65710:14;65692:15;;:32;;;;:::i;:::-;65691:47;;65669:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;65567:241;65852:1;65827:21;65837:10;65827:9;:21::i;:::-;:26;;65819:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;65901:37;65911:10;65923:14;65901:9;:37::i;:::-;65250:694;:::o;42478:308::-;42589:19;:17;:19::i;:::-;42577:31;;:8;:31;;;42573:61;;;42617:17;;;;;;;;;;;;;;42573:61;42699:8;42647:18;:39;42666:19;:17;:19::i;:::-;42647:39;;;;;;;;;;;;;;;:49;42687:8;42647:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42759:8;42723:55;;42738:19;:17;:19::i;:::-;42723:55;;;42769:8;42723:55;;;;;;:::i;:::-;;;;;;;;42478:308;;:::o;43348:399::-;43515:31;43528:4;43534:2;43538:7;43515:12;:31::i;:::-;43579:1;43561:2;:14;;;:19;43557:183;;43600:56;43631:4;43637:2;43641:7;43650:5;43600:30;:56::i;:::-;43595:145;;43684:40;;;;;;;;;;;;;;43595:145;43557:183;43348:399;;;;:::o;66617:312::-;66713:13;66754:17;66762:8;66754:7;:17::i;:::-;66738:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66874:12;66893:19;:8;:17;:19::i;:::-;66857:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;66843:80;;66617:312;;;:::o;64928:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64968:32::-;;;;:::o;42857:164::-;42954:4;42978:18;:25;42997:5;42978:25;;;;;;;;;;;;;;;:35;43004:8;42978:35;;;;;;;;;;;;;;;;;;;;;;;;;42971:42;;42857:164;;;;:::o;66171:292::-;18438:13;:11;:13::i;:::-;66286:1:::1;66275:8;:12;66259:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;66375:9;;66363:8;66347:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;66331:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;66432:25;66442:4;66448:8;66432:9;:25::i;:::-;66171:292:::0;;:::o;19458:201::-;18438:13;:11;:13::i;:::-;19567:1:::1;19547:22;;:8;:22;;;;19539:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19623:28;19642:8;19623:18;:28::i;:::-;19458:201:::0;:::o;44002:273::-;44059:4;44115:7;44096:15;:13;:15::i;:::-;:26;;:66;;;;;44149:13;;44139:7;:23;44096:66;:152;;;;;44247:1;30613:8;44200:17;:26;44218:7;44200:26;;;;;;;;;;;;:43;:48;44096:152;44076:172;;44002:273;;;:::o;62563:105::-;62623:7;62650:10;62643:17;;62563:105;:::o;18717:132::-;18792:12;:10;:12::i;:::-;18781:23;;:7;:5;:7::i;:::-;:23;;;18773:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18717:132::o;66064:101::-;66129:7;66156:1;66149:8;;66064:101;:::o;36962:1129::-;37029:7;37049:12;37064:7;37049:22;;37132:4;37113:15;:13;:15::i;:::-;:23;37109:915;;37166:13;;37159:4;:20;37155:869;;;37204:14;37221:17;:23;37239:4;37221:23;;;;;;;;;;;;37204:40;;37337:1;30613:8;37310:6;:23;:28;37306:699;;;37829:113;37846:1;37836:6;:11;37829:113;;;37889:17;:25;37907:6;;;;;;;37889:25;;;;;;;;;;;;37880:34;;37829:113;;;37975:6;37968:13;;;;;;37306:699;37181:843;37155:869;37109:915;38052:31;;;;;;;;;;;;;;36962:1129;;;;:::o;49803:652::-;49898:27;49927:23;49968:53;50024:15;49968:71;;50210:7;50204:4;50197:21;50245:22;50239:4;50232:36;50321:4;50315;50305:21;50282:44;;50417:19;50411:26;50392:45;;50148:300;49803:652;;;:::o;50568:645::-;50710:11;50872:15;50866:4;50862:26;50854:34;;51031:15;51020:9;51016:31;51003:44;;51178:15;51167:9;51164:30;51157:4;51146:9;51143:19;51140:55;51130:65;;50568:645;;;;;:::o;61396:159::-;;;;;:::o;59708:309::-;59843:7;59863:16;31014:3;59889:19;:40;;59863:67;;31014:3;59956:31;59967:4;59973:2;59977:9;59956:10;:31::i;:::-;59948:40;;:61;;59941:68;;;59708:309;;;;;:::o;39536:447::-;39616:14;39784:15;39777:5;39773:27;39764:36;;39958:5;39944:11;39920:22;39916:40;39913:51;39906:5;39903:62;39893:72;;39536:447;;;;:::o;62214:158::-;;;;;:::o;7606:317::-;7721:6;7696:21;:31;;7688:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7775:12;7793:9;:14;;7815:6;7793:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7774:52;;;7845:7;7837:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;7677:246;7606:317;;:::o;19819:191::-;19893:16;19912:6;;;;;;;;;;;19893:25;;19938:8;19929:6;;:17;;;;;;;;;;;;;;;;;;19993:8;19962:40;;19983:8;19962:40;;;;;;;;;;;;19882:128;19819:191;:::o;44359:104::-;44428:27;44438:2;44442:8;44428:27;;;;;;;;;;;;:9;:27::i;:::-;44359:104;;:::o;58218:716::-;58381:4;58427:2;58402:45;;;58448:19;:17;:19::i;:::-;58469:4;58475:7;58484:5;58402:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;58398:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58702:1;58685:6;:13;:18;58681:235;;;58731:40;;;;;;;;;;;;;;58681:235;58874:6;58868:13;58859:6;58855:2;58851:15;58844:38;58398:529;58571:54;;;58561:64;;;:6;:64;;;;58554:71;;;58218:716;;;;;;:::o;3045:723::-;3101:13;3331:1;3322:5;:10;3318:53;;;3349:10;;;;;;;;;;;;;;;;;;;;;3318:53;3381:12;3396:5;3381:20;;3412:14;3437:78;3452:1;3444:4;:9;3437:78;;3470:8;;;;;:::i;:::-;;;;3501:2;3493:10;;;;;:::i;:::-;;;3437:78;;;3525:19;3557:6;3547:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3525:39;;3575:154;3591:1;3582:5;:10;3575:154;;3619:1;3609:11;;;;;:::i;:::-;;;3686:2;3678:5;:10;;;;:::i;:::-;3665:2;:24;;;;:::i;:::-;3652:39;;3635:6;3642;3635:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3715:2;3706:11;;;;;:::i;:::-;;;3575:154;;;3753:6;3739:21;;;;;3045:723;;;;:::o;17103:98::-;17156:7;17183:10;17176:17;;17103:98;:::o;60593:147::-;60730:6;60593:147;;;;;:::o;44879:681::-;45002:19;45008:2;45012:8;45002:5;:19::i;:::-;45081:1;45063:2;:14;;;:19;45059:483;;45103:11;45117:13;;45103:27;;45149:13;45171:8;45165:3;:14;45149:30;;45198:233;45229:62;45268:1;45272:2;45276:7;;;;;;45285:5;45229:30;:62::i;:::-;45224:167;;45327:40;;;;;;;;;;;;;;45224:167;45426:3;45418:5;:11;45198:233;;45513:3;45496:13;;:20;45492:34;;45518:8;;;45492:34;45084:458;;45059:483;44879:681;;;:::o;45833:1529::-;45898:20;45921:13;;45898:36;;45963:1;45949:16;;:2;:16;;;45945:48;;;45974:19;;;;;;;;;;;;;;45945:48;46020:1;46008:8;:13;46004:44;;;46030:18;;;;;;;;;;;;;;46004:44;46061:61;46091:1;46095:2;46099:12;46113:8;46061:21;:61::i;:::-;46604:1;29980:2;46575:1;:25;;46574:31;46562:8;:44;46536:18;:22;46555:2;46536:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;46883:139;46920:2;46974:33;46997:1;47001:2;47005:1;46974:14;:33::i;:::-;46941:30;46962:8;46941:20;:30::i;:::-;:66;46883:18;:139::i;:::-;46849:17;:31;46867:12;46849:31;;;;;;;;;;;:173;;;;47039:15;47057:12;47039:30;;47084:11;47113:8;47098:12;:23;47084:37;;47136:101;47188:9;;;;;;47184:2;47163:35;;47180:1;47163:35;;;;;;;;;;;;47232:3;47222:7;:13;47136:101;;47269:3;47253:13;:19;;;;46310:974;;47294:60;47323:1;47327:2;47331:12;47345:8;47294:20;:60::i;:::-;45887:1475;45833:1529;;:::o;41366:322::-;41436:14;41667:1;41657:8;41654:15;41629:23;41625:45;41615:55;;41366:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:474::-;7555:6;7563;7612:2;7600:9;7591:7;7587:23;7583:32;7580:119;;;7618:79;;:::i;:::-;7580:119;7738:1;7763:53;7808:7;7799:6;7788:9;7784:22;7763:53;:::i;:::-;7753:63;;7709:117;7865:2;7891:53;7936:7;7927:6;7916:9;7912:22;7891:53;:::i;:::-;7881:63;;7836:118;7487:474;;;;;:::o;7967:118::-;8054:24;8072:5;8054:24;:::i;:::-;8049:3;8042:37;7967:118;;:::o;8091:109::-;8172:21;8187:5;8172:21;:::i;:::-;8167:3;8160:34;8091:109;;:::o;8206:360::-;8292:3;8320:38;8352:5;8320:38;:::i;:::-;8374:70;8437:6;8432:3;8374:70;:::i;:::-;8367:77;;8453:52;8498:6;8493:3;8486:4;8479:5;8475:16;8453:52;:::i;:::-;8530:29;8552:6;8530:29;:::i;:::-;8525:3;8521:39;8514:46;;8296:270;8206:360;;;;:::o;8572:364::-;8660:3;8688:39;8721:5;8688:39;:::i;:::-;8743:71;8807:6;8802:3;8743:71;:::i;:::-;8736:78;;8823:52;8868:6;8863:3;8856:4;8849:5;8845:16;8823:52;:::i;:::-;8900:29;8922:6;8900:29;:::i;:::-;8895:3;8891:39;8884:46;;8664:272;8572:364;;;;:::o;8942:377::-;9048:3;9076:39;9109:5;9076:39;:::i;:::-;9131:89;9213:6;9208:3;9131:89;:::i;:::-;9124:96;;9229:52;9274:6;9269:3;9262:4;9255:5;9251:16;9229:52;:::i;:::-;9306:6;9301:3;9297:16;9290:23;;9052:267;8942:377;;;;:::o;9349:845::-;9452:3;9489:5;9483:12;9518:36;9544:9;9518:36;:::i;:::-;9570:89;9652:6;9647:3;9570:89;:::i;:::-;9563:96;;9690:1;9679:9;9675:17;9706:1;9701:137;;;;9852:1;9847:341;;;;9668:520;;9701:137;9785:4;9781:9;9770;9766:25;9761:3;9754:38;9821:6;9816:3;9812:16;9805:23;;9701:137;;9847:341;9914:38;9946:5;9914:38;:::i;:::-;9974:1;9988:154;10002:6;9999:1;9996:13;9988:154;;;10076:7;10070:14;10066:1;10061:3;10057:11;10050:35;10126:1;10117:7;10113:15;10102:26;;10024:4;10021:1;10017:12;10012:17;;9988:154;;;10171:6;10166:3;10162:16;10155:23;;9854:334;;9668:520;;9456:738;;9349:845;;;;:::o;10200:366::-;10342:3;10363:67;10427:2;10422:3;10363:67;:::i;:::-;10356:74;;10439:93;10528:3;10439:93;:::i;:::-;10557:2;10552:3;10548:12;10541:19;;10200:366;;;:::o;10572:::-;10714:3;10735:67;10799:2;10794:3;10735:67;:::i;:::-;10728:74;;10811:93;10900:3;10811:93;:::i;:::-;10929:2;10924:3;10920:12;10913:19;;10572:366;;;:::o;10944:::-;11086:3;11107:67;11171:2;11166:3;11107:67;:::i;:::-;11100:74;;11183:93;11272:3;11183:93;:::i;:::-;11301:2;11296:3;11292:12;11285:19;;10944:366;;;:::o;11316:::-;11458:3;11479:67;11543:2;11538:3;11479:67;:::i;:::-;11472:74;;11555:93;11644:3;11555:93;:::i;:::-;11673:2;11668:3;11664:12;11657:19;;11316:366;;;:::o;11688:::-;11830:3;11851:67;11915:2;11910:3;11851:67;:::i;:::-;11844:74;;11927:93;12016:3;11927:93;:::i;:::-;12045:2;12040:3;12036:12;12029:19;;11688:366;;;:::o;12060:::-;12202:3;12223:67;12287:2;12282:3;12223:67;:::i;:::-;12216:74;;12299:93;12388:3;12299:93;:::i;:::-;12417:2;12412:3;12408:12;12401:19;;12060:366;;;:::o;12432:400::-;12592:3;12613:84;12695:1;12690:3;12613:84;:::i;:::-;12606:91;;12706:93;12795:3;12706:93;:::i;:::-;12824:1;12819:3;12815:11;12808:18;;12432:400;;;:::o;12838:366::-;12980:3;13001:67;13065:2;13060:3;13001:67;:::i;:::-;12994:74;;13077:93;13166:3;13077:93;:::i;:::-;13195:2;13190:3;13186:12;13179:19;;12838:366;;;:::o;13210:::-;13352:3;13373:67;13437:2;13432:3;13373:67;:::i;:::-;13366:74;;13449:93;13538:3;13449:93;:::i;:::-;13567:2;13562:3;13558:12;13551:19;;13210:366;;;:::o;13582:398::-;13741:3;13762:83;13843:1;13838:3;13762:83;:::i;:::-;13755:90;;13854:93;13943:3;13854:93;:::i;:::-;13972:1;13967:3;13963:11;13956:18;;13582:398;;;:::o;13986:366::-;14128:3;14149:67;14213:2;14208:3;14149:67;:::i;:::-;14142:74;;14225:93;14314:3;14225:93;:::i;:::-;14343:2;14338:3;14334:12;14327:19;;13986:366;;;:::o;14358:::-;14500:3;14521:67;14585:2;14580:3;14521:67;:::i;:::-;14514:74;;14597:93;14686:3;14597:93;:::i;:::-;14715:2;14710:3;14706:12;14699:19;;14358:366;;;:::o;14730:::-;14872:3;14893:67;14957:2;14952:3;14893:67;:::i;:::-;14886:74;;14969:93;15058:3;14969:93;:::i;:::-;15087:2;15082:3;15078:12;15071:19;;14730:366;;;:::o;15102:::-;15244:3;15265:67;15329:2;15324:3;15265:67;:::i;:::-;15258:74;;15341:93;15430:3;15341:93;:::i;:::-;15459:2;15454:3;15450:12;15443:19;;15102:366;;;:::o;15474:400::-;15634:3;15655:84;15737:1;15732:3;15655:84;:::i;:::-;15648:91;;15748:93;15837:3;15748:93;:::i;:::-;15866:1;15861:3;15857:11;15850:18;;15474:400;;;:::o;15880:118::-;15967:24;15985:5;15967:24;:::i;:::-;15962:3;15955:37;15880:118;;:::o;16004:961::-;16383:3;16405:92;16493:3;16484:6;16405:92;:::i;:::-;16398:99;;16514:148;16658:3;16514:148;:::i;:::-;16507:155;;16679:95;16770:3;16761:6;16679:95;:::i;:::-;16672:102;;16791:148;16935:3;16791:148;:::i;:::-;16784:155;;16956:3;16949:10;;16004:961;;;;;:::o;16971:379::-;17155:3;17177:147;17320:3;17177:147;:::i;:::-;17170:154;;17341:3;17334:10;;16971:379;;;:::o;17356:222::-;17449:4;17487:2;17476:9;17472:18;17464:26;;17500:71;17568:1;17557:9;17553:17;17544:6;17500:71;:::i;:::-;17356:222;;;;:::o;17584:640::-;17779:4;17817:3;17806:9;17802:19;17794:27;;17831:71;17899:1;17888:9;17884:17;17875:6;17831:71;:::i;:::-;17912:72;17980:2;17969:9;17965:18;17956:6;17912:72;:::i;:::-;17994;18062:2;18051:9;18047:18;18038:6;17994:72;:::i;:::-;18113:9;18107:4;18103:20;18098:2;18087:9;18083:18;18076:48;18141:76;18212:4;18203:6;18141:76;:::i;:::-;18133:84;;17584:640;;;;;;;:::o;18230:210::-;18317:4;18355:2;18344:9;18340:18;18332:26;;18368:65;18430:1;18419:9;18415:17;18406:6;18368:65;:::i;:::-;18230:210;;;;:::o;18446:313::-;18559:4;18597:2;18586:9;18582:18;18574:26;;18646:9;18640:4;18636:20;18632:1;18621:9;18617:17;18610:47;18674:78;18747:4;18738:6;18674:78;:::i;:::-;18666:86;;18446:313;;;;:::o;18765:419::-;18931:4;18969:2;18958:9;18954:18;18946:26;;19018:9;19012:4;19008:20;19004:1;18993:9;18989:17;18982:47;19046:131;19172:4;19046:131;:::i;:::-;19038:139;;18765:419;;;:::o;19190:::-;19356:4;19394:2;19383:9;19379:18;19371:26;;19443:9;19437:4;19433:20;19429:1;19418:9;19414:17;19407:47;19471:131;19597:4;19471:131;:::i;:::-;19463:139;;19190:419;;;:::o;19615:::-;19781:4;19819:2;19808:9;19804:18;19796:26;;19868:9;19862:4;19858:20;19854:1;19843:9;19839:17;19832:47;19896:131;20022:4;19896:131;:::i;:::-;19888:139;;19615:419;;;:::o;20040:::-;20206:4;20244:2;20233:9;20229:18;20221:26;;20293:9;20287:4;20283:20;20279:1;20268:9;20264:17;20257:47;20321:131;20447:4;20321:131;:::i;:::-;20313:139;;20040:419;;;:::o;20465:::-;20631:4;20669:2;20658:9;20654:18;20646:26;;20718:9;20712:4;20708:20;20704:1;20693:9;20689:17;20682:47;20746:131;20872:4;20746:131;:::i;:::-;20738:139;;20465:419;;;:::o;20890:::-;21056:4;21094:2;21083:9;21079:18;21071:26;;21143:9;21137:4;21133:20;21129:1;21118:9;21114:17;21107:47;21171:131;21297:4;21171:131;:::i;:::-;21163:139;;20890:419;;;:::o;21315:::-;21481:4;21519:2;21508:9;21504:18;21496:26;;21568:9;21562:4;21558:20;21554:1;21543:9;21539:17;21532:47;21596:131;21722:4;21596:131;:::i;:::-;21588:139;;21315:419;;;:::o;21740:::-;21906:4;21944:2;21933:9;21929:18;21921:26;;21993:9;21987:4;21983:20;21979:1;21968:9;21964:17;21957:47;22021:131;22147:4;22021:131;:::i;:::-;22013:139;;21740:419;;;:::o;22165:::-;22331:4;22369:2;22358:9;22354:18;22346:26;;22418:9;22412:4;22408:20;22404:1;22393:9;22389:17;22382:47;22446:131;22572:4;22446:131;:::i;:::-;22438:139;;22165:419;;;:::o;22590:::-;22756:4;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:131;22997:4;22871:131;:::i;:::-;22863:139;;22590:419;;;:::o;23015:::-;23181:4;23219:2;23208:9;23204:18;23196:26;;23268:9;23262:4;23258:20;23254:1;23243:9;23239:17;23232:47;23296:131;23422:4;23296:131;:::i;:::-;23288:139;;23015:419;;;:::o;23440:::-;23606:4;23644:2;23633:9;23629:18;23621:26;;23693:9;23687:4;23683:20;23679:1;23668:9;23664:17;23657:47;23721:131;23847:4;23721:131;:::i;:::-;23713:139;;23440:419;;;:::o;23865:222::-;23958:4;23996:2;23985:9;23981:18;23973:26;;24009:71;24077:1;24066:9;24062:17;24053:6;24009:71;:::i;:::-;23865:222;;;;:::o;24093:129::-;24127:6;24154:20;;:::i;:::-;24144:30;;24183:33;24211:4;24203:6;24183:33;:::i;:::-;24093:129;;;:::o;24228:75::-;24261:6;24294:2;24288:9;24278:19;;24228:75;:::o;24309:307::-;24370:4;24460:18;24452:6;24449:30;24446:56;;;24482:18;;:::i;:::-;24446:56;24520:29;24542:6;24520:29;:::i;:::-;24512:37;;24604:4;24598;24594:15;24586:23;;24309:307;;;:::o;24622:308::-;24684:4;24774:18;24766:6;24763:30;24760:56;;;24796:18;;:::i;:::-;24760:56;24834:29;24856:6;24834:29;:::i;:::-;24826:37;;24918:4;24912;24908:15;24900:23;;24622:308;;;:::o;24936:141::-;24985:4;25008:3;25000:11;;25031:3;25028:1;25021:14;25065:4;25062:1;25052:18;25044:26;;24936:141;;;:::o;25083:98::-;25134:6;25168:5;25162:12;25152:22;;25083:98;;;:::o;25187:99::-;25239:6;25273:5;25267:12;25257:22;;25187:99;;;:::o;25292:168::-;25375:11;25409:6;25404:3;25397:19;25449:4;25444:3;25440:14;25425:29;;25292:168;;;;:::o;25466:147::-;25567:11;25604:3;25589:18;;25466:147;;;;:::o;25619:169::-;25703:11;25737:6;25732:3;25725:19;25777:4;25772:3;25768:14;25753:29;;25619:169;;;;:::o;25794:148::-;25896:11;25933:3;25918:18;;25794:148;;;;:::o;25948:305::-;25988:3;26007:20;26025:1;26007:20;:::i;:::-;26002:25;;26041:20;26059:1;26041:20;:::i;:::-;26036:25;;26195:1;26127:66;26123:74;26120:1;26117:81;26114:107;;;26201:18;;:::i;:::-;26114:107;26245:1;26242;26238:9;26231:16;;25948:305;;;;:::o;26259:185::-;26299:1;26316:20;26334:1;26316:20;:::i;:::-;26311:25;;26350:20;26368:1;26350:20;:::i;:::-;26345:25;;26389:1;26379:35;;26394:18;;:::i;:::-;26379:35;26436:1;26433;26429:9;26424:14;;26259:185;;;;:::o;26450:348::-;26490:7;26513:20;26531:1;26513:20;:::i;:::-;26508:25;;26547:20;26565:1;26547:20;:::i;:::-;26542:25;;26735:1;26667:66;26663:74;26660:1;26657:81;26652:1;26645:9;26638:17;26634:105;26631:131;;;26742:18;;:::i;:::-;26631:131;26790:1;26787;26783:9;26772:20;;26450:348;;;;:::o;26804:191::-;26844:4;26864:20;26882:1;26864:20;:::i;:::-;26859:25;;26898:20;26916:1;26898:20;:::i;:::-;26893:25;;26937:1;26934;26931:8;26928:34;;;26942:18;;:::i;:::-;26928:34;26987:1;26984;26980:9;26972:17;;26804:191;;;;:::o;27001:96::-;27038:7;27067:24;27085:5;27067:24;:::i;:::-;27056:35;;27001:96;;;:::o;27103:90::-;27137:7;27180:5;27173:13;27166:21;27155:32;;27103:90;;;:::o;27199:149::-;27235:7;27275:66;27268:5;27264:78;27253:89;;27199:149;;;:::o;27354:126::-;27391:7;27431:42;27424:5;27420:54;27409:65;;27354:126;;;:::o;27486:77::-;27523:7;27552:5;27541:16;;27486:77;;;:::o;27569:154::-;27653:6;27648:3;27643;27630:30;27715:1;27706:6;27701:3;27697:16;27690:27;27569:154;;;:::o;27729:307::-;27797:1;27807:113;27821:6;27818:1;27815:13;27807:113;;;27906:1;27901:3;27897:11;27891:18;27887:1;27882:3;27878:11;27871:39;27843:2;27840:1;27836:10;27831:15;;27807:113;;;27938:6;27935:1;27932:13;27929:101;;;28018:1;28009:6;28004:3;28000:16;27993:27;27929:101;27778:258;27729:307;;;:::o;28042:320::-;28086:6;28123:1;28117:4;28113:12;28103:22;;28170:1;28164:4;28160:12;28191:18;28181:81;;28247:4;28239:6;28235:17;28225:27;;28181:81;28309:2;28301:6;28298:14;28278:18;28275:38;28272:84;;;28328:18;;:::i;:::-;28272:84;28093:269;28042:320;;;:::o;28368:281::-;28451:27;28473:4;28451:27;:::i;:::-;28443:6;28439:40;28581:6;28569:10;28566:22;28545:18;28533:10;28530:34;28527:62;28524:88;;;28592:18;;:::i;:::-;28524:88;28632:10;28628:2;28621:22;28411:238;28368:281;;:::o;28655:233::-;28694:3;28717:24;28735:5;28717:24;:::i;:::-;28708:33;;28763:66;28756:5;28753:77;28750:103;;;28833:18;;:::i;:::-;28750:103;28880:1;28873:5;28869:13;28862:20;;28655:233;;;:::o;28894:176::-;28926:1;28943:20;28961:1;28943:20;:::i;:::-;28938:25;;28977:20;28995:1;28977:20;:::i;:::-;28972:25;;29016:1;29006:35;;29021:18;;:::i;:::-;29006:35;29062:1;29059;29055:9;29050:14;;28894:176;;;;:::o;29076:180::-;29124:77;29121:1;29114:88;29221:4;29218:1;29211:15;29245:4;29242:1;29235:15;29262:180;29310:77;29307:1;29300:88;29407:4;29404:1;29397:15;29431:4;29428:1;29421:15;29448:180;29496:77;29493:1;29486:88;29593:4;29590:1;29583:15;29617:4;29614:1;29607:15;29634:180;29682:77;29679:1;29672:88;29779:4;29776:1;29769:15;29803:4;29800:1;29793:15;29820:180;29868:77;29865:1;29858:88;29965:4;29962:1;29955:15;29989:4;29986:1;29979:15;30006:117;30115:1;30112;30105:12;30129:117;30238:1;30235;30228:12;30252:117;30361:1;30358;30351:12;30375:117;30484:1;30481;30474:12;30498:102;30539:6;30590:2;30586:7;30581:2;30574:5;30570:14;30566:28;30556:38;;30498:102;;;:::o;30606:221::-;30746:34;30742:1;30734:6;30730:14;30723:58;30815:4;30810:2;30802:6;30798:15;30791:29;30606:221;:::o;30833:178::-;30973:30;30969:1;30961:6;30957:14;30950:54;30833:178;:::o;31017:225::-;31157:34;31153:1;31145:6;31141:14;31134:58;31226:8;31221:2;31213:6;31209:15;31202:33;31017:225;:::o;31248:245::-;31388:34;31384:1;31376:6;31372:14;31365:58;31457:28;31452:2;31444:6;31440:15;31433:53;31248:245;:::o;31499:179::-;31639:31;31635:1;31627:6;31623:14;31616:55;31499:179;:::o;31684:173::-;31824:25;31820:1;31812:6;31808:14;31801:49;31684:173;:::o;31863:155::-;32003:7;31999:1;31991:6;31987:14;31980:31;31863:155;:::o;32024:182::-;32164:34;32160:1;32152:6;32148:14;32141:58;32024:182;:::o;32212:234::-;32352:34;32348:1;32340:6;32336:14;32329:58;32421:17;32416:2;32408:6;32404:15;32397:42;32212:234;:::o;32452:114::-;;:::o;32572:169::-;32712:21;32708:1;32700:6;32696:14;32689:45;32572:169;:::o;32747:174::-;32887:26;32883:1;32875:6;32871:14;32864:50;32747:174;:::o;32927:181::-;33067:33;33063:1;33055:6;33051:14;33044:57;32927:181;:::o;33114:173::-;33254:25;33250:1;33242:6;33238:14;33231:49;33114:173;:::o;33293:151::-;33433:3;33429:1;33421:6;33417:14;33410:27;33293:151;:::o;33450:122::-;33523:24;33541:5;33523:24;:::i;:::-;33516:5;33513:35;33503:63;;33562:1;33559;33552:12;33503:63;33450:122;:::o;33578:116::-;33648:21;33663:5;33648:21;:::i;:::-;33641:5;33638:32;33628:60;;33684:1;33681;33674:12;33628:60;33578:116;:::o;33700:120::-;33772:23;33789:5;33772:23;:::i;:::-;33765:5;33762:34;33752:62;;33810:1;33807;33800:12;33752:62;33700:120;:::o;33826:122::-;33899:24;33917:5;33899:24;:::i;:::-;33892:5;33889:35;33879:63;;33938:1;33935;33928:12;33879:63;33826:122;:::o

Swarm Source

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