ETH Price: $2,442.60 (-1.30%)
 

Overview

Max Total Supply

777 MLANDS

Holders

351

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MLANDS
0xba230b23c10d6ccabecc79b6eba6d0f60ed37a93
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:
MedievalLands

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-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.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
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();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores 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 via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @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() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 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`,
     * 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,
        bytes calldata data
    ) external;

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` 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](https://eips.ethereum.org/EIPS/eip-2309) 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.2.2
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Reference type for token approval.
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    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: [ERC165](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.
    }

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 0x80 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: 0x20 + 3 * 0x20 = 0x80.
            str := add(mload(0x40), 0x80)
            // Update the free memory pointer to allocate.
            mstore(0x40, str)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

// File: contracts/ai.sol



pragma solidity ^0.8.0;






contract MedievalLands is ERC721A, Ownable, ReentrancyGuard {
  using Address for address;
  using Strings for uint;
  string  public  baseTokenURI = "ipfs://bafybeihkzfqz3wdrradleklfurc4ksr64fx3derbxxfqmaprg5mvqg7n3e";

  uint256 public  maxSupply = 777;
  uint256 public  MAX_MINTS_PER_TX = 1;
  uint256 public  PUBLIC_SALE_PRICE = 0.005 ether;
  
  bool public isPublicSaleActive = false;
  
  constructor() ERC721A("Medieval Lands", "MLANDS") {

  }
  
  function mint(uint256 numberOfTokens)
      external
      payable
  {
    require(isPublicSaleActive, "Public sale is not open");
    require(
      totalSupply() + numberOfTokens <= maxSupply,
      "Maximum supply exceeded"
    );
    require(
            (PUBLIC_SALE_PRICE * numberOfTokens) <= msg.value,
            "Incorrect ETH value sent"
    );
    require(numberOfTokens <= MAX_MINTS_PER_TX, "Too many for Tx");
    _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 numberOfTokens, address user)
    public
    onlyOwner
  {
    require(
      numberOfTokens > 0,
      "Invalid mint amount"
    );
    require(
      totalSupply() + numberOfTokens <= maxSupply,
      "Maximum supply exceeded"
    );
    _safeMint(user, numberOfTokens);
  }


  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 setSalePrice(uint256 _price)
      external
      onlyOwner
  {
      PUBLIC_SALE_PRICE = _price;
  }

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

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

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":"MAX_MINTS_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","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":"_price","type":"uint256"}],"name":"setSalePrice","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":"numberOfTokens","type":"uint256"},{"internalType":"address","name":"user","type":"address"}],"name":"treasuryMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060428152602001620034e260429139600a90805190602001906200003592919062000230565b50610309600b556001600c556611c37937e08000600d556000600e60006101000a81548160ff0219169083151502179055503480156200007457600080fd5b506040518060400160405280600e81526020017f4d6564696576616c204c616e64730000000000000000000000000000000000008152506040518060400160405280600681526020017f4d4c414e445300000000000000000000000000000000000000000000000000008152508160029080519060200190620000f992919062000230565b5080600390805190602001906200011292919062000230565b50620001236200015960201b60201c565b60008190555050506200014b6200013f6200016260201b60201c565b6200016a60201b60201c565b600160098190555062000345565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023e90620002e0565b90600052602060002090601f016020900481019282620002625760008555620002ae565b82601f106200027d57805160ff1916838001178555620002ae565b82800160010185558215620002ae579182015b82811115620002ad57825182559160200191906001019062000290565b5b509050620002bd9190620002c1565b5090565b5b80821115620002dc576000816000905550600101620002c2565b5090565b60006002820490506001821680620002f957607f821691505b6020821081141562000310576200030f62000316565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61318d80620003556000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb011461060b578063e985e9c514610636578063f2a3013e14610673578063f2fde38b1461069c576101c2565b8063b88d4fde1461054f578063c6a91b4214610578578063c87b56dd146105a3578063d547cfb7146105e0576101c2565b806395d89b41116100d157806395d89b41146104b65780639e9fcffc146104e1578063a0712d681461050a578063a22cb46514610526576101c2565b806370a0823114610437578063715018a6146104745780638da5cb5b1461048b576101c2565b80631e84c413116101645780633ccfd60b1161013e5780633ccfd60b1461039157806342842e0e146103a857806355f804b3146103d15780636352211e146103fa576101c2565b80631e84c4131461031457806323b872dd1461033f57806328cad13d14610368576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c05780631919fed7146102eb576101c2565b806301ffc9a7146101c757806306fdde031461020457806307e89ec01461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612318565b6106c5565b6040516101fb9190612817565b60405180910390f35b34801561021057600080fd5b50610219610757565b6040516102269190612832565b60405180910390f35b34801561023b57600080fd5b506102446107e9565b60405161025191906129b4565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c91906123bb565b6107ef565b60405161028e91906127b0565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b991906122ab565b61086e565b005b3480156102cc57600080fd5b506102d56109b2565b6040516102e291906129b4565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906123bb565b6109c9565b005b34801561032057600080fd5b506103296109db565b6040516103369190612817565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190612195565b6109ee565b005b34801561037457600080fd5b5061038f600480360381019061038a91906122eb565b610d13565b005b34801561039d57600080fd5b506103a6610d38565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612195565b610da2565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612372565b610dc2565b005b34801561040657600080fd5b50610421600480360381019061041c91906123bb565b610de4565b60405161042e91906127b0565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612128565b610df6565b60405161046b91906129b4565b60405180910390f35b34801561048057600080fd5b50610489610eaf565b005b34801561049757600080fd5b506104a0610ec3565b6040516104ad91906127b0565b60405180910390f35b3480156104c257600080fd5b506104cb610eed565b6040516104d89190612832565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906123bb565b610f7f565b005b610524600480360381019061051f91906123bb565b610f91565b005b34801561053257600080fd5b5061054d6004803603810190610548919061226b565b6110d9565b005b34801561055b57600080fd5b50610576600480360381019061057191906121e8565b611251565b005b34801561058457600080fd5b5061058d6112c4565b60405161059a91906129b4565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c591906123bb565b6112ca565b6040516105d79190612832565b60405180910390f35b3480156105ec57600080fd5b506105f5611346565b6040516106029190612832565b60405180910390f35b34801561061757600080fd5b506106206113d4565b60405161062d91906129b4565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612155565b6113da565b60405161066a9190612817565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906123e8565b61146e565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612128565b61151e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076690612c84565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612c84565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b600d5481565b60006107fa826115a2565b610830576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610de4565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a611601565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c1611601565b6113da565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109bc611609565b6001546000540303905090565b6109d1611612565b80600d8190555050565b600e60009054906101000a900460ff1681565b60006109f982611690565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6c8461175e565b91509150610a828187610a7d611601565b611785565b610ace57610a9786610a92611601565b6113da565b610acd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4286868660016117c9565b8015610b4d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1b85610bf78888876117cf565b7c0200000000000000000000000000000000000000000000000000000000176117f7565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ca3576000600185019050600060046000838152602001908152602001600020541415610ca1576000548114610ca0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0b8686866001611822565b505050505050565b610d1b611612565b80600e60006101000a81548160ff02191690831515021790555050565b610d40611612565b60026009541415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612974565b60405180910390fd5b6002600981905550610d983347611828565b6001600981905550565b610dbd83838360405180602001604052806000815250611251565b505050565b610dca611612565b80600a9080519060200190610de0929190611f3c565b5050565b6000610def82611690565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb7611612565b610ec1600061191c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610efc90612c84565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890612c84565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b610f87611612565b80600c8190555050565b600e60009054906101000a900460ff16610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612994565b60405180910390fd5b600b5481610fec6109b2565b610ff69190612ab9565b1115611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e906128b4565b60405180910390fd5b3481600d546110469190612b40565b1115611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90612954565b60405180910390fd5b600c548111156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612914565b60405180910390fd5b6110d633826119e2565b50565b6110e1611601565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611153611601565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611200611601565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112459190612817565b60405180910390a35050565b61125c8484846109ee565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112be5761128784848484611a00565b6112bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606112d5826115a2565b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906128f4565b60405180910390fd5b600a61131f83611b60565b604051602001611330929190612761565b6040516020818303038152906040529050919050565b600a805461135390612c84565b80601f016020809104026020016040519081016040528092919081815260200182805461137f90612c84565b80156113cc5780601f106113a1576101008083540402835291602001916113cc565b820191906000526020600020905b8154815290600101906020018083116113af57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611476611612565b600082116114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612934565b60405180910390fd5b600b54826114c56109b2565b6114cf9190612ab9565b1115611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906128b4565b60405180910390fd5b61151a81836119e2565b5050565b611526611612565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d90612854565b60405180910390fd5b61159f8161191c565b50565b6000816115ad611609565b111580156115bc575060005482105b80156115fa575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b61161a611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611638610ec3565b73ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611685906128d4565b60405180910390fd5b565b6000808290508061169f611609565b11611727576000548110156117265760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611724575b600081141561171a5760046000836001900393508381526020019081526020016000205490506116ef565b8092505050611759565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117e6868684611cc9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290612894565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118919061279b565b60006040518083038185875af1925050503d80600081146118ce576040519150601f19603f3d011682016040523d82523d6000602084013e6118d3565b606091505b5050905080611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90612874565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119fc828260405180602001604052806000815250611cd2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a26611601565b8786866040518563ffffffff1660e01b8152600401611a4894939291906127cb565b602060405180830381600087803b158015611a6257600080fd5b505af1925050508015611a9357506040513d601f19601f82011682018060405250810190611a909190612345565b60015b611b0d573d8060008114611ac3576040519150601f19603f3d011682016040523d82523d6000602084013e611ac8565b606091505b50600081511415611b05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ba8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cbc565b600082905060005b60008214611bda578080611bc390612ce7565b915050600a82611bd39190612b0f565b9150611bb0565b60008167ffffffffffffffff811115611bf657611bf5612e1d565b5b6040519080825280601f01601f191660200182016040528015611c285781602001600182028036833780820191505090505b5090505b60008514611cb557600182611c419190612b9a565b9150600a85611c509190612d30565b6030611c5c9190612ab9565b60f81b818381518110611c7257611c71612dee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cae9190612b0f565b9450611c2c565b8093505050505b919050565b600033905090565b60009392505050565b611cdc8383611d6f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6a57600080549050600083820390505b611d1c6000868380600101945086611a00565b611d52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d09578160005414611d6757600080fd5b50505b505050565b6000805490506000821415611db0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dbd60008483856117c9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e3483611e2560008660006117cf565b611e2e85611f2c565b176117f7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ed557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e9a565b506000821415611f11576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f276000848385611822565b505050565b60006001821460e11b9050919050565b828054611f4890612c84565b90600052602060002090601f016020900481019282611f6a5760008555611fb1565b82601f10611f8357805160ff1916838001178555611fb1565b82800160010185558215611fb1579182015b82811115611fb0578251825591602001919060010190611f95565b5b509050611fbe9190611fc2565b5090565b5b80821115611fdb576000816000905550600101611fc3565b5090565b6000611ff2611fed846129f4565b6129cf565b90508281526020810184848401111561200e5761200d612e51565b5b612019848285612c42565b509392505050565b600061203461202f84612a25565b6129cf565b9050828152602081018484840111156120505761204f612e51565b5b61205b848285612c42565b509392505050565b600081359050612072816130fb565b92915050565b60008135905061208781613112565b92915050565b60008135905061209c81613129565b92915050565b6000815190506120b181613129565b92915050565b600082601f8301126120cc576120cb612e4c565b5b81356120dc848260208601611fdf565b91505092915050565b600082601f8301126120fa576120f9612e4c565b5b813561210a848260208601612021565b91505092915050565b60008135905061212281613140565b92915050565b60006020828403121561213e5761213d612e5b565b5b600061214c84828501612063565b91505092915050565b6000806040838503121561216c5761216b612e5b565b5b600061217a85828601612063565b925050602061218b85828601612063565b9150509250929050565b6000806000606084860312156121ae576121ad612e5b565b5b60006121bc86828701612063565b93505060206121cd86828701612063565b92505060406121de86828701612113565b9150509250925092565b6000806000806080858703121561220257612201612e5b565b5b600061221087828801612063565b945050602061222187828801612063565b935050604061223287828801612113565b925050606085013567ffffffffffffffff81111561225357612252612e56565b5b61225f878288016120b7565b91505092959194509250565b6000806040838503121561228257612281612e5b565b5b600061229085828601612063565b92505060206122a185828601612078565b9150509250929050565b600080604083850312156122c2576122c1612e5b565b5b60006122d085828601612063565b92505060206122e185828601612113565b9150509250929050565b60006020828403121561230157612300612e5b565b5b600061230f84828501612078565b91505092915050565b60006020828403121561232e5761232d612e5b565b5b600061233c8482850161208d565b91505092915050565b60006020828403121561235b5761235a612e5b565b5b6000612369848285016120a2565b91505092915050565b60006020828403121561238857612387612e5b565b5b600082013567ffffffffffffffff8111156123a6576123a5612e56565b5b6123b2848285016120e5565b91505092915050565b6000602082840312156123d1576123d0612e5b565b5b60006123df84828501612113565b91505092915050565b600080604083850312156123ff576123fe612e5b565b5b600061240d85828601612113565b925050602061241e85828601612063565b9150509250929050565b61243181612bce565b82525050565b61244081612be0565b82525050565b600061245182612a6b565b61245b8185612a81565b935061246b818560208601612c51565b61247481612e60565b840191505092915050565b600061248a82612a76565b6124948185612a9d565b93506124a4818560208601612c51565b6124ad81612e60565b840191505092915050565b60006124c382612a76565b6124cd8185612aae565b93506124dd818560208601612c51565b80840191505092915050565b600081546124f681612c84565b6125008186612aae565b9450600182166000811461251b576001811461252c5761255f565b60ff1983168652818601935061255f565b61253585612a56565b60005b8381101561255757815481890152600182019150602081019050612538565b838801955050505b50505092915050565b6000612575602683612a9d565b915061258082612e71565b604082019050919050565b6000612598603a83612a9d565b91506125a382612ec0565b604082019050919050565b60006125bb601d83612a9d565b91506125c682612f0f565b602082019050919050565b60006125de601783612a9d565b91506125e982612f38565b602082019050919050565b6000612601600583612aae565b915061260c82612f61565b600582019050919050565b6000612624602083612a9d565b915061262f82612f8a565b602082019050919050565b6000612647602f83612a9d565b915061265282612fb3565b604082019050919050565b600061266a600083612a92565b915061267582613002565b600082019050919050565b600061268d600f83612a9d565b915061269882613005565b602082019050919050565b60006126b0601383612a9d565b91506126bb8261302e565b602082019050919050565b60006126d3601883612a9d565b91506126de82613057565b602082019050919050565b60006126f6601f83612a9d565b915061270182613080565b602082019050919050565b6000612719601783612a9d565b9150612724826130a9565b602082019050919050565b600061273c600183612aae565b9150612747826130d2565b600182019050919050565b61275b81612c38565b82525050565b600061276d82856124e9565b91506127788261272f565b915061278482846124b8565b915061278f826125f4565b91508190509392505050565b60006127a68261265d565b9150819050919050565b60006020820190506127c56000830184612428565b92915050565b60006080820190506127e06000830187612428565b6127ed6020830186612428565b6127fa6040830185612752565b818103606083015261280c8184612446565b905095945050505050565b600060208201905061282c6000830184612437565b92915050565b6000602082019050818103600083015261284c818461247f565b905092915050565b6000602082019050818103600083015261286d81612568565b9050919050565b6000602082019050818103600083015261288d8161258b565b9050919050565b600060208201905081810360008301526128ad816125ae565b9050919050565b600060208201905081810360008301526128cd816125d1565b9050919050565b600060208201905081810360008301526128ed81612617565b9050919050565b6000602082019050818103600083015261290d8161263a565b9050919050565b6000602082019050818103600083015261292d81612680565b9050919050565b6000602082019050818103600083015261294d816126a3565b9050919050565b6000602082019050818103600083015261296d816126c6565b9050919050565b6000602082019050818103600083015261298d816126e9565b9050919050565b600060208201905081810360008301526129ad8161270c565b9050919050565b60006020820190506129c96000830184612752565b92915050565b60006129d96129ea565b90506129e58282612cb6565b919050565b6000604051905090565b600067ffffffffffffffff821115612a0f57612a0e612e1d565b5b612a1882612e60565b9050602081019050919050565b600067ffffffffffffffff821115612a4057612a3f612e1d565b5b612a4982612e60565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ac482612c38565b9150612acf83612c38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b0457612b03612d61565b5b828201905092915050565b6000612b1a82612c38565b9150612b2583612c38565b925082612b3557612b34612d90565b5b828204905092915050565b6000612b4b82612c38565b9150612b5683612c38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b8f57612b8e612d61565b5b828202905092915050565b6000612ba582612c38565b9150612bb083612c38565b925082821015612bc357612bc2612d61565b5b828203905092915050565b6000612bd982612c18565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c6f578082015181840152602081019050612c54565b83811115612c7e576000848401525b50505050565b60006002820490506001821680612c9c57607f821691505b60208210811415612cb057612caf612dbf565b5b50919050565b612cbf82612e60565b810181811067ffffffffffffffff82111715612cde57612cdd612e1d565b5b80604052505050565b6000612cf282612c38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d2557612d24612d61565b5b600182019050919050565b6000612d3b82612c38565b9150612d4683612c38565b925082612d5657612d55612d90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f546f6f206d616e7920666f722054780000000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61310481612bce565b811461310f57600080fd5b50565b61311b81612be0565b811461312657600080fd5b50565b61313281612bec565b811461313d57600080fd5b50565b61314981612c38565b811461315457600080fd5b5056fea2646970667358221220145677d54ef28a6b7a3986a62c892cab01241fcdfb14e78a2420104ec9b96cc864736f6c63430008070033697066733a2f2f62616679626569686b7a66717a337764727261646c656b6c66757263346b7372363466783364657262787866716d61707267356d767167376e3365

Deployed Bytecode

0x6080604052600436106101c25760003560e01c806370a08231116100f7578063b88d4fde11610095578063d5abeb0111610064578063d5abeb011461060b578063e985e9c514610636578063f2a3013e14610673578063f2fde38b1461069c576101c2565b8063b88d4fde1461054f578063c6a91b4214610578578063c87b56dd146105a3578063d547cfb7146105e0576101c2565b806395d89b41116100d157806395d89b41146104b65780639e9fcffc146104e1578063a0712d681461050a578063a22cb46514610526576101c2565b806370a0823114610437578063715018a6146104745780638da5cb5b1461048b576101c2565b80631e84c413116101645780633ccfd60b1161013e5780633ccfd60b1461039157806342842e0e146103a857806355f804b3146103d15780636352211e146103fa576101c2565b80631e84c4131461031457806323b872dd1461033f57806328cad13d14610368576101c2565b8063081812fc116101a0578063081812fc1461025a578063095ea7b31461029757806318160ddd146102c05780631919fed7146102eb576101c2565b806301ffc9a7146101c757806306fdde031461020457806307e89ec01461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612318565b6106c5565b6040516101fb9190612817565b60405180910390f35b34801561021057600080fd5b50610219610757565b6040516102269190612832565b60405180910390f35b34801561023b57600080fd5b506102446107e9565b60405161025191906129b4565b60405180910390f35b34801561026657600080fd5b50610281600480360381019061027c91906123bb565b6107ef565b60405161028e91906127b0565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b991906122ab565b61086e565b005b3480156102cc57600080fd5b506102d56109b2565b6040516102e291906129b4565b60405180910390f35b3480156102f757600080fd5b50610312600480360381019061030d91906123bb565b6109c9565b005b34801561032057600080fd5b506103296109db565b6040516103369190612817565b60405180910390f35b34801561034b57600080fd5b5061036660048036038101906103619190612195565b6109ee565b005b34801561037457600080fd5b5061038f600480360381019061038a91906122eb565b610d13565b005b34801561039d57600080fd5b506103a6610d38565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190612195565b610da2565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190612372565b610dc2565b005b34801561040657600080fd5b50610421600480360381019061041c91906123bb565b610de4565b60405161042e91906127b0565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612128565b610df6565b60405161046b91906129b4565b60405180910390f35b34801561048057600080fd5b50610489610eaf565b005b34801561049757600080fd5b506104a0610ec3565b6040516104ad91906127b0565b60405180910390f35b3480156104c257600080fd5b506104cb610eed565b6040516104d89190612832565b60405180910390f35b3480156104ed57600080fd5b50610508600480360381019061050391906123bb565b610f7f565b005b610524600480360381019061051f91906123bb565b610f91565b005b34801561053257600080fd5b5061054d6004803603810190610548919061226b565b6110d9565b005b34801561055b57600080fd5b50610576600480360381019061057191906121e8565b611251565b005b34801561058457600080fd5b5061058d6112c4565b60405161059a91906129b4565b60405180910390f35b3480156105af57600080fd5b506105ca60048036038101906105c591906123bb565b6112ca565b6040516105d79190612832565b60405180910390f35b3480156105ec57600080fd5b506105f5611346565b6040516106029190612832565b60405180910390f35b34801561061757600080fd5b506106206113d4565b60405161062d91906129b4565b60405180910390f35b34801561064257600080fd5b5061065d60048036038101906106589190612155565b6113da565b60405161066a9190612817565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906123e8565b61146e565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612128565b61151e565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107505750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461076690612c84565b80601f016020809104026020016040519081016040528092919081815260200182805461079290612c84565b80156107df5780601f106107b4576101008083540402835291602001916107df565b820191906000526020600020905b8154815290600101906020018083116107c257829003601f168201915b5050505050905090565b600d5481565b60006107fa826115a2565b610830576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061087982610de4565b90508073ffffffffffffffffffffffffffffffffffffffff1661089a611601565b73ffffffffffffffffffffffffffffffffffffffff16146108fd576108c6816108c1611601565b6113da565b6108fc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109bc611609565b6001546000540303905090565b6109d1611612565b80600d8190555050565b600e60009054906101000a900460ff1681565b60006109f982611690565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a60576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a6c8461175e565b91509150610a828187610a7d611601565b611785565b610ace57610a9786610a92611601565b6113da565b610acd576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b35576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b4286868660016117c9565b8015610b4d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c1b85610bf78888876117cf565b7c0200000000000000000000000000000000000000000000000000000000176117f7565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ca3576000600185019050600060046000838152602001908152602001600020541415610ca1576000548114610ca0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d0b8686866001611822565b505050505050565b610d1b611612565b80600e60006101000a81548160ff02191690831515021790555050565b610d40611612565b60026009541415610d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7d90612974565b60405180910390fd5b6002600981905550610d983347611828565b6001600981905550565b610dbd83838360405180602001604052806000815250611251565b505050565b610dca611612565b80600a9080519060200190610de0929190611f3c565b5050565b6000610def82611690565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e5e576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610eb7611612565b610ec1600061191c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610efc90612c84565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890612c84565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b610f87611612565b80600c8190555050565b600e60009054906101000a900460ff16610fe0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd790612994565b60405180910390fd5b600b5481610fec6109b2565b610ff69190612ab9565b1115611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e906128b4565b60405180910390fd5b3481600d546110469190612b40565b1115611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90612954565b60405180910390fd5b600c548111156110cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c390612914565b60405180910390fd5b6110d633826119e2565b50565b6110e1611601565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611146576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611153611601565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611200611601565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112459190612817565b60405180910390a35050565b61125c8484846109ee565b60008373ffffffffffffffffffffffffffffffffffffffff163b146112be5761128784848484611a00565b6112bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600c5481565b60606112d5826115a2565b611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b906128f4565b60405180910390fd5b600a61131f83611b60565b604051602001611330929190612761565b6040516020818303038152906040529050919050565b600a805461135390612c84565b80601f016020809104026020016040519081016040528092919081815260200182805461137f90612c84565b80156113cc5780601f106113a1576101008083540402835291602001916113cc565b820191906000526020600020905b8154815290600101906020018083116113af57829003601f168201915b505050505081565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611476611612565b600082116114b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b090612934565b60405180910390fd5b600b54826114c56109b2565b6114cf9190612ab9565b1115611510576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611507906128b4565b60405180910390fd5b61151a81836119e2565b5050565b611526611612565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611596576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158d90612854565b60405180910390fd5b61159f8161191c565b50565b6000816115ad611609565b111580156115bc575060005482105b80156115fa575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b61161a611cc1565b73ffffffffffffffffffffffffffffffffffffffff16611638610ec3565b73ffffffffffffffffffffffffffffffffffffffff161461168e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611685906128d4565b60405180910390fd5b565b6000808290508061169f611609565b11611727576000548110156117265760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611724575b600081141561171a5760046000836001900393508381526020019081526020016000205490506116ef565b8092505050611759565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86117e6868684611cc9565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290612894565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118919061279b565b60006040518083038185875af1925050503d80600081146118ce576040519150601f19603f3d011682016040523d82523d6000602084013e6118d3565b606091505b5050905080611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90612874565b60405180910390fd5b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6119fc828260405180602001604052806000815250611cd2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611a26611601565b8786866040518563ffffffff1660e01b8152600401611a4894939291906127cb565b602060405180830381600087803b158015611a6257600080fd5b505af1925050508015611a9357506040513d601f19601f82011682018060405250810190611a909190612345565b60015b611b0d573d8060008114611ac3576040519150601f19603f3d011682016040523d82523d6000602084013e611ac8565b606091505b50600081511415611b05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415611ba8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611cbc565b600082905060005b60008214611bda578080611bc390612ce7565b915050600a82611bd39190612b0f565b9150611bb0565b60008167ffffffffffffffff811115611bf657611bf5612e1d565b5b6040519080825280601f01601f191660200182016040528015611c285781602001600182028036833780820191505090505b5090505b60008514611cb557600182611c419190612b9a565b9150600a85611c509190612d30565b6030611c5c9190612ab9565b60f81b818381518110611c7257611c71612dee565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611cae9190612b0f565b9450611c2c565b8093505050505b919050565b600033905090565b60009392505050565b611cdc8383611d6f565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6a57600080549050600083820390505b611d1c6000868380600101945086611a00565b611d52576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d09578160005414611d6757600080fd5b50505b505050565b6000805490506000821415611db0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dbd60008483856117c9565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e3483611e2560008660006117cf565b611e2e85611f2c565b176117f7565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611ed557808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611e9a565b506000821415611f11576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f276000848385611822565b505050565b60006001821460e11b9050919050565b828054611f4890612c84565b90600052602060002090601f016020900481019282611f6a5760008555611fb1565b82601f10611f8357805160ff1916838001178555611fb1565b82800160010185558215611fb1579182015b82811115611fb0578251825591602001919060010190611f95565b5b509050611fbe9190611fc2565b5090565b5b80821115611fdb576000816000905550600101611fc3565b5090565b6000611ff2611fed846129f4565b6129cf565b90508281526020810184848401111561200e5761200d612e51565b5b612019848285612c42565b509392505050565b600061203461202f84612a25565b6129cf565b9050828152602081018484840111156120505761204f612e51565b5b61205b848285612c42565b509392505050565b600081359050612072816130fb565b92915050565b60008135905061208781613112565b92915050565b60008135905061209c81613129565b92915050565b6000815190506120b181613129565b92915050565b600082601f8301126120cc576120cb612e4c565b5b81356120dc848260208601611fdf565b91505092915050565b600082601f8301126120fa576120f9612e4c565b5b813561210a848260208601612021565b91505092915050565b60008135905061212281613140565b92915050565b60006020828403121561213e5761213d612e5b565b5b600061214c84828501612063565b91505092915050565b6000806040838503121561216c5761216b612e5b565b5b600061217a85828601612063565b925050602061218b85828601612063565b9150509250929050565b6000806000606084860312156121ae576121ad612e5b565b5b60006121bc86828701612063565b93505060206121cd86828701612063565b92505060406121de86828701612113565b9150509250925092565b6000806000806080858703121561220257612201612e5b565b5b600061221087828801612063565b945050602061222187828801612063565b935050604061223287828801612113565b925050606085013567ffffffffffffffff81111561225357612252612e56565b5b61225f878288016120b7565b91505092959194509250565b6000806040838503121561228257612281612e5b565b5b600061229085828601612063565b92505060206122a185828601612078565b9150509250929050565b600080604083850312156122c2576122c1612e5b565b5b60006122d085828601612063565b92505060206122e185828601612113565b9150509250929050565b60006020828403121561230157612300612e5b565b5b600061230f84828501612078565b91505092915050565b60006020828403121561232e5761232d612e5b565b5b600061233c8482850161208d565b91505092915050565b60006020828403121561235b5761235a612e5b565b5b6000612369848285016120a2565b91505092915050565b60006020828403121561238857612387612e5b565b5b600082013567ffffffffffffffff8111156123a6576123a5612e56565b5b6123b2848285016120e5565b91505092915050565b6000602082840312156123d1576123d0612e5b565b5b60006123df84828501612113565b91505092915050565b600080604083850312156123ff576123fe612e5b565b5b600061240d85828601612113565b925050602061241e85828601612063565b9150509250929050565b61243181612bce565b82525050565b61244081612be0565b82525050565b600061245182612a6b565b61245b8185612a81565b935061246b818560208601612c51565b61247481612e60565b840191505092915050565b600061248a82612a76565b6124948185612a9d565b93506124a4818560208601612c51565b6124ad81612e60565b840191505092915050565b60006124c382612a76565b6124cd8185612aae565b93506124dd818560208601612c51565b80840191505092915050565b600081546124f681612c84565b6125008186612aae565b9450600182166000811461251b576001811461252c5761255f565b60ff1983168652818601935061255f565b61253585612a56565b60005b8381101561255757815481890152600182019150602081019050612538565b838801955050505b50505092915050565b6000612575602683612a9d565b915061258082612e71565b604082019050919050565b6000612598603a83612a9d565b91506125a382612ec0565b604082019050919050565b60006125bb601d83612a9d565b91506125c682612f0f565b602082019050919050565b60006125de601783612a9d565b91506125e982612f38565b602082019050919050565b6000612601600583612aae565b915061260c82612f61565b600582019050919050565b6000612624602083612a9d565b915061262f82612f8a565b602082019050919050565b6000612647602f83612a9d565b915061265282612fb3565b604082019050919050565b600061266a600083612a92565b915061267582613002565b600082019050919050565b600061268d600f83612a9d565b915061269882613005565b602082019050919050565b60006126b0601383612a9d565b91506126bb8261302e565b602082019050919050565b60006126d3601883612a9d565b91506126de82613057565b602082019050919050565b60006126f6601f83612a9d565b915061270182613080565b602082019050919050565b6000612719601783612a9d565b9150612724826130a9565b602082019050919050565b600061273c600183612aae565b9150612747826130d2565b600182019050919050565b61275b81612c38565b82525050565b600061276d82856124e9565b91506127788261272f565b915061278482846124b8565b915061278f826125f4565b91508190509392505050565b60006127a68261265d565b9150819050919050565b60006020820190506127c56000830184612428565b92915050565b60006080820190506127e06000830187612428565b6127ed6020830186612428565b6127fa6040830185612752565b818103606083015261280c8184612446565b905095945050505050565b600060208201905061282c6000830184612437565b92915050565b6000602082019050818103600083015261284c818461247f565b905092915050565b6000602082019050818103600083015261286d81612568565b9050919050565b6000602082019050818103600083015261288d8161258b565b9050919050565b600060208201905081810360008301526128ad816125ae565b9050919050565b600060208201905081810360008301526128cd816125d1565b9050919050565b600060208201905081810360008301526128ed81612617565b9050919050565b6000602082019050818103600083015261290d8161263a565b9050919050565b6000602082019050818103600083015261292d81612680565b9050919050565b6000602082019050818103600083015261294d816126a3565b9050919050565b6000602082019050818103600083015261296d816126c6565b9050919050565b6000602082019050818103600083015261298d816126e9565b9050919050565b600060208201905081810360008301526129ad8161270c565b9050919050565b60006020820190506129c96000830184612752565b92915050565b60006129d96129ea565b90506129e58282612cb6565b919050565b6000604051905090565b600067ffffffffffffffff821115612a0f57612a0e612e1d565b5b612a1882612e60565b9050602081019050919050565b600067ffffffffffffffff821115612a4057612a3f612e1d565b5b612a4982612e60565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000612ac482612c38565b9150612acf83612c38565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612b0457612b03612d61565b5b828201905092915050565b6000612b1a82612c38565b9150612b2583612c38565b925082612b3557612b34612d90565b5b828204905092915050565b6000612b4b82612c38565b9150612b5683612c38565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b8f57612b8e612d61565b5b828202905092915050565b6000612ba582612c38565b9150612bb083612c38565b925082821015612bc357612bc2612d61565b5b828203905092915050565b6000612bd982612c18565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612c6f578082015181840152602081019050612c54565b83811115612c7e576000848401525b50505050565b60006002820490506001821680612c9c57607f821691505b60208210811415612cb057612caf612dbf565b5b50919050565b612cbf82612e60565b810181811067ffffffffffffffff82111715612cde57612cdd612e1d565b5b80604052505050565b6000612cf282612c38565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612d2557612d24612d61565b5b600182019050919050565b6000612d3b82612c38565b9150612d4683612c38565b925082612d5657612d55612d90565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4d6178696d756d20737570706c79206578636565646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b50565b7f546f6f206d616e7920666f722054780000000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f5075626c69632073616c65206973206e6f74206f70656e000000000000000000600082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b61310481612bce565b811461310f57600080fd5b50565b61311b81612be0565b811461312657600080fd5b50565b61313281612bec565b811461313d57600080fd5b50565b61314981612c38565b811461315457600080fd5b5056fea2646970667358221220145677d54ef28a6b7a3986a62c892cab01241fcdfb14e78a2420104ec9b96cc864736f6c63430008070033

Deployed Bytecode Sourcemap

68404:2532:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35943:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36845:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68709:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43328:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42769:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32596:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70533:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68765:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47035:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70377:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70791:142;;;;;;;;;;;;;:::i;:::-;;49948:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69371:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38238:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33780:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16691:103;;;;;;;;;;;;;:::i;:::-;;16043:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37021:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70654:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68878:485;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43886:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50731:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68668:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69918:312;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68526:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68632:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44351:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69594:316;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16949:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35943:639;36028:4;36367:10;36352:25;;:11;:25;;;;:102;;;;36444:10;36429:25;;:11;:25;;;;36352:102;:179;;;;36521:10;36506:25;;:11;:25;;;;36352:179;36332:199;;35943:639;;;:::o;36845:100::-;36899:13;36932:5;36925:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36845:100;:::o;68709:47::-;;;;:::o;43328:218::-;43404:7;43429:16;43437:7;43429;:16::i;:::-;43424:64;;43454:34;;;;;;;;;;;;;;43424:64;43508:15;:24;43524:7;43508:24;;;;;;;;;;;:30;;;;;;;;;;;;43501:37;;43328:218;;;:::o;42769:400::-;42850:13;42866:16;42874:7;42866;:16::i;:::-;42850:32;;42922:5;42899:28;;:19;:17;:19::i;:::-;:28;;;42895:175;;42947:44;42964:5;42971:19;:17;:19::i;:::-;42947:16;:44::i;:::-;42942:128;;43019:35;;;;;;;;;;;;;;42942:128;42895:175;43115:2;43082:15;:24;43098:7;43082:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;43153:7;43149:2;43133:28;;43142:5;43133:28;;;;;;;;;;;;42839:330;42769:400;;:::o;32596:323::-;32657:7;32885:15;:13;:15::i;:::-;32870:12;;32854:13;;:28;:46;32847:53;;32596:323;:::o;70533:115::-;15929:13;:11;:13::i;:::-;70636:6:::1;70616:17;:26;;;;70533:115:::0;:::o;68765:38::-;;;;;;;;;;;;;:::o;47035:2817::-;47169:27;47199;47218:7;47199:18;:27::i;:::-;47169:57;;47284:4;47243:45;;47259:19;47243:45;;;47239:86;;47297:28;;;;;;;;;;;;;;47239:86;47339:27;47368:23;47395:35;47422:7;47395:26;:35::i;:::-;47338:92;;;;47530:68;47555:15;47572:4;47578:19;:17;:19::i;:::-;47530:24;:68::i;:::-;47525:180;;47618:43;47635:4;47641:19;:17;:19::i;:::-;47618:16;:43::i;:::-;47613:92;;47670:35;;;;;;;;;;;;;;47613:92;47525:180;47736:1;47722:16;;:2;:16;;;47718:52;;;47747:23;;;;;;;;;;;;;;47718:52;47783:43;47805:4;47811:2;47815:7;47824:1;47783:21;:43::i;:::-;47919:15;47916:160;;;48059:1;48038:19;48031:30;47916:160;48456:18;:24;48475:4;48456:24;;;;;;;;;;;;;;;;48454:26;;;;;;;;;;;;48525:18;:22;48544:2;48525:22;;;;;;;;;;;;;;;;48523:24;;;;;;;;;;;48847:146;48884:2;48933:45;48948:4;48954:2;48958:19;48933:14;:45::i;:::-;28995:8;48905:73;48847:18;:146::i;:::-;48818:17;:26;48836:7;48818:26;;;;;;;;;;;:175;;;;49164:1;28995:8;49113:19;:47;:52;49109:627;;;49186:19;49218:1;49208:7;:11;49186:33;;49375:1;49341:17;:30;49359:11;49341:30;;;;;;;;;;;;:35;49337:384;;;49479:13;;49464:11;:28;49460:242;;49659:19;49626:17;:30;49644:11;49626:30;;;;;;;;;;;:52;;;;49460:242;49337:384;49167:569;49109:627;49783:7;49779:2;49764:27;;49773:4;49764:27;;;;;;;;;;;;49802:42;49823:4;49829:2;49833:7;49842:1;49802:20;:42::i;:::-;47158:2694;;;47035:2817;;;:::o;70377:148::-;15929:13;:11;:13::i;:::-;70500:19:::1;70479:18;;:40;;;;;;;;;;;;;;;;;;70377:148:::0;:::o;70791:142::-;15929:13;:11;:13::i;:::-;12968:1:::1;13566:7;;:19;;13558:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;12968:1;13699:7;:18;;;;70866:61:::2;70892:10;70905:21;70866:17;:61::i;:::-;12924:1:::1;13878:7;:22;;;;70791:142::o:0;49948:185::-;50086:39;50103:4;50109:2;50113:7;50086:39;;;;;;;;;;;;:16;:39::i;:::-;49948:185;;;:::o;69371:108::-;15929:13;:11;:13::i;:::-;69466:7:::1;69451:12;:22;;;;;;;;;;;;:::i;:::-;;69371:108:::0;:::o;38238:152::-;38310:7;38353:27;38372:7;38353:18;:27::i;:::-;38330:52;;38238:152;;;:::o;33780:233::-;33852:7;33893:1;33876:19;;:5;:19;;;33872:60;;;33904:28;;;;;;;;;;;;;;33872:60;27939:13;33950:18;:25;33969:5;33950:25;;;;;;;;;;;;;;;;:55;33943:62;;33780:233;;;:::o;16691:103::-;15929:13;:11;:13::i;:::-;16756:30:::1;16783:1;16756:18;:30::i;:::-;16691:103::o:0;16043:87::-;16089:7;16116:6;;;;;;;;;;;16109:13;;16043:87;:::o;37021:104::-;37077:13;37110:7;37103:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37021:104;:::o;70654:127::-;15929:13;:11;:13::i;:::-;70769:6:::1;70750:16;:25;;;;70654:127:::0;:::o;68878:485::-;68965:18;;;;;;;;;;;68957:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;69068:9;;69050:14;69034:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;69018:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;69187:9;69168:14;69148:17;;:34;;;;:::i;:::-;69147:49;;69125:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;69277:16;;69259:14;:34;;69251:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;69320:37;69330:10;69342:14;69320:9;:37::i;:::-;68878:485;:::o;43886:308::-;43997:19;:17;:19::i;:::-;43985:31;;:8;:31;;;43981:61;;;44025:17;;;;;;;;;;;;;;43981:61;44107:8;44055:18;:39;44074:19;:17;:19::i;:::-;44055:39;;;;;;;;;;;;;;;:49;44095:8;44055:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;44167:8;44131:55;;44146:19;:17;:19::i;:::-;44131:55;;;44177:8;44131:55;;;;;;:::i;:::-;;;;;;;;43886:308;;:::o;50731:399::-;50898:31;50911:4;50917:2;50921:7;50898:12;:31::i;:::-;50962:1;50944:2;:14;;;:19;50940:183;;50983:56;51014:4;51020:2;51024:7;51033:5;50983:30;:56::i;:::-;50978:145;;51067:40;;;;;;;;;;;;;;50978:145;50940:183;50731:399;;;;:::o;68668:36::-;;;;:::o;69918:312::-;70014:13;70055:17;70063:8;70055:7;:17::i;:::-;70039:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;70175:12;70194:19;:8;:17;:19::i;:::-;70158:65;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70144:80;;69918:312;;;:::o;68526:99::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;68632:31::-;;;;:::o;44351:164::-;44448:4;44472:18;:25;44491:5;44472:25;;;;;;;;;;;;;;;:35;44498:8;44472:35;;;;;;;;;;;;;;;;;;;;;;;;;44465:42;;44351:164;;;;:::o;69594:316::-;15929:13;:11;:13::i;:::-;69721:1:::1;69704:14;:18;69688:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;69816:9;;69798:14;69782:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;69766:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;69873:31;69883:4;69889:14;69873:9;:31::i;:::-;69594:316:::0;;:::o;16949:201::-;15929:13;:11;:13::i;:::-;17058:1:::1;17038:22;;:8;:22;;;;17030:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;17114:28;17133:8;17114:18;:28::i;:::-;16949:201:::0;:::o;44773:282::-;44838:4;44894:7;44875:15;:13;:15::i;:::-;:26;;:66;;;;;44928:13;;44918:7;:23;44875:66;:153;;;;;45027:1;28715:8;44979:17;:26;44997:7;44979:26;;;;;;;;;;;;:44;:49;44875:153;44855:173;;44773:282;;;:::o;66539:105::-;66599:7;66626:10;66619:17;;66539:105;:::o;69487:101::-;69552:7;69579:1;69572:8;;69487:101;:::o;16208:132::-;16283:12;:10;:12::i;:::-;16272:23;;:7;:5;:7::i;:::-;:23;;;16264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16208:132::o;39393:1275::-;39460:7;39480:12;39495:7;39480:22;;39563:4;39544:15;:13;:15::i;:::-;:23;39540:1061;;39597:13;;39590:4;:20;39586:1015;;;39635:14;39652:17;:23;39670:4;39652:23;;;;;;;;;;;;39635:40;;39769:1;28715:8;39741:6;:24;:29;39737:845;;;40406:113;40423:1;40413:6;:11;40406:113;;;40466:17;:25;40484:6;;;;;;;40466:25;;;;;;;;;;;;40457:34;;40406:113;;;40552:6;40545:13;;;;;;39737:845;39612:989;39586:1015;39540:1061;40629:31;;;;;;;;;;;;;;39393:1275;;;;:::o;45936:479::-;46038:27;46067:23;46108:38;46149:15;:24;46165:7;46149:24;;;;;;;;;;;46108:65;;46320:18;46297:41;;46377:19;46371:26;46352:45;;46282:126;45936:479;;;:::o;45164:659::-;45313:11;45478:16;45471:5;45467:28;45458:37;;45638:16;45627:9;45623:32;45610:45;;45788:15;45777:9;45774:30;45766:5;45755:9;45752:20;45749:56;45739:66;;45164:659;;;;;:::o;51792:159::-;;;;;:::o;65848:311::-;65983:7;66003:16;29119:3;66029:19;:41;;66003:68;;29119:3;66097:31;66108:4;66114:2;66118:9;66097:10;:31::i;:::-;66089:40;;:62;;66082:69;;;65848:311;;;;;:::o;41216:450::-;41296:14;41464:16;41457:5;41453:28;41444:37;;41641:5;41627:11;41602:23;41598:41;41595:52;41588:5;41585:63;41575:73;;41216:450;;;;:::o;52616:158::-;;;;;:::o;5097:317::-;5212:6;5187:21;:31;;5179:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5266:12;5284:9;:14;;5306:6;5284:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5265:52;;;5336:7;5328:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;5168:246;5097:317;;:::o;17310:191::-;17384:16;17403:6;;;;;;;;;;;17384:25;;17429:8;17420:6;;:17;;;;;;;;;;;;;;;;;;17484:8;17453:40;;17474:8;17453:40;;;;;;;;;;;;17373:128;17310:191;:::o;60371:112::-;60448:27;60458:2;60462:8;60448:27;;;;;;;;;;;;:9;:27::i;:::-;60371:112;;:::o;53214:716::-;53377:4;53423:2;53398:45;;;53444:19;:17;:19::i;:::-;53465:4;53471:7;53480:5;53398:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53394:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53698:1;53681:6;:13;:18;53677:235;;;53727:40;;;;;;;;;;;;;;53677:235;53870:6;53864:13;53855:6;53851:2;53847:15;53840:38;53394:529;53567:54;;;53557:64;;;:6;:64;;;;53550:71;;;53214:716;;;;;;:::o;536:723::-;592:13;822:1;813:5;:10;809:53;;;840:10;;;;;;;;;;;;;;;;;;;;;809:53;872:12;887:5;872:20;;903:14;928:78;943:1;935:4;:9;928:78;;961:8;;;;;:::i;:::-;;;;992:2;984:10;;;;;:::i;:::-;;;928:78;;;1016:19;1048:6;1038:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1016:39;;1066:154;1082:1;1073:5;:10;1066:154;;1110:1;1100:11;;;;;:::i;:::-;;;1177:2;1169:5;:10;;;;:::i;:::-;1156:2;:24;;;;:::i;:::-;1143:39;;1126:6;1133;1126:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1206:2;1197:11;;;;;:::i;:::-;;;1066:154;;;1244:6;1230:21;;;;;536:723;;;;:::o;14594:98::-;14647:7;14674:10;14667:17;;14594:98;:::o;65549:147::-;65686:6;65549:147;;;;;:::o;59598:689::-;59729:19;59735:2;59739:8;59729:5;:19::i;:::-;59808:1;59790:2;:14;;;:19;59786:483;;59830:11;59844:13;;59830:27;;59876:13;59898:8;59892:3;:14;59876:30;;59925:233;59956:62;59995:1;59999:2;60003:7;;;;;;60012:5;59956:30;:62::i;:::-;59951:167;;60054:40;;;;;;;;;;;;;;59951:167;60153:3;60145:5;:11;59925:233;;60240:3;60223:13;;:20;60219:34;;60245:8;;;60219:34;59811:458;;59786:483;59598:689;;;:::o;54392:2454::-;54465:20;54488:13;;54465:36;;54528:1;54516:8;:13;54512:44;;;54538:18;;;;;;;;;;;;;;54512:44;54569:61;54599:1;54603:2;54607:12;54621:8;54569:21;:61::i;:::-;55113:1;28077:2;55083:1;:26;;55082:32;55070:8;:45;55044:18;:22;55063:2;55044:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;55392:139;55429:2;55483:33;55506:1;55510:2;55514:1;55483:14;:33::i;:::-;55450:30;55471:8;55450:20;:30::i;:::-;:66;55392:18;:139::i;:::-;55358:17;:31;55376:12;55358:31;;;;;;;;;;;:173;;;;55548:16;55579:11;55608:8;55593:12;:23;55579:37;;55863:16;55859:2;55855:25;55843:37;;56235:12;56195:8;56154:1;56092:25;56033:1;55972;55945:335;56360:1;56346:12;56342:20;56300:346;56401:3;56392:7;56389:16;56300:346;;56619:7;56609:8;56606:1;56579:25;56576:1;56573;56568:59;56454:1;56445:7;56441:15;56430:26;;56300:346;;;56304:77;56691:1;56679:8;:13;56675:45;;;56701:19;;;;;;;;;;;;;;56675:45;56753:3;56737:13;:19;;;;54818:1950;;56778:60;56807:1;56811:2;56815:12;56829:8;56778:20;:60::i;:::-;54454:2392;54392:2454;;:::o;41768:324::-;41838:14;42071:1;42061:8;42058:15;42032:24;42028:46;42018:56;;41768:324;;;:::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:400::-;11848:3;11869:84;11951:1;11946:3;11869:84;:::i;:::-;11862:91;;11962:93;12051:3;11962:93;:::i;:::-;12080:1;12075:3;12071:11;12064:18;;11688:400;;;:::o;12094:366::-;12236:3;12257:67;12321:2;12316:3;12257:67;:::i;:::-;12250:74;;12333:93;12422:3;12333:93;:::i;:::-;12451:2;12446:3;12442:12;12435:19;;12094:366;;;:::o;12466:::-;12608:3;12629:67;12693:2;12688:3;12629:67;:::i;:::-;12622:74;;12705:93;12794:3;12705:93;:::i;:::-;12823:2;12818:3;12814:12;12807:19;;12466:366;;;:::o;12838:398::-;12997:3;13018:83;13099:1;13094:3;13018:83;:::i;:::-;13011:90;;13110:93;13199:3;13110:93;:::i;:::-;13228:1;13223:3;13219:11;13212:18;;12838:398;;;:::o;13242:366::-;13384:3;13405:67;13469:2;13464:3;13405:67;:::i;:::-;13398:74;;13481:93;13570:3;13481:93;:::i;:::-;13599:2;13594:3;13590:12;13583:19;;13242:366;;;:::o;13614:::-;13756:3;13777:67;13841:2;13836:3;13777:67;:::i;:::-;13770:74;;13853:93;13942:3;13853:93;:::i;:::-;13971:2;13966:3;13962:12;13955:19;;13614:366;;;:::o;13986:::-;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:400::-;15262:3;15283:84;15365:1;15360:3;15283:84;:::i;:::-;15276:91;;15376:93;15465:3;15376:93;:::i;:::-;15494:1;15489:3;15485:11;15478:18;;15102:400;;;:::o;15508:118::-;15595:24;15613:5;15595:24;:::i;:::-;15590:3;15583:37;15508:118;;:::o;15632:961::-;16011:3;16033:92;16121:3;16112:6;16033:92;:::i;:::-;16026:99;;16142:148;16286:3;16142:148;:::i;:::-;16135:155;;16307:95;16398:3;16389:6;16307:95;:::i;:::-;16300:102;;16419:148;16563:3;16419:148;:::i;:::-;16412:155;;16584:3;16577:10;;15632:961;;;;;:::o;16599:379::-;16783:3;16805:147;16948:3;16805:147;:::i;:::-;16798:154;;16969:3;16962:10;;16599:379;;;:::o;16984:222::-;17077:4;17115:2;17104:9;17100:18;17092:26;;17128:71;17196:1;17185:9;17181:17;17172:6;17128:71;:::i;:::-;16984:222;;;;:::o;17212:640::-;17407:4;17445:3;17434:9;17430:19;17422:27;;17459:71;17527:1;17516:9;17512:17;17503:6;17459:71;:::i;:::-;17540:72;17608:2;17597:9;17593:18;17584:6;17540:72;:::i;:::-;17622;17690:2;17679:9;17675:18;17666:6;17622:72;:::i;:::-;17741:9;17735:4;17731:20;17726:2;17715:9;17711:18;17704:48;17769:76;17840:4;17831:6;17769:76;:::i;:::-;17761:84;;17212:640;;;;;;;:::o;17858:210::-;17945:4;17983:2;17972:9;17968:18;17960:26;;17996:65;18058:1;18047:9;18043:17;18034:6;17996:65;:::i;:::-;17858:210;;;;:::o;18074:313::-;18187:4;18225:2;18214:9;18210:18;18202:26;;18274:9;18268:4;18264:20;18260:1;18249:9;18245:17;18238:47;18302:78;18375:4;18366:6;18302:78;:::i;:::-;18294:86;;18074:313;;;;:::o;18393:419::-;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:131;18800:4;18674:131;:::i;:::-;18666:139;;18393:419;;;:::o;18818:::-;18984:4;19022:2;19011:9;19007:18;18999:26;;19071:9;19065:4;19061:20;19057:1;19046:9;19042:17;19035:47;19099:131;19225:4;19099:131;:::i;:::-;19091:139;;18818:419;;;:::o;19243:::-;19409:4;19447:2;19436:9;19432:18;19424:26;;19496:9;19490:4;19486:20;19482:1;19471:9;19467:17;19460:47;19524:131;19650:4;19524:131;:::i;:::-;19516:139;;19243:419;;;:::o;19668:::-;19834:4;19872:2;19861:9;19857:18;19849:26;;19921:9;19915:4;19911:20;19907:1;19896:9;19892:17;19885:47;19949:131;20075:4;19949:131;:::i;:::-;19941:139;;19668:419;;;:::o;20093:::-;20259:4;20297:2;20286:9;20282:18;20274:26;;20346:9;20340:4;20336:20;20332:1;20321:9;20317:17;20310:47;20374:131;20500:4;20374:131;:::i;:::-;20366:139;;20093:419;;;:::o;20518:::-;20684:4;20722:2;20711:9;20707:18;20699:26;;20771:9;20765:4;20761:20;20757:1;20746:9;20742:17;20735:47;20799:131;20925:4;20799:131;:::i;:::-;20791:139;;20518:419;;;:::o;20943:::-;21109:4;21147:2;21136:9;21132:18;21124:26;;21196:9;21190:4;21186:20;21182:1;21171:9;21167:17;21160:47;21224:131;21350:4;21224:131;:::i;:::-;21216:139;;20943:419;;;:::o;21368:::-;21534:4;21572:2;21561:9;21557:18;21549:26;;21621:9;21615:4;21611:20;21607:1;21596:9;21592:17;21585:47;21649:131;21775:4;21649:131;:::i;:::-;21641:139;;21368:419;;;:::o;21793:::-;21959:4;21997:2;21986:9;21982:18;21974:26;;22046:9;22040:4;22036:20;22032:1;22021:9;22017:17;22010:47;22074:131;22200:4;22074:131;:::i;:::-;22066:139;;21793:419;;;:::o;22218:::-;22384:4;22422:2;22411:9;22407:18;22399:26;;22471:9;22465:4;22461:20;22457:1;22446:9;22442:17;22435:47;22499:131;22625:4;22499:131;:::i;:::-;22491:139;;22218:419;;;:::o;22643:::-;22809:4;22847:2;22836:9;22832:18;22824:26;;22896:9;22890:4;22886:20;22882:1;22871:9;22867:17;22860:47;22924:131;23050:4;22924:131;:::i;:::-;22916:139;;22643:419;;;:::o;23068:222::-;23161:4;23199:2;23188:9;23184:18;23176:26;;23212:71;23280:1;23269:9;23265:17;23256:6;23212:71;:::i;:::-;23068:222;;;;:::o;23296:129::-;23330:6;23357:20;;:::i;:::-;23347:30;;23386:33;23414:4;23406:6;23386:33;:::i;:::-;23296:129;;;:::o;23431:75::-;23464:6;23497:2;23491:9;23481:19;;23431:75;:::o;23512:307::-;23573:4;23663:18;23655:6;23652:30;23649:56;;;23685:18;;:::i;:::-;23649:56;23723:29;23745:6;23723:29;:::i;:::-;23715:37;;23807:4;23801;23797:15;23789:23;;23512:307;;;:::o;23825:308::-;23887:4;23977:18;23969:6;23966:30;23963:56;;;23999:18;;:::i;:::-;23963:56;24037:29;24059:6;24037:29;:::i;:::-;24029:37;;24121:4;24115;24111:15;24103:23;;23825:308;;;:::o;24139:141::-;24188:4;24211:3;24203:11;;24234:3;24231:1;24224:14;24268:4;24265:1;24255:18;24247:26;;24139:141;;;:::o;24286:98::-;24337:6;24371:5;24365:12;24355:22;;24286:98;;;:::o;24390:99::-;24442:6;24476:5;24470:12;24460:22;;24390:99;;;:::o;24495:168::-;24578:11;24612:6;24607:3;24600:19;24652:4;24647:3;24643:14;24628:29;;24495:168;;;;:::o;24669:147::-;24770:11;24807:3;24792:18;;24669:147;;;;:::o;24822:169::-;24906:11;24940:6;24935:3;24928:19;24980:4;24975:3;24971:14;24956:29;;24822:169;;;;:::o;24997:148::-;25099:11;25136:3;25121:18;;24997:148;;;;:::o;25151:305::-;25191:3;25210:20;25228:1;25210:20;:::i;:::-;25205:25;;25244:20;25262:1;25244:20;:::i;:::-;25239:25;;25398:1;25330:66;25326:74;25323:1;25320:81;25317:107;;;25404:18;;:::i;:::-;25317:107;25448:1;25445;25441:9;25434:16;;25151:305;;;;:::o;25462:185::-;25502:1;25519:20;25537:1;25519:20;:::i;:::-;25514:25;;25553:20;25571:1;25553:20;:::i;:::-;25548:25;;25592:1;25582:35;;25597:18;;:::i;:::-;25582:35;25639:1;25636;25632:9;25627:14;;25462:185;;;;:::o;25653:348::-;25693:7;25716:20;25734:1;25716:20;:::i;:::-;25711:25;;25750:20;25768:1;25750:20;:::i;:::-;25745:25;;25938:1;25870:66;25866:74;25863:1;25860:81;25855:1;25848:9;25841:17;25837:105;25834:131;;;25945:18;;:::i;:::-;25834:131;25993:1;25990;25986:9;25975:20;;25653:348;;;;:::o;26007:191::-;26047:4;26067:20;26085:1;26067:20;:::i;:::-;26062:25;;26101:20;26119:1;26101:20;:::i;:::-;26096:25;;26140:1;26137;26134:8;26131:34;;;26145:18;;:::i;:::-;26131:34;26190:1;26187;26183:9;26175:17;;26007:191;;;;:::o;26204:96::-;26241:7;26270:24;26288:5;26270:24;:::i;:::-;26259:35;;26204:96;;;:::o;26306:90::-;26340:7;26383:5;26376:13;26369:21;26358:32;;26306:90;;;:::o;26402:149::-;26438:7;26478:66;26471:5;26467:78;26456:89;;26402:149;;;:::o;26557:126::-;26594:7;26634:42;26627:5;26623:54;26612:65;;26557:126;;;:::o;26689:77::-;26726:7;26755:5;26744:16;;26689:77;;;:::o;26772:154::-;26856:6;26851:3;26846;26833:30;26918:1;26909:6;26904:3;26900:16;26893:27;26772:154;;;:::o;26932:307::-;27000:1;27010:113;27024:6;27021:1;27018:13;27010:113;;;27109:1;27104:3;27100:11;27094:18;27090:1;27085:3;27081:11;27074:39;27046:2;27043:1;27039:10;27034:15;;27010:113;;;27141:6;27138:1;27135:13;27132:101;;;27221:1;27212:6;27207:3;27203:16;27196:27;27132:101;26981:258;26932:307;;;:::o;27245:320::-;27289:6;27326:1;27320:4;27316:12;27306:22;;27373:1;27367:4;27363:12;27394:18;27384:81;;27450:4;27442:6;27438:17;27428:27;;27384:81;27512:2;27504:6;27501:14;27481:18;27478:38;27475:84;;;27531:18;;:::i;:::-;27475:84;27296:269;27245:320;;;:::o;27571:281::-;27654:27;27676:4;27654:27;:::i;:::-;27646:6;27642:40;27784:6;27772:10;27769:22;27748:18;27736:10;27733:34;27730:62;27727:88;;;27795:18;;:::i;:::-;27727:88;27835:10;27831:2;27824:22;27614:238;27571:281;;:::o;27858:233::-;27897:3;27920:24;27938:5;27920:24;:::i;:::-;27911:33;;27966:66;27959:5;27956:77;27953:103;;;28036:18;;:::i;:::-;27953:103;28083:1;28076:5;28072:13;28065:20;;27858:233;;;:::o;28097:176::-;28129:1;28146:20;28164:1;28146:20;:::i;:::-;28141:25;;28180:20;28198:1;28180:20;:::i;:::-;28175:25;;28219:1;28209:35;;28224:18;;:::i;:::-;28209:35;28265:1;28262;28258:9;28253:14;;28097:176;;;;:::o;28279:180::-;28327:77;28324:1;28317:88;28424:4;28421:1;28414:15;28448:4;28445:1;28438:15;28465:180;28513:77;28510:1;28503:88;28610:4;28607:1;28600:15;28634:4;28631:1;28624:15;28651:180;28699:77;28696:1;28689:88;28796:4;28793:1;28786:15;28820:4;28817:1;28810:15;28837:180;28885:77;28882:1;28875:88;28982:4;28979:1;28972:15;29006:4;29003:1;28996:15;29023:180;29071:77;29068:1;29061:88;29168:4;29165:1;29158:15;29192:4;29189:1;29182:15;29209:117;29318:1;29315;29308:12;29332:117;29441:1;29438;29431:12;29455:117;29564:1;29561;29554:12;29578:117;29687:1;29684;29677:12;29701:102;29742:6;29793:2;29789:7;29784:2;29777:5;29773:14;29769:28;29759:38;;29701:102;;;:::o;29809:225::-;29949:34;29945:1;29937:6;29933:14;29926:58;30018:8;30013:2;30005:6;30001:15;29994:33;29809:225;:::o;30040:245::-;30180:34;30176:1;30168:6;30164:14;30157:58;30249:28;30244:2;30236:6;30232:15;30225:53;30040:245;:::o;30291:179::-;30431:31;30427:1;30419:6;30415:14;30408:55;30291:179;:::o;30476:173::-;30616:25;30612:1;30604:6;30600:14;30593:49;30476:173;:::o;30655:155::-;30795:7;30791:1;30783:6;30779:14;30772:31;30655:155;:::o;30816:182::-;30956:34;30952:1;30944:6;30940:14;30933:58;30816:182;:::o;31004:234::-;31144:34;31140:1;31132:6;31128:14;31121:58;31213:17;31208:2;31200:6;31196:15;31189:42;31004:234;:::o;31244:114::-;;:::o;31364:165::-;31504:17;31500:1;31492:6;31488:14;31481:41;31364:165;:::o;31535:169::-;31675:21;31671:1;31663:6;31659:14;31652:45;31535:169;:::o;31710:174::-;31850:26;31846:1;31838:6;31834:14;31827:50;31710:174;:::o;31890:181::-;32030:33;32026:1;32018:6;32014:14;32007:57;31890:181;:::o;32077:173::-;32217:25;32213:1;32205:6;32201:14;32194:49;32077:173;:::o;32256:151::-;32396:3;32392:1;32384:6;32380:14;32373:27;32256:151;:::o;32413:122::-;32486:24;32504:5;32486:24;:::i;:::-;32479:5;32476:35;32466:63;;32525:1;32522;32515:12;32466:63;32413:122;:::o;32541:116::-;32611:21;32626:5;32611:21;:::i;:::-;32604:5;32601:32;32591:60;;32647:1;32644;32637:12;32591:60;32541:116;:::o;32663:120::-;32735:23;32752:5;32735:23;:::i;:::-;32728:5;32725:34;32715:62;;32773:1;32770;32763:12;32715:62;32663:120;:::o;32789:122::-;32862:24;32880:5;32862:24;:::i;:::-;32855:5;32852:35;32842:63;;32901:1;32898;32891:12;32842:63;32789:122;:::o

Swarm Source

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