ETH Price: $2,604.31 (-2.16%)

Token

Tubby Milady Maker (TUBMIL)
 

Overview

Max Total Supply

1,133 TUBMIL

Holders

183

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TUBMIL
0x0F7a1e945b12867E17Cfc077649E584dE032E1d1
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:
TubbyMiladys

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/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 v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/interfaces/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (interfaces/IERC721.sol)

pragma solidity ^0.8.0;


// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set through `_extraData`.
        uint24 extraData;
    }

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See `_packedOwnershipOf` implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1);

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            // We can directly increment and decrement the balances.
            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1;

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

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

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

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

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

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

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

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

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

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

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

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

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

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

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

// File: contracts/TubbyMilady.sol

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

/// @author Tubby Milady






contract TubbyMiladys is Ownable, ERC721A, ReentrancyGuard {

  uint256 public TUBBY_MILADY_SUPPLY = 4800;
  uint256 public TEAM_AMOUNT = 48;

  bool public mintLive;
  bool public teamMinted;
  bool public revealed;

  string public baseURI;
  string public unrevealedURI = "ipfs://bafybeia4w6sgbg4fiksqg7eqsokeh2yiksroy47zjpnwwks27iirkvdnya/0";

  address public TUBBY_CONTRACT = 0xCa7cA7BcC765F77339bE2d648BA53ce9c8a262bD;
  address public MILADY_CONTRACT = 0x5Af0D9827E0c53E4799BB226655A1de152A425a5;

  constructor() ERC721A("Tubby Milady Maker", "TUBMIL") {}

  function mintTubbyMiladys(uint256 mintAmount) public payable {
    require(mintLive, "Mint not live");
    require(totalSupply() + mintAmount <= TUBBY_MILADY_SUPPLY, "Sold out");

    uint256 tubbyMiladyPrice;
    if (mintAmount >= 5 || holdsMiladyOrTubby(msg.sender)) {
      tubbyMiladyPrice = 0.0085 ether;
      require(msg.value >= tubbyMiladyPrice * mintAmount, "Not enough ETH (0.0085 each)");
    } else {
      tubbyMiladyPrice = 0.017 ether;
      require(msg.value >= tubbyMiladyPrice * mintAmount, "Not enough ETH (.017 each)");
    }
    _safeMint(msg.sender, mintAmount);
  }

  function mintTubbyMiladyTeam() external onlyOwner {
    require(!teamMinted, "Team already minted");
    teamMinted = !teamMinted;
    _safeMint(0x265D5CEDbCecf2a70E78D31D0AcC7BE8617de7B9, TEAM_AMOUNT);
  }

  function holdsMiladyOrTubby(address tubbyMilady) public view returns (bool) {
    return IERC721(MILADY_CONTRACT).balanceOf(tubbyMilady) > 0 || IERC721(TUBBY_CONTRACT).balanceOf(tubbyMilady) > 0;
  }

  function tokenURI(uint256 tokenId_) public view override returns (string memory) {
    if(!revealed || tokenId_ >= totalSupply()) {
      return unrevealedURI;
    }
    return string(abi.encodePacked(baseURI, Strings.toString(tokenId_)));
  }

  function toggleMint() external onlyOwner {
    mintLive = !mintLive;
  }

  function flipReveal(string calldata newURI) external onlyOwner {
    require(!revealed, "Already revealed");
    baseURI = newURI;
    revealed = !revealed;
  }

  function setBaseURI(string calldata newURI) external onlyOwner {
    baseURI = newURI;
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }
}

// ( ͡` ͜ʖ ͡´)

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":"MILADY_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TUBBY_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TUBBY_MILADY_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"flipReveal","outputs":[],"stateMutability":"nonpayable","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":"tubbyMilady","type":"address"}],"name":"holdsMiladyOrTubby","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"mintLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintTubbyMiladyTeam","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mintTubbyMiladys","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":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526112c0600a556030600b5560405180608001604052806044815260200162003a4760449139600e908051906020019062000040929190620002ae565b5073ca7ca7bcc765f77339be2d648ba53ce9c8a262bd600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735af0d9827e0c53e4799bb226655a1de152a425a5601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f857600080fd5b506040518060400160405280601281526020017f5475626279204d696c616479204d616b657200000000000000000000000000008152506040518060400160405280600681526020017f5455424d494c00000000000000000000000000000000000000000000000000008152506200018562000179620001dd60201b60201c565b620001e560201b60201c565b81600390805190602001906200019d929190620002ae565b508060049080519060200190620001b6929190620002ae565b50620001c7620002a960201b60201c565b60018190555050506001600981905550620003c3565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b828054620002bc906200035e565b90600052602060002090601f016020900481019282620002e057600085556200032c565b82601f10620002fb57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032b5782518255916020019190600101906200030e565b5b5090506200033b91906200033f565b5090565b5b808211156200035a57600081600090555060010162000340565b5090565b600060028204905060018216806200037757607f821691505b602082108114156200038e576200038d62000394565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61367480620003d36000396000f3fe6080604052600436106101ee5760003560e01c806370a082311161010d578063d1866f3d116100a0578063e8656fcc1161006f578063e8656fcc146106a6578063e8b5498d146106d1578063e985e9c5146106fc578063f0971f4614610739578063f2fde38b14610764576101ee565b8063d1866f3d14610624578063d3dd5fe01461063b578063d7dcccf314610652578063e1bc85a11461067b576101ee565b806395d89b41116100dc57806395d89b411461056a578063a22cb46514610595578063b88d4fde146105be578063c87b56dd146105e7576101ee565b806370a08231146104c0578063715018a6146104fd5780638b32f62a146105145780638da5cb5b1461053f576101ee565b80633ccfd60b1161018557806355f804b31161015457806355f804b3146104045780636352211e1461042d5780636c0360eb1461046a5780637035bf1814610495576101ee565b80633ccfd60b1461036e57806342842e0e146103855780634a371621146103ae57806351830227146103d9576101ee565b806318160ddd116101c157806318160ddd146102c15780631fe7aba2146102ec57806323b872dd146103295780633c7d9c8814610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061299b565b61078d565b6040516102279190612e0c565b60405180910390f35b34801561023c57600080fd5b5061024561081f565b6040516102529190612e27565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612a42565b6108b1565b60405161028f9190612da5565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061295b565b61092d565b005b3480156102cd57600080fd5b506102d6610a6e565b6040516102e39190612f89565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906127d8565b610a85565b6040516103209190612e0c565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612845565b610bf0565b005b61036c60048036038101906103679190612a42565b610f15565b005b34801561037a57600080fd5b5061038361109b565b005b34801561039157600080fd5b506103ac60048036038101906103a79190612845565b61121c565b005b3480156103ba57600080fd5b506103c361123c565b6040516103d09190612da5565b60405180910390f35b3480156103e557600080fd5b506103ee611262565b6040516103fb9190612e0c565b60405180910390f35b34801561041057600080fd5b5061042b600480360381019061042691906129f5565b611275565b005b34801561043957600080fd5b50610454600480360381019061044f9190612a42565b611307565b6040516104619190612da5565b60405180910390f35b34801561047657600080fd5b5061047f611319565b60405161048c9190612e27565b60405180910390f35b3480156104a157600080fd5b506104aa6113a7565b6040516104b79190612e27565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e291906127d8565b611435565b6040516104f49190612f89565b60405180910390f35b34801561050957600080fd5b506105126114ee565b005b34801561052057600080fd5b50610529611576565b6040516105369190612f89565b60405180910390f35b34801561054b57600080fd5b5061055461157c565b6040516105619190612da5565b60405180910390f35b34801561057657600080fd5b5061057f6115a5565b60405161058c9190612e27565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061291b565b611637565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190612898565b6117af565b005b3480156105f357600080fd5b5061060e60048036038101906106099190612a42565b611822565b60405161061b9190612e27565b60405180910390f35b34801561063057600080fd5b50610639611911565b005b34801561064757600080fd5b50610650611a29565b005b34801561065e57600080fd5b50610679600480360381019061067491906129f5565b611ad1565b005b34801561068757600080fd5b50610690611bdd565b60405161069d9190612da5565b60405180910390f35b3480156106b257600080fd5b506106bb611c03565b6040516106c89190612e0c565b60405180910390f35b3480156106dd57600080fd5b506106e6611c16565b6040516106f39190612e0c565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612805565b611c29565b6040516107309190612e0c565b60405180910390f35b34801561074557600080fd5b5061074e611cbd565b60405161075b9190612f89565b60405180910390f35b34801561077057600080fd5b5061078b600480360381019061078691906127d8565b611cc3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108185750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461082e90613228565b80601f016020809104026020016040519081016040528092919081815260200182805461085a90613228565b80156108a75780601f1061087c576101008083540402835291602001916108a7565b820191906000526020600020905b81548152906001019060200180831161088a57829003601f168201915b5050505050905090565b60006108bc82611dbb565b6108f2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093882611307565b90508073ffffffffffffffffffffffffffffffffffffffff16610959611e1a565b73ffffffffffffffffffffffffffffffffffffffff16146109bc5761098581610980611e1a565b611c29565b6109bb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a78611e22565b6002546001540303905090565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610ae39190612da5565b60206040518083038186803b158015610afb57600080fd5b505afa158015610b0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b339190612a6f565b1180610be957506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610b979190612da5565b60206040518083038186803b158015610baf57600080fd5b505afa158015610bc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be79190612a6f565b115b9050919050565b6000610bfb82611e27565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c62576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6e84611ef5565b91509150610c848187610c7f611e1a565b611f17565b610cd057610c9986610c94611e1a565b611c29565b610ccf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d37576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d448686866001611f5b565b8015610d4f57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1d85610df9888887611f61565b7c020000000000000000000000000000000000000000000000000000000017611f89565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ea5576000600185019050600060056000838152602001908152602001600020541415610ea3576001548114610ea2578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f0d8686866001611fb4565b505050505050565b600c60009054906101000a900460ff16610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612ea9565b60405180910390fd5b600a5481610f70610a6e565b610f7a919061305d565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290612f49565b60405180910390fd5b6000600582101580610fd25750610fd133610a85565b5b1561103457661e32b47897400090508181610fed91906130e4565b34101561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690612e89565b60405180910390fd5b61108d565b663c6568f12e80009050818161104a91906130e4565b34101561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612ec9565b60405180910390fd5b5b6110973383611fba565b5050565b6110a3611fd8565b73ffffffffffffffffffffffffffffffffffffffff166110c161157c565b73ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612f09565b60405180910390fd5b6002600954141561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490612f69565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161118b90612d90565b60006040518083038185875af1925050503d80600081146111c8576040519150601f19603f3d011682016040523d82523d6000602084013e6111cd565b606091505b5050905080611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612f29565b60405180910390fd5b506001600981905550565b611237838383604051806020016040528060008152506117af565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b61127d611fd8565b73ffffffffffffffffffffffffffffffffffffffff1661129b61157c565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612f09565b60405180910390fd5b8181600d91906113029291906125f1565b505050565b600061131282611e27565b9050919050565b600d805461132690613228565b80601f016020809104026020016040519081016040528092919081815260200182805461135290613228565b801561139f5780601f106113745761010080835404028352916020019161139f565b820191906000526020600020905b81548152906001019060200180831161138257829003601f168201915b505050505081565b600e80546113b490613228565b80601f01602080910402602001604051908101604052809291908181526020018280546113e090613228565b801561142d5780601f106114025761010080835404028352916020019161142d565b820191906000526020600020905b81548152906001019060200180831161141057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114f6611fd8565b73ffffffffffffffffffffffffffffffffffffffff1661151461157c565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190612f09565b60405180910390fd5b6115746000611fe0565b565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546115b490613228565b80601f01602080910402602001604051908101604052809291908181526020018280546115e090613228565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b5050505050905090565b61163f611e1a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006116b1611e1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175e611e1a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a39190612e0c565b60405180910390a35050565b6117ba848484610bf0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461181c576117e5848484846120a4565b61181b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c60029054906101000a900460ff1615806118475750611843610a6e565b8210155b156118de57600e805461185990613228565b80601f016020809104026020016040519081016040528092919081815260200182805461188590613228565b80156118d25780601f106118a7576101008083540402835291602001916118d2565b820191906000526020600020905b8154815290600101906020018083116118b557829003601f168201915b5050505050905061190c565b600d6118e983612204565b6040516020016118fa929190612d6c565b60405160208183030381529060405290505b919050565b611919611fd8565b73ffffffffffffffffffffffffffffffffffffffff1661193761157c565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612f09565b60405180910390fd5b600c60019054906101000a900460ff16156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490612e69565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550611a2773265d5cedbcecf2a70e78d31d0acc7be8617de7b9600b54611fba565b565b611a31611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611a4f61157c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90612f09565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b611ad9611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611af761157c565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490612f09565b60405180910390fd5b600c60029054906101000a900460ff1615611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612ee9565b60405180910390fd5b8181600d9190611bae9291906125f1565b50600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611ccb611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611ce961157c565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690612f09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690612e49565b60405180910390fd5b611db881611fe0565b50565b600081611dc6611e22565b11158015611dd5575060015482105b8015611e13575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e36611e22565b11611ebe57600154811015611ebd5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ebb575b6000811415611eb1576005600083600190039350838152602001908152602001600020549050611e86565b8092505050611ef0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f78868684612365565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611fd482826040518060200160405280600081525061236e565b5050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ca611e1a565b8786866040518563ffffffff1660e01b81526004016120ec9493929190612dc0565b602060405180830381600087803b15801561210657600080fd5b505af192505050801561213757506040513d601f19601f8201168201806040525081019061213491906129c8565b60015b6121b1573d8060008114612167576040519150601f19603f3d011682016040523d82523d6000602084013e61216c565b606091505b506000815114156121a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561224c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612360565b600082905060005b6000821461227e5780806122679061328b565b915050600a8261227791906130b3565b9150612254565b60008167ffffffffffffffff81111561229a576122996133c1565b5b6040519080825280601f01601f1916602001820160405280156122cc5781602001600182028036833780820191505090505b5090505b60008514612359576001826122e5919061313e565b9150600a856122f491906132d4565b6030612300919061305d565b60f81b81838151811061231657612315613392565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235291906130b3565b94506122d0565b8093505050505b919050565b60009392505050565b612378838361240c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124075760006001549050600083820390505b6123b960008683806001019450866120a4565b6123ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123a657816001541461240457600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561247a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156124b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124c26000848385611f5b565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125398361252a6000866000611f61565b612533856125e1565b17611f89565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061255d578060018190555050506125dc6000848385611fb4565b505050565b60006001821460e11b9050919050565b8280546125fd90613228565b90600052602060002090601f01602090048101928261261f5760008555612666565b82601f1061263857803560ff1916838001178555612666565b82800160010185558215612666579182015b8281111561266557823582559160200191906001019061264a565b5b5090506126739190612677565b5090565b5b80821115612690576000816000905550600101612678565b5090565b60006126a76126a284612fc9565b612fa4565b9050828152602081018484840111156126c3576126c26133ff565b5b6126ce8482856131e6565b509392505050565b6000813590506126e5816135e2565b92915050565b6000813590506126fa816135f9565b92915050565b60008135905061270f81613610565b92915050565b60008151905061272481613610565b92915050565b600082601f83011261273f5761273e6133f5565b5b813561274f848260208601612694565b91505092915050565b60008083601f84011261276e5761276d6133f5565b5b8235905067ffffffffffffffff81111561278b5761278a6133f0565b5b6020830191508360018202830111156127a7576127a66133fa565b5b9250929050565b6000813590506127bd81613627565b92915050565b6000815190506127d281613627565b92915050565b6000602082840312156127ee576127ed613409565b5b60006127fc848285016126d6565b91505092915050565b6000806040838503121561281c5761281b613409565b5b600061282a858286016126d6565b925050602061283b858286016126d6565b9150509250929050565b60008060006060848603121561285e5761285d613409565b5b600061286c868287016126d6565b935050602061287d868287016126d6565b925050604061288e868287016127ae565b9150509250925092565b600080600080608085870312156128b2576128b1613409565b5b60006128c0878288016126d6565b94505060206128d1878288016126d6565b93505060406128e2878288016127ae565b925050606085013567ffffffffffffffff81111561290357612902613404565b5b61290f8782880161272a565b91505092959194509250565b6000806040838503121561293257612931613409565b5b6000612940858286016126d6565b9250506020612951858286016126eb565b9150509250929050565b6000806040838503121561297257612971613409565b5b6000612980858286016126d6565b9250506020612991858286016127ae565b9150509250929050565b6000602082840312156129b1576129b0613409565b5b60006129bf84828501612700565b91505092915050565b6000602082840312156129de576129dd613409565b5b60006129ec84828501612715565b91505092915050565b60008060208385031215612a0c57612a0b613409565b5b600083013567ffffffffffffffff811115612a2a57612a29613404565b5b612a3685828601612758565b92509250509250929050565b600060208284031215612a5857612a57613409565b5b6000612a66848285016127ae565b91505092915050565b600060208284031215612a8557612a84613409565b5b6000612a93848285016127c3565b91505092915050565b612aa581613172565b82525050565b612ab481613184565b82525050565b6000612ac58261300f565b612acf8185613025565b9350612adf8185602086016131f5565b612ae88161340e565b840191505092915050565b6000612afe8261301a565b612b088185613041565b9350612b188185602086016131f5565b612b218161340e565b840191505092915050565b6000612b378261301a565b612b418185613052565b9350612b518185602086016131f5565b80840191505092915050565b60008154612b6a81613228565b612b748186613052565b94506001821660008114612b8f5760018114612ba057612bd3565b60ff19831686528186019350612bd3565b612ba985612ffa565b60005b83811015612bcb57815481890152600182019150602081019050612bac565b838801955050505b50505092915050565b6000612be9602683613041565b9150612bf48261341f565b604082019050919050565b6000612c0c601383613041565b9150612c178261346e565b602082019050919050565b6000612c2f601c83613041565b9150612c3a82613497565b602082019050919050565b6000612c52600d83613041565b9150612c5d826134c0565b602082019050919050565b6000612c75601a83613041565b9150612c80826134e9565b602082019050919050565b6000612c98601083613041565b9150612ca382613512565b602082019050919050565b6000612cbb602083613041565b9150612cc68261353b565b602082019050919050565b6000612cde600083613036565b9150612ce982613564565b600082019050919050565b6000612d01601083613041565b9150612d0c82613567565b602082019050919050565b6000612d24600883613041565b9150612d2f82613590565b602082019050919050565b6000612d47601f83613041565b9150612d52826135b9565b602082019050919050565b612d66816131dc565b82525050565b6000612d788285612b5d565b9150612d848284612b2c565b91508190509392505050565b6000612d9b82612cd1565b9150819050919050565b6000602082019050612dba6000830184612a9c565b92915050565b6000608082019050612dd56000830187612a9c565b612de26020830186612a9c565b612def6040830185612d5d565b8181036060830152612e018184612aba565b905095945050505050565b6000602082019050612e216000830184612aab565b92915050565b60006020820190508181036000830152612e418184612af3565b905092915050565b60006020820190508181036000830152612e6281612bdc565b9050919050565b60006020820190508181036000830152612e8281612bff565b9050919050565b60006020820190508181036000830152612ea281612c22565b9050919050565b60006020820190508181036000830152612ec281612c45565b9050919050565b60006020820190508181036000830152612ee281612c68565b9050919050565b60006020820190508181036000830152612f0281612c8b565b9050919050565b60006020820190508181036000830152612f2281612cae565b9050919050565b60006020820190508181036000830152612f4281612cf4565b9050919050565b60006020820190508181036000830152612f6281612d17565b9050919050565b60006020820190508181036000830152612f8281612d3a565b9050919050565b6000602082019050612f9e6000830184612d5d565b92915050565b6000612fae612fbf565b9050612fba828261325a565b919050565b6000604051905090565b600067ffffffffffffffff821115612fe457612fe36133c1565b5b612fed8261340e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613068826131dc565b9150613073836131dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130a8576130a7613305565b5b828201905092915050565b60006130be826131dc565b91506130c9836131dc565b9250826130d9576130d8613334565b5b828204905092915050565b60006130ef826131dc565b91506130fa836131dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561313357613132613305565b5b828202905092915050565b6000613149826131dc565b9150613154836131dc565b92508282101561316757613166613305565b5b828203905092915050565b600061317d826131bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132135780820151818401526020810190506131f8565b83811115613222576000848401525b50505050565b6000600282049050600182168061324057607f821691505b6020821081141561325457613253613363565b5b50919050565b6132638261340e565b810181811067ffffffffffffffff82111715613282576132816133c1565b5b80604052505050565b6000613296826131dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132c9576132c8613305565b5b600182019050919050565b60006132df826131dc565b91506132ea836131dc565b9250826132fa576132f9613334565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482028302e3030383520656163682900000000600082015250565b7f4d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820282e303137206561636829000000000000600082015250565b7f416c72656164792072657665616c656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6135eb81613172565b81146135f657600080fd5b50565b61360281613184565b811461360d57600080fd5b50565b61361981613190565b811461362457600080fd5b50565b613630816131dc565b811461363b57600080fd5b5056fea26469706673582212208cb87d2977f6d9b0c95087d8524c0e76a20ad45634eb0eb83c79df426c01d1c364736f6c63430008070033697066733a2f2f6261667962656961347736736762673466696b737167376571736f6b65683279696b73726f7934377a6a706e77776b7332376969726b76646e79612f30

Deployed Bytecode

0x6080604052600436106101ee5760003560e01c806370a082311161010d578063d1866f3d116100a0578063e8656fcc1161006f578063e8656fcc146106a6578063e8b5498d146106d1578063e985e9c5146106fc578063f0971f4614610739578063f2fde38b14610764576101ee565b8063d1866f3d14610624578063d3dd5fe01461063b578063d7dcccf314610652578063e1bc85a11461067b576101ee565b806395d89b41116100dc57806395d89b411461056a578063a22cb46514610595578063b88d4fde146105be578063c87b56dd146105e7576101ee565b806370a08231146104c0578063715018a6146104fd5780638b32f62a146105145780638da5cb5b1461053f576101ee565b80633ccfd60b1161018557806355f804b31161015457806355f804b3146104045780636352211e1461042d5780636c0360eb1461046a5780637035bf1814610495576101ee565b80633ccfd60b1461036e57806342842e0e146103855780634a371621146103ae57806351830227146103d9576101ee565b806318160ddd116101c157806318160ddd146102c15780631fe7aba2146102ec57806323b872dd146103295780633c7d9c8814610352576101ee565b806301ffc9a7146101f357806306fdde0314610230578063081812fc1461025b578063095ea7b314610298575b600080fd5b3480156101ff57600080fd5b5061021a6004803603810190610215919061299b565b61078d565b6040516102279190612e0c565b60405180910390f35b34801561023c57600080fd5b5061024561081f565b6040516102529190612e27565b60405180910390f35b34801561026757600080fd5b50610282600480360381019061027d9190612a42565b6108b1565b60405161028f9190612da5565b60405180910390f35b3480156102a457600080fd5b506102bf60048036038101906102ba919061295b565b61092d565b005b3480156102cd57600080fd5b506102d6610a6e565b6040516102e39190612f89565b60405180910390f35b3480156102f857600080fd5b50610313600480360381019061030e91906127d8565b610a85565b6040516103209190612e0c565b60405180910390f35b34801561033557600080fd5b50610350600480360381019061034b9190612845565b610bf0565b005b61036c60048036038101906103679190612a42565b610f15565b005b34801561037a57600080fd5b5061038361109b565b005b34801561039157600080fd5b506103ac60048036038101906103a79190612845565b61121c565b005b3480156103ba57600080fd5b506103c361123c565b6040516103d09190612da5565b60405180910390f35b3480156103e557600080fd5b506103ee611262565b6040516103fb9190612e0c565b60405180910390f35b34801561041057600080fd5b5061042b600480360381019061042691906129f5565b611275565b005b34801561043957600080fd5b50610454600480360381019061044f9190612a42565b611307565b6040516104619190612da5565b60405180910390f35b34801561047657600080fd5b5061047f611319565b60405161048c9190612e27565b60405180910390f35b3480156104a157600080fd5b506104aa6113a7565b6040516104b79190612e27565b60405180910390f35b3480156104cc57600080fd5b506104e760048036038101906104e291906127d8565b611435565b6040516104f49190612f89565b60405180910390f35b34801561050957600080fd5b506105126114ee565b005b34801561052057600080fd5b50610529611576565b6040516105369190612f89565b60405180910390f35b34801561054b57600080fd5b5061055461157c565b6040516105619190612da5565b60405180910390f35b34801561057657600080fd5b5061057f6115a5565b60405161058c9190612e27565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b7919061291b565b611637565b005b3480156105ca57600080fd5b506105e560048036038101906105e09190612898565b6117af565b005b3480156105f357600080fd5b5061060e60048036038101906106099190612a42565b611822565b60405161061b9190612e27565b60405180910390f35b34801561063057600080fd5b50610639611911565b005b34801561064757600080fd5b50610650611a29565b005b34801561065e57600080fd5b50610679600480360381019061067491906129f5565b611ad1565b005b34801561068757600080fd5b50610690611bdd565b60405161069d9190612da5565b60405180910390f35b3480156106b257600080fd5b506106bb611c03565b6040516106c89190612e0c565b60405180910390f35b3480156106dd57600080fd5b506106e6611c16565b6040516106f39190612e0c565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190612805565b611c29565b6040516107309190612e0c565b60405180910390f35b34801561074557600080fd5b5061074e611cbd565b60405161075b9190612f89565b60405180910390f35b34801561077057600080fd5b5061078b600480360381019061078691906127d8565b611cc3565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107e857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108185750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606003805461082e90613228565b80601f016020809104026020016040519081016040528092919081815260200182805461085a90613228565b80156108a75780601f1061087c576101008083540402835291602001916108a7565b820191906000526020600020905b81548152906001019060200180831161088a57829003601f168201915b5050505050905090565b60006108bc82611dbb565b6108f2576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061093882611307565b90508073ffffffffffffffffffffffffffffffffffffffff16610959611e1a565b73ffffffffffffffffffffffffffffffffffffffff16146109bc5761098581610980611e1a565b611c29565b6109bb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a78611e22565b6002546001540303905090565b600080601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610ae39190612da5565b60206040518083038186803b158015610afb57600080fd5b505afa158015610b0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b339190612a6f565b1180610be957506000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231846040518263ffffffff1660e01b8152600401610b979190612da5565b60206040518083038186803b158015610baf57600080fd5b505afa158015610bc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be79190612a6f565b115b9050919050565b6000610bfb82611e27565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c62576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6e84611ef5565b91509150610c848187610c7f611e1a565b611f17565b610cd057610c9986610c94611e1a565b611c29565b610ccf576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610d37576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d448686866001611f5b565b8015610d4f57600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1d85610df9888887611f61565b7c020000000000000000000000000000000000000000000000000000000017611f89565b600560008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ea5576000600185019050600060056000838152602001908152602001600020541415610ea3576001548114610ea2578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f0d8686866001611fb4565b505050505050565b600c60009054906101000a900460ff16610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b90612ea9565b60405180910390fd5b600a5481610f70610a6e565b610f7a919061305d565b1115610fbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb290612f49565b60405180910390fd5b6000600582101580610fd25750610fd133610a85565b5b1561103457661e32b47897400090508181610fed91906130e4565b34101561102f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102690612e89565b60405180910390fd5b61108d565b663c6568f12e80009050818161104a91906130e4565b34101561108c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108390612ec9565b60405180910390fd5b5b6110973383611fba565b5050565b6110a3611fd8565b73ffffffffffffffffffffffffffffffffffffffff166110c161157c565b73ffffffffffffffffffffffffffffffffffffffff1614611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e90612f09565b60405180910390fd5b6002600954141561115d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115490612f69565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff164760405161118b90612d90565b60006040518083038185875af1925050503d80600081146111c8576040519150601f19603f3d011682016040523d82523d6000602084013e6111cd565b606091505b5050905080611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612f29565b60405180910390fd5b506001600981905550565b611237838383604051806020016040528060008152506117af565b505050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b61127d611fd8565b73ffffffffffffffffffffffffffffffffffffffff1661129b61157c565b73ffffffffffffffffffffffffffffffffffffffff16146112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890612f09565b60405180910390fd5b8181600d91906113029291906125f1565b505050565b600061131282611e27565b9050919050565b600d805461132690613228565b80601f016020809104026020016040519081016040528092919081815260200182805461135290613228565b801561139f5780601f106113745761010080835404028352916020019161139f565b820191906000526020600020905b81548152906001019060200180831161138257829003601f168201915b505050505081565b600e80546113b490613228565b80601f01602080910402602001604051908101604052809291908181526020018280546113e090613228565b801561142d5780601f106114025761010080835404028352916020019161142d565b820191906000526020600020905b81548152906001019060200180831161141057829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561149d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6114f6611fd8565b73ffffffffffffffffffffffffffffffffffffffff1661151461157c565b73ffffffffffffffffffffffffffffffffffffffff161461156a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156190612f09565b60405180910390fd5b6115746000611fe0565b565b600b5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546115b490613228565b80601f01602080910402602001604051908101604052809291908181526020018280546115e090613228565b801561162d5780601f106116025761010080835404028352916020019161162d565b820191906000526020600020905b81548152906001019060200180831161161057829003601f168201915b5050505050905090565b61163f611e1a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a4576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006116b1611e1a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661175e611e1a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117a39190612e0c565b60405180910390a35050565b6117ba848484610bf0565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461181c576117e5848484846120a4565b61181b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060600c60029054906101000a900460ff1615806118475750611843610a6e565b8210155b156118de57600e805461185990613228565b80601f016020809104026020016040519081016040528092919081815260200182805461188590613228565b80156118d25780601f106118a7576101008083540402835291602001916118d2565b820191906000526020600020905b8154815290600101906020018083116118b557829003601f168201915b5050505050905061190c565b600d6118e983612204565b6040516020016118fa929190612d6c565b60405160208183030381529060405290505b919050565b611919611fd8565b73ffffffffffffffffffffffffffffffffffffffff1661193761157c565b73ffffffffffffffffffffffffffffffffffffffff161461198d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198490612f09565b60405180910390fd5b600c60019054906101000a900460ff16156119dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d490612e69565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff021916908315150217905550611a2773265d5cedbcecf2a70e78d31d0acc7be8617de7b9600b54611fba565b565b611a31611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611a4f61157c565b73ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90612f09565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b611ad9611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611af761157c565b73ffffffffffffffffffffffffffffffffffffffff1614611b4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4490612f09565b60405180910390fd5b600c60029054906101000a900460ff1615611b9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9490612ee9565b60405180910390fd5b8181600d9190611bae9291906125f1565b50600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60009054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a5481565b611ccb611fd8565b73ffffffffffffffffffffffffffffffffffffffff16611ce961157c565b73ffffffffffffffffffffffffffffffffffffffff1614611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690612f09565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690612e49565b60405180910390fd5b611db881611fe0565b50565b600081611dc6611e22565b11158015611dd5575060015482105b8015611e13575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611e36611e22565b11611ebe57600154811015611ebd5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ebb575b6000811415611eb1576005600083600190039350838152602001908152602001600020549050611e86565b8092505050611ef0565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f78868684612365565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611fd482826040518060200160405280600081525061236e565b5050565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120ca611e1a565b8786866040518563ffffffff1660e01b81526004016120ec9493929190612dc0565b602060405180830381600087803b15801561210657600080fd5b505af192505050801561213757506040513d601f19601f8201168201806040525081019061213491906129c8565b60015b6121b1573d8060008114612167576040519150601f19603f3d011682016040523d82523d6000602084013e61216c565b606091505b506000815114156121a9576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561224c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612360565b600082905060005b6000821461227e5780806122679061328b565b915050600a8261227791906130b3565b9150612254565b60008167ffffffffffffffff81111561229a576122996133c1565b5b6040519080825280601f01601f1916602001820160405280156122cc5781602001600182028036833780820191505090505b5090505b60008514612359576001826122e5919061313e565b9150600a856122f491906132d4565b6030612300919061305d565b60f81b81838151811061231657612315613392565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561235291906130b3565b94506122d0565b8093505050505b919050565b60009392505050565b612378838361240c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124075760006001549050600083820390505b6123b960008683806001019450866120a4565b6123ef576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106123a657816001541461240457600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561247a576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156124b5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6124c26000848385611f5b565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125398361252a6000866000611f61565b612533856125e1565b17611f89565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061255d578060018190555050506125dc6000848385611fb4565b505050565b60006001821460e11b9050919050565b8280546125fd90613228565b90600052602060002090601f01602090048101928261261f5760008555612666565b82601f1061263857803560ff1916838001178555612666565b82800160010185558215612666579182015b8281111561266557823582559160200191906001019061264a565b5b5090506126739190612677565b5090565b5b80821115612690576000816000905550600101612678565b5090565b60006126a76126a284612fc9565b612fa4565b9050828152602081018484840111156126c3576126c26133ff565b5b6126ce8482856131e6565b509392505050565b6000813590506126e5816135e2565b92915050565b6000813590506126fa816135f9565b92915050565b60008135905061270f81613610565b92915050565b60008151905061272481613610565b92915050565b600082601f83011261273f5761273e6133f5565b5b813561274f848260208601612694565b91505092915050565b60008083601f84011261276e5761276d6133f5565b5b8235905067ffffffffffffffff81111561278b5761278a6133f0565b5b6020830191508360018202830111156127a7576127a66133fa565b5b9250929050565b6000813590506127bd81613627565b92915050565b6000815190506127d281613627565b92915050565b6000602082840312156127ee576127ed613409565b5b60006127fc848285016126d6565b91505092915050565b6000806040838503121561281c5761281b613409565b5b600061282a858286016126d6565b925050602061283b858286016126d6565b9150509250929050565b60008060006060848603121561285e5761285d613409565b5b600061286c868287016126d6565b935050602061287d868287016126d6565b925050604061288e868287016127ae565b9150509250925092565b600080600080608085870312156128b2576128b1613409565b5b60006128c0878288016126d6565b94505060206128d1878288016126d6565b93505060406128e2878288016127ae565b925050606085013567ffffffffffffffff81111561290357612902613404565b5b61290f8782880161272a565b91505092959194509250565b6000806040838503121561293257612931613409565b5b6000612940858286016126d6565b9250506020612951858286016126eb565b9150509250929050565b6000806040838503121561297257612971613409565b5b6000612980858286016126d6565b9250506020612991858286016127ae565b9150509250929050565b6000602082840312156129b1576129b0613409565b5b60006129bf84828501612700565b91505092915050565b6000602082840312156129de576129dd613409565b5b60006129ec84828501612715565b91505092915050565b60008060208385031215612a0c57612a0b613409565b5b600083013567ffffffffffffffff811115612a2a57612a29613404565b5b612a3685828601612758565b92509250509250929050565b600060208284031215612a5857612a57613409565b5b6000612a66848285016127ae565b91505092915050565b600060208284031215612a8557612a84613409565b5b6000612a93848285016127c3565b91505092915050565b612aa581613172565b82525050565b612ab481613184565b82525050565b6000612ac58261300f565b612acf8185613025565b9350612adf8185602086016131f5565b612ae88161340e565b840191505092915050565b6000612afe8261301a565b612b088185613041565b9350612b188185602086016131f5565b612b218161340e565b840191505092915050565b6000612b378261301a565b612b418185613052565b9350612b518185602086016131f5565b80840191505092915050565b60008154612b6a81613228565b612b748186613052565b94506001821660008114612b8f5760018114612ba057612bd3565b60ff19831686528186019350612bd3565b612ba985612ffa565b60005b83811015612bcb57815481890152600182019150602081019050612bac565b838801955050505b50505092915050565b6000612be9602683613041565b9150612bf48261341f565b604082019050919050565b6000612c0c601383613041565b9150612c178261346e565b602082019050919050565b6000612c2f601c83613041565b9150612c3a82613497565b602082019050919050565b6000612c52600d83613041565b9150612c5d826134c0565b602082019050919050565b6000612c75601a83613041565b9150612c80826134e9565b602082019050919050565b6000612c98601083613041565b9150612ca382613512565b602082019050919050565b6000612cbb602083613041565b9150612cc68261353b565b602082019050919050565b6000612cde600083613036565b9150612ce982613564565b600082019050919050565b6000612d01601083613041565b9150612d0c82613567565b602082019050919050565b6000612d24600883613041565b9150612d2f82613590565b602082019050919050565b6000612d47601f83613041565b9150612d52826135b9565b602082019050919050565b612d66816131dc565b82525050565b6000612d788285612b5d565b9150612d848284612b2c565b91508190509392505050565b6000612d9b82612cd1565b9150819050919050565b6000602082019050612dba6000830184612a9c565b92915050565b6000608082019050612dd56000830187612a9c565b612de26020830186612a9c565b612def6040830185612d5d565b8181036060830152612e018184612aba565b905095945050505050565b6000602082019050612e216000830184612aab565b92915050565b60006020820190508181036000830152612e418184612af3565b905092915050565b60006020820190508181036000830152612e6281612bdc565b9050919050565b60006020820190508181036000830152612e8281612bff565b9050919050565b60006020820190508181036000830152612ea281612c22565b9050919050565b60006020820190508181036000830152612ec281612c45565b9050919050565b60006020820190508181036000830152612ee281612c68565b9050919050565b60006020820190508181036000830152612f0281612c8b565b9050919050565b60006020820190508181036000830152612f2281612cae565b9050919050565b60006020820190508181036000830152612f4281612cf4565b9050919050565b60006020820190508181036000830152612f6281612d17565b9050919050565b60006020820190508181036000830152612f8281612d3a565b9050919050565b6000602082019050612f9e6000830184612d5d565b92915050565b6000612fae612fbf565b9050612fba828261325a565b919050565b6000604051905090565b600067ffffffffffffffff821115612fe457612fe36133c1565b5b612fed8261340e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613068826131dc565b9150613073836131dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130a8576130a7613305565b5b828201905092915050565b60006130be826131dc565b91506130c9836131dc565b9250826130d9576130d8613334565b5b828204905092915050565b60006130ef826131dc565b91506130fa836131dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561313357613132613305565b5b828202905092915050565b6000613149826131dc565b9150613154836131dc565b92508282101561316757613166613305565b5b828203905092915050565b600061317d826131bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156132135780820151818401526020810190506131f8565b83811115613222576000848401525b50505050565b6000600282049050600182168061324057607f821691505b6020821081141561325457613253613363565b5b50919050565b6132638261340e565b810181811067ffffffffffffffff82111715613282576132816133c1565b5b80604052505050565b6000613296826131dc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156132c9576132c8613305565b5b600182019050919050565b60006132df826131dc565b91506132ea836131dc565b9250826132fa576132f9613334565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5465616d20616c7265616479206d696e74656400000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482028302e3030383520656163682900000000600082015250565b7f4d696e74206e6f74206c69766500000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f7567682045544820282e303137206561636829000000000000600082015250565b7f416c72656164792072657665616c656400000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f536f6c64206f7574000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6135eb81613172565b81146135f657600080fd5b50565b61360281613184565b811461360d57600080fd5b50565b61361981613190565b811461362457600080fd5b50565b613630816131dc565b811461363b57600080fd5b5056fea26469706673582212208cb87d2977f6d9b0c95087d8524c0e76a20ad45634eb0eb83c79df426c01d1c364736f6c63430008070033

Deployed Bytecode Sourcemap

59116:2397:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28843:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34490:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36436:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35984:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27897:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60525:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45701:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59701:602;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61334:176;;;;;;;;;;;;;:::i;:::-;;37326:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59478:74;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59318:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61236:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34279:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59345:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59371:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29522:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7489:103;;;;;;;;;;;;;:::i;:::-;;59228:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6838:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34659:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36712:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37582:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60732:248;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60309:210;;;;;;;;;;;;;:::i;:::-;;60986:74;;;;;;;;;;;;;:::i;:::-;;61066:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59557:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59266:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59291:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37091:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59182:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7747:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28843:615;28928:4;29243:10;29228:25;;:11;:25;;;;:102;;;;29320:10;29305:25;;:11;:25;;;;29228:102;:179;;;;29397:10;29382:25;;:11;:25;;;;29228:179;29208:199;;28843:615;;;:::o;34490:100::-;34544:13;34577:5;34570:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34490:100;:::o;36436:204::-;36504:7;36529:16;36537:7;36529;:16::i;:::-;36524:64;;36554:34;;;;;;;;;;;;;;36524:64;36608:15;:24;36624:7;36608:24;;;;;;;;;;;;;;;;;;;;;36601:31;;36436:204;;;:::o;35984:386::-;36057:13;36073:16;36081:7;36073;:16::i;:::-;36057:32;;36129:5;36106:28;;:19;:17;:19::i;:::-;:28;;;36102:175;;36154:44;36171:5;36178:19;:17;:19::i;:::-;36154:16;:44::i;:::-;36149:128;;36226:35;;;;;;;;;;;;;;36149:128;36102:175;36316:2;36289:15;:24;36305:7;36289:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36354:7;36350:2;36334:28;;36343:5;36334:28;;;;;;;;;;;;36046:324;35984:386;;:::o;27897:315::-;27950:7;28178:15;:13;:15::i;:::-;28163:12;;28147:13;;:28;:46;28140:53;;27897:315;:::o;60525:201::-;60595:4;60665:1;60623:15;;;;;;;;;;;60615:34;;;60650:11;60615:47;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:51;:105;;;;60719:1;60678:14;;;;;;;;;;;60670:33;;;60704:11;60670:46;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:50;60615:105;60608:112;;60525:201;;;:::o;45701:2800::-;45835:27;45865;45884:7;45865:18;:27::i;:::-;45835:57;;45950:4;45909:45;;45925:19;45909:45;;;45905:86;;45963:28;;;;;;;;;;;;;;45905:86;46005:27;46034:23;46061:28;46081:7;46061:19;:28::i;:::-;46004:85;;;;46189:62;46208:15;46225:4;46231:19;:17;:19::i;:::-;46189:18;:62::i;:::-;46184:174;;46271:43;46288:4;46294:19;:17;:19::i;:::-;46271:16;:43::i;:::-;46266:92;;46323:35;;;;;;;;;;;;;;46266:92;46184:174;46389:1;46375:16;;:2;:16;;;46371:52;;;46400:23;;;;;;;;;;;;;;46371:52;46436:43;46458:4;46464:2;46468:7;46477:1;46436:21;:43::i;:::-;46572:15;46569:160;;;46712:1;46691:19;46684:30;46569:160;47107:18;:24;47126:4;47107:24;;;;;;;;;;;;;;;;47105:26;;;;;;;;;;;;47176:18;:22;47195:2;47176:22;;;;;;;;;;;;;;;;47174:24;;;;;;;;;;;47498:145;47535:2;47583:45;47598:4;47604:2;47608:19;47583:14;:45::i;:::-;25125:8;47556:72;47498:18;:145::i;:::-;47469:17;:26;47487:7;47469:26;;;;;;;;;;;:174;;;;47813:1;25125:8;47763:19;:46;:51;47759:626;;;47835:19;47867:1;47857:7;:11;47835:33;;48024:1;47990:17;:30;48008:11;47990:30;;;;;;;;;;;;:35;47986:384;;;48128:13;;48113:11;:28;48109:242;;48308:19;48275:17;:30;48293:11;48275:30;;;;;;;;;;;:52;;;;48109:242;47986:384;47816:569;47759:626;48432:7;48428:2;48413:27;;48422:4;48413:27;;;;;;;;;;;;48451:42;48472:4;48478:2;48482:7;48491:1;48451:20;:42::i;:::-;45824:2677;;;45701:2800;;;:::o;59701:602::-;59777:8;;;;;;;;;;;59769:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;59848:19;;59834:10;59818:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:49;;59810:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;59889:24;59938:1;59924:10;:15;;:49;;;;59943:30;59962:10;59943:18;:30::i;:::-;59924:49;59920:338;;;60003:12;59984:31;;60064:10;60045:16;:29;;;;:::i;:::-;60032:9;:42;;60024:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;59920:338;;;60149:11;60130:30;;60209:10;60190:16;:29;;;;:::i;:::-;60177:9;:42;;60169:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;59920:338;60264:33;60274:10;60286;60264:9;:33::i;:::-;59762:541;59701:602;:::o;61334:176::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3936:1:::1;4534:7;;:19;;4526:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3936:1;4667:7;:18;;;;61394:12:::2;61412:10;:15;;61435:21;61412:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61393:68;;;61476:7;61468:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;61386:124;3892:1:::1;4846:7;:22;;;;61334:176::o:0;37326:185::-;37464:39;37481:4;37487:2;37491:7;37464:39;;;;;;;;;;;;:16;:39::i;:::-;37326:185;;;:::o;59478:74::-;;;;;;;;;;;;;:::o;59318:20::-;;;;;;;;;;;;;:::o;61236:92::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61316:6:::1;;61306:7;:16;;;;;;;:::i;:::-;;61236:92:::0;;:::o;34279:144::-;34343:7;34386:27;34405:7;34386:18;:27::i;:::-;34363:52;;34279:144;;;:::o;59345:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59371:100::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29522:224::-;29586:7;29627:1;29610:19;;:5;:19;;;29606:60;;;29638:28;;;;;;;;;;;;;;29606:60;24077:13;29684:18;:25;29703:5;29684:25;;;;;;;;;;;;;;;;:54;29677:61;;29522:224;;;:::o;7489:103::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7554:30:::1;7581:1;7554:18;:30::i;:::-;7489:103::o:0;59228:31::-;;;;:::o;6838:87::-;6884:7;6911:6;;;;;;;;;;;6904:13;;6838:87;:::o;34659:104::-;34715:13;34748:7;34741:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34659:104;:::o;36712:308::-;36823:19;:17;:19::i;:::-;36811:31;;:8;:31;;;36807:61;;;36851:17;;;;;;;;;;;;;;36807:61;36933:8;36881:18;:39;36900:19;:17;:19::i;:::-;36881:39;;;;;;;;;;;;;;;:49;36921:8;36881:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;36993:8;36957:55;;36972:19;:17;:19::i;:::-;36957:55;;;37003:8;36957:55;;;;;;:::i;:::-;;;;;;;;36712:308;;:::o;37582:399::-;37749:31;37762:4;37768:2;37772:7;37749:12;:31::i;:::-;37813:1;37795:2;:14;;;:19;37791:183;;37834:56;37865:4;37871:2;37875:7;37884:5;37834:30;:56::i;:::-;37829:145;;37918:40;;;;;;;;;;;;;;37829:145;37791:183;37582:399;;;;:::o;60732:248::-;60798:13;60824:8;;;;;;;;;;;60823:9;:38;;;;60848:13;:11;:13::i;:::-;60836:8;:25;;60823:38;60820:80;;;60879:13;60872:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60820:80;60937:7;60946:26;60963:8;60946:16;:26::i;:::-;60920:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;60906:68;;60732:248;;;;:::o;60309:210::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;60375:10:::1;;;;;;;;;;;60374:11;60366:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;60430:10;;;;;;;;;;;60429:11;60416:10;;:24;;;;;;;;;;;;;;;;;;60447:66;60457:42;60501:11;;60447:9;:66::i;:::-;60309:210::o:0;60986:74::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61046:8:::1;;;;;;;;;;;61045:9;61034:8;;:20;;;;;;;;;;;;;;;;;;60986:74::o:0;61066:164::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;61145:8:::1;;;;;;;;;;;61144:9;61136:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;61191:6;;61181:7;:16;;;;;;;:::i;:::-;;61216:8;;;;;;;;;;;61215:9;61204:8;;:20;;;;;;;;;;;;;;;;;;61066:164:::0;;:::o;59557:75::-;;;;;;;;;;;;;:::o;59266:20::-;;;;;;;;;;;;;:::o;59291:22::-;;;;;;;;;;;;;:::o;37091:164::-;37188:4;37212:18;:25;37231:5;37212:25;;;;;;;;;;;;;;;:35;37238:8;37212:35;;;;;;;;;;;;;;;;;;;;;;;;;37205:42;;37091:164;;;;:::o;59182:41::-;;;;:::o;7747:201::-;7069:12;:10;:12::i;:::-;7058:23;;:7;:5;:7::i;:::-;:23;;;7050:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7856:1:::1;7836:22;;:8;:22;;;;7828:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7912:28;7931:8;7912:18;:28::i;:::-;7747:201:::0;:::o;38236:273::-;38293:4;38349:7;38330:15;:13;:15::i;:::-;:26;;:66;;;;;38383:13;;38373:7;:23;38330:66;:152;;;;;38481:1;24847:8;38434:17;:26;38452:7;38434:26;;;;;;;;;;;;:43;:48;38330:152;38310:172;;38236:273;;;:::o;56797:105::-;56857:7;56884:10;56877:17;;56797:105;:::o;27421:92::-;27477:7;27421:92;:::o;31196:1129::-;31263:7;31283:12;31298:7;31283:22;;31366:4;31347:15;:13;:15::i;:::-;:23;31343:915;;31400:13;;31393:4;:20;31389:869;;;31438:14;31455:17;:23;31473:4;31455:23;;;;;;;;;;;;31438:40;;31571:1;24847:8;31544:6;:23;:28;31540:699;;;32063:113;32080:1;32070:6;:11;32063:113;;;32123:17;:25;32141:6;;;;;;;32123:25;;;;;;;;;;;;32114:34;;32063:113;;;32209:6;32202:13;;;;;;31540:699;31415:843;31389:869;31343:915;32286:31;;;;;;;;;;;;;;31196:1129;;;;:::o;44037:652::-;44132:27;44161:23;44202:53;44258:15;44202:71;;44444:7;44438:4;44431:21;44479:22;44473:4;44466:36;44555:4;44549;44539:21;44516:44;;44651:19;44645:26;44626:45;;44382:300;44037:652;;;:::o;44802:645::-;44944:11;45106:15;45100:4;45096:26;45088:34;;45265:15;45254:9;45250:31;45237:44;;45412:15;45401:9;45398:30;45391:4;45380:9;45377:19;45374:55;45364:65;;44802:645;;;;;:::o;55630:159::-;;;;;:::o;53942:309::-;54077:7;54097:16;25248:3;54123:19;:40;;54097:67;;25248:3;54190:31;54201:4;54207:2;54211:9;54190:10;:31::i;:::-;54182:40;;:61;;54175:68;;;53942:309;;;;;:::o;33770:447::-;33850:14;34018:15;34011:5;34007:27;33998:36;;34192:5;34178:11;34154:22;34150:40;34147:51;34140:5;34137:62;34127:72;;33770:447;;;;:::o;56448:158::-;;;;;:::o;38593:104::-;38662:27;38672:2;38676:8;38662:27;;;;;;;;;;;;:9;:27::i;:::-;38593:104;;:::o;5562:98::-;5615:7;5642:10;5635:17;;5562:98;:::o;8108:191::-;8182:16;8201:6;;;;;;;;;;;8182:25;;8227:8;8218:6;;:17;;;;;;;;;;;;;;;;;;8282:8;8251:40;;8272:8;8251:40;;;;;;;;;;;;8171:128;8108:191;:::o;52452:716::-;52615:4;52661:2;52636:45;;;52682:19;:17;:19::i;:::-;52703:4;52709:7;52718:5;52636:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;52632:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52936:1;52919:6;:13;:18;52915:235;;;52965:40;;;;;;;;;;;;;;52915:235;53108:6;53102:13;53093:6;53089:2;53085:15;53078:38;52632:529;52805:54;;;52795:64;;;:6;:64;;;;52788:71;;;52452:716;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;54827:147::-;54964:6;54827:147;;;;;:::o;39113:681::-;39236:19;39242:2;39246:8;39236:5;:19::i;:::-;39315:1;39297:2;:14;;;:19;39293:483;;39337:11;39351:13;;39337:27;;39383:13;39405:8;39399:3;:14;39383:30;;39432:233;39463:62;39502:1;39506:2;39510:7;;;;;;39519:5;39463:30;:62::i;:::-;39458:167;;39561:40;;;;;;;;;;;;;;39458:167;39660:3;39652:5;:11;39432:233;;39747:3;39730:13;;:20;39726:34;;39752:8;;;39726:34;39318:458;;39293:483;39113:681;;;:::o;40067:1529::-;40132:20;40155:13;;40132:36;;40197:1;40183:16;;:2;:16;;;40179:48;;;40208:19;;;;;;;;;;;;;;40179:48;40254:1;40242:8;:13;40238:44;;;40264:18;;;;;;;;;;;;;;40238:44;40295:61;40325:1;40329:2;40333:12;40347:8;40295:21;:61::i;:::-;40838:1;24214:2;40809:1;:25;;40808:31;40796:8;:44;40770:18;:22;40789:2;40770:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;41117:139;41154:2;41208:33;41231:1;41235:2;41239:1;41208:14;:33::i;:::-;41175:30;41196:8;41175:20;:30::i;:::-;:66;41117:18;:139::i;:::-;41083:17;:31;41101:12;41083:31;;;;;;;;;;;:173;;;;41273:15;41291:12;41273:30;;41318:11;41347:8;41332:12;:23;41318:37;;41370:101;41422:9;;;;;;41418:2;41397:35;;41414:1;41397:35;;;;;;;;;;;;41466:3;41456:7;:13;41370:101;;41503:3;41487:13;:19;;;;40544:974;;41528:60;41557:1;41561:2;41565:12;41579:8;41528:20;:60::i;:::-;40121:1475;40067:1529;;:::o;35600:322::-;35670:14;35901:1;35891:8;35888:15;35863:23;35859:45;35849:55;;35600:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:143::-;2129:5;2160:6;2154:13;2145:22;;2176:33;2203:5;2176:33;:::i;:::-;2072:143;;;;:::o;2221:329::-;2280:6;2329:2;2317:9;2308:7;2304:23;2300:32;2297:119;;;2335:79;;:::i;:::-;2297:119;2455:1;2480:53;2525:7;2516:6;2505:9;2501:22;2480:53;:::i;:::-;2470:63;;2426:117;2221:329;;;;:::o;2556:474::-;2624:6;2632;2681:2;2669:9;2660:7;2656:23;2652:32;2649:119;;;2687:79;;:::i;:::-;2649:119;2807:1;2832:53;2877:7;2868:6;2857:9;2853:22;2832:53;:::i;:::-;2822:63;;2778:117;2934:2;2960:53;3005:7;2996:6;2985:9;2981:22;2960:53;:::i;:::-;2950:63;;2905:118;2556:474;;;;;:::o;3036:619::-;3113:6;3121;3129;3178:2;3166:9;3157:7;3153:23;3149:32;3146:119;;;3184:79;;:::i;:::-;3146:119;3304:1;3329:53;3374:7;3365:6;3354:9;3350:22;3329:53;:::i;:::-;3319:63;;3275:117;3431:2;3457:53;3502:7;3493:6;3482:9;3478:22;3457:53;:::i;:::-;3447:63;;3402:118;3559:2;3585:53;3630:7;3621:6;3610:9;3606:22;3585:53;:::i;:::-;3575:63;;3530:118;3036:619;;;;;:::o;3661:943::-;3756:6;3764;3772;3780;3829:3;3817:9;3808:7;3804:23;3800:33;3797:120;;;3836:79;;:::i;:::-;3797:120;3956:1;3981:53;4026:7;4017:6;4006:9;4002:22;3981:53;:::i;:::-;3971:63;;3927:117;4083:2;4109:53;4154:7;4145:6;4134:9;4130:22;4109:53;:::i;:::-;4099:63;;4054:118;4211:2;4237:53;4282:7;4273:6;4262:9;4258:22;4237:53;:::i;:::-;4227:63;;4182:118;4367:2;4356:9;4352:18;4339:32;4398:18;4390:6;4387:30;4384:117;;;4420:79;;:::i;:::-;4384:117;4525:62;4579:7;4570:6;4559:9;4555:22;4525:62;:::i;:::-;4515:72;;4310:287;3661:943;;;;;;;:::o;4610:468::-;4675:6;4683;4732:2;4720:9;4711:7;4707:23;4703:32;4700:119;;;4738:79;;:::i;:::-;4700:119;4858:1;4883:53;4928:7;4919:6;4908:9;4904:22;4883:53;:::i;:::-;4873:63;;4829:117;4985:2;5011:50;5053:7;5044:6;5033:9;5029:22;5011:50;:::i;:::-;5001:60;;4956:115;4610:468;;;;;:::o;5084:474::-;5152:6;5160;5209:2;5197:9;5188:7;5184:23;5180:32;5177:119;;;5215:79;;:::i;:::-;5177:119;5335:1;5360:53;5405:7;5396:6;5385:9;5381:22;5360:53;:::i;:::-;5350:63;;5306:117;5462:2;5488:53;5533:7;5524:6;5513:9;5509:22;5488:53;:::i;:::-;5478:63;;5433:118;5084:474;;;;;:::o;5564:327::-;5622:6;5671:2;5659:9;5650:7;5646:23;5642:32;5639:119;;;5677:79;;:::i;:::-;5639:119;5797:1;5822:52;5866:7;5857:6;5846:9;5842:22;5822:52;:::i;:::-;5812:62;;5768:116;5564:327;;;;:::o;5897:349::-;5966:6;6015:2;6003:9;5994:7;5990:23;5986:32;5983:119;;;6021:79;;:::i;:::-;5983:119;6141:1;6166:63;6221:7;6212:6;6201:9;6197:22;6166:63;:::i;:::-;6156:73;;6112:127;5897:349;;;;:::o;6252:529::-;6323:6;6331;6380:2;6368:9;6359:7;6355:23;6351:32;6348:119;;;6386:79;;:::i;:::-;6348:119;6534:1;6523:9;6519:17;6506:31;6564:18;6556:6;6553:30;6550:117;;;6586:79;;:::i;:::-;6550:117;6699:65;6756:7;6747:6;6736:9;6732:22;6699:65;:::i;:::-;6681:83;;;;6477:297;6252:529;;;;;:::o;6787:329::-;6846:6;6895:2;6883:9;6874:7;6870:23;6866:32;6863:119;;;6901:79;;:::i;:::-;6863:119;7021:1;7046:53;7091:7;7082:6;7071:9;7067:22;7046:53;:::i;:::-;7036:63;;6992:117;6787:329;;;;:::o;7122:351::-;7192:6;7241:2;7229:9;7220:7;7216:23;7212:32;7209:119;;;7247:79;;:::i;:::-;7209:119;7367:1;7392:64;7448:7;7439:6;7428:9;7424:22;7392:64;:::i;:::-;7382:74;;7338:128;7122:351;;;;:::o;7479:118::-;7566:24;7584:5;7566:24;:::i;:::-;7561:3;7554:37;7479:118;;:::o;7603:109::-;7684:21;7699:5;7684:21;:::i;:::-;7679:3;7672:34;7603:109;;:::o;7718:360::-;7804:3;7832:38;7864:5;7832:38;:::i;:::-;7886:70;7949:6;7944:3;7886:70;:::i;:::-;7879:77;;7965:52;8010:6;8005:3;7998:4;7991:5;7987:16;7965:52;:::i;:::-;8042:29;8064:6;8042:29;:::i;:::-;8037:3;8033:39;8026:46;;7808:270;7718:360;;;;:::o;8084:364::-;8172:3;8200:39;8233:5;8200:39;:::i;:::-;8255:71;8319:6;8314:3;8255:71;:::i;:::-;8248:78;;8335:52;8380:6;8375:3;8368:4;8361:5;8357:16;8335:52;:::i;:::-;8412:29;8434:6;8412:29;:::i;:::-;8407:3;8403:39;8396:46;;8176:272;8084:364;;;;:::o;8454:377::-;8560:3;8588:39;8621:5;8588:39;:::i;:::-;8643:89;8725:6;8720:3;8643:89;:::i;:::-;8636:96;;8741:52;8786:6;8781:3;8774:4;8767:5;8763:16;8741:52;:::i;:::-;8818:6;8813:3;8809:16;8802:23;;8564:267;8454:377;;;;:::o;8861:845::-;8964:3;9001:5;8995:12;9030:36;9056:9;9030:36;:::i;:::-;9082:89;9164:6;9159:3;9082:89;:::i;:::-;9075:96;;9202:1;9191:9;9187:17;9218:1;9213:137;;;;9364:1;9359:341;;;;9180:520;;9213:137;9297:4;9293:9;9282;9278:25;9273:3;9266:38;9333:6;9328:3;9324:16;9317:23;;9213:137;;9359:341;9426:38;9458:5;9426:38;:::i;:::-;9486:1;9500:154;9514:6;9511:1;9508:13;9500:154;;;9588:7;9582:14;9578:1;9573:3;9569:11;9562:35;9638:1;9629:7;9625:15;9614:26;;9536:4;9533:1;9529:12;9524:17;;9500:154;;;9683:6;9678:3;9674:16;9667:23;;9366:334;;9180:520;;8968:738;;8861:845;;;;:::o;9712:366::-;9854:3;9875:67;9939:2;9934:3;9875:67;:::i;:::-;9868:74;;9951:93;10040:3;9951:93;:::i;:::-;10069:2;10064:3;10060:12;10053:19;;9712:366;;;:::o;10084:::-;10226:3;10247:67;10311:2;10306:3;10247:67;:::i;:::-;10240:74;;10323:93;10412:3;10323:93;:::i;:::-;10441:2;10436:3;10432:12;10425:19;;10084:366;;;:::o;10456:::-;10598:3;10619:67;10683:2;10678:3;10619:67;:::i;:::-;10612:74;;10695:93;10784:3;10695:93;:::i;:::-;10813:2;10808:3;10804:12;10797:19;;10456:366;;;:::o;10828:::-;10970:3;10991:67;11055:2;11050:3;10991:67;:::i;:::-;10984:74;;11067:93;11156:3;11067:93;:::i;:::-;11185:2;11180:3;11176:12;11169:19;;10828:366;;;:::o;11200:::-;11342:3;11363:67;11427:2;11422:3;11363:67;:::i;:::-;11356:74;;11439:93;11528:3;11439:93;:::i;:::-;11557:2;11552:3;11548:12;11541:19;;11200:366;;;:::o;11572:::-;11714:3;11735:67;11799:2;11794:3;11735:67;:::i;:::-;11728:74;;11811:93;11900:3;11811:93;:::i;:::-;11929:2;11924:3;11920:12;11913:19;;11572:366;;;:::o;11944:::-;12086:3;12107:67;12171:2;12166:3;12107:67;:::i;:::-;12100:74;;12183:93;12272:3;12183:93;:::i;:::-;12301:2;12296:3;12292:12;12285:19;;11944:366;;;:::o;12316:398::-;12475:3;12496:83;12577:1;12572:3;12496:83;:::i;:::-;12489:90;;12588:93;12677:3;12588:93;:::i;:::-;12706:1;12701:3;12697:11;12690:18;;12316:398;;;:::o;12720:366::-;12862:3;12883:67;12947:2;12942:3;12883:67;:::i;:::-;12876:74;;12959:93;13048:3;12959:93;:::i;:::-;13077:2;13072:3;13068:12;13061:19;;12720:366;;;:::o;13092:365::-;13234:3;13255:66;13319:1;13314:3;13255:66;:::i;:::-;13248:73;;13330:93;13419:3;13330:93;:::i;:::-;13448:2;13443:3;13439:12;13432:19;;13092:365;;;:::o;13463:366::-;13605:3;13626:67;13690:2;13685:3;13626:67;:::i;:::-;13619:74;;13702:93;13791:3;13702:93;:::i;:::-;13820:2;13815:3;13811:12;13804:19;;13463:366;;;:::o;13835:118::-;13922:24;13940:5;13922:24;:::i;:::-;13917:3;13910:37;13835:118;;:::o;13959:429::-;14136:3;14158:92;14246:3;14237:6;14158:92;:::i;:::-;14151:99;;14267:95;14358:3;14349:6;14267:95;:::i;:::-;14260:102;;14379:3;14372:10;;13959:429;;;;;:::o;14394:379::-;14578:3;14600:147;14743:3;14600:147;:::i;:::-;14593:154;;14764:3;14757:10;;14394:379;;;:::o;14779:222::-;14872:4;14910:2;14899:9;14895:18;14887:26;;14923:71;14991:1;14980:9;14976:17;14967:6;14923:71;:::i;:::-;14779:222;;;;:::o;15007:640::-;15202:4;15240:3;15229:9;15225:19;15217:27;;15254:71;15322:1;15311:9;15307:17;15298:6;15254:71;:::i;:::-;15335:72;15403:2;15392:9;15388:18;15379:6;15335:72;:::i;:::-;15417;15485:2;15474:9;15470:18;15461:6;15417:72;:::i;:::-;15536:9;15530:4;15526:20;15521:2;15510:9;15506:18;15499:48;15564:76;15635:4;15626:6;15564:76;:::i;:::-;15556:84;;15007:640;;;;;;;:::o;15653:210::-;15740:4;15778:2;15767:9;15763:18;15755:26;;15791:65;15853:1;15842:9;15838:17;15829:6;15791:65;:::i;:::-;15653:210;;;;:::o;15869:313::-;15982:4;16020:2;16009:9;16005:18;15997:26;;16069:9;16063:4;16059:20;16055:1;16044:9;16040:17;16033:47;16097:78;16170:4;16161:6;16097:78;:::i;:::-;16089:86;;15869:313;;;;:::o;16188:419::-;16354:4;16392:2;16381:9;16377:18;16369:26;;16441:9;16435:4;16431:20;16427:1;16416:9;16412:17;16405:47;16469:131;16595:4;16469:131;:::i;:::-;16461:139;;16188:419;;;:::o;16613:::-;16779:4;16817:2;16806:9;16802:18;16794:26;;16866:9;16860:4;16856:20;16852:1;16841:9;16837:17;16830:47;16894:131;17020:4;16894:131;:::i;:::-;16886:139;;16613:419;;;:::o;17038:::-;17204:4;17242:2;17231:9;17227:18;17219:26;;17291:9;17285:4;17281:20;17277:1;17266:9;17262:17;17255:47;17319:131;17445:4;17319:131;:::i;:::-;17311:139;;17038:419;;;:::o;17463:::-;17629:4;17667:2;17656:9;17652:18;17644:26;;17716:9;17710:4;17706:20;17702:1;17691:9;17687:17;17680:47;17744:131;17870:4;17744:131;:::i;:::-;17736:139;;17463:419;;;:::o;17888:::-;18054:4;18092:2;18081:9;18077:18;18069:26;;18141:9;18135:4;18131:20;18127:1;18116:9;18112:17;18105:47;18169:131;18295:4;18169:131;:::i;:::-;18161:139;;17888:419;;;:::o;18313:::-;18479:4;18517:2;18506:9;18502:18;18494:26;;18566:9;18560:4;18556:20;18552:1;18541:9;18537:17;18530:47;18594:131;18720:4;18594:131;:::i;:::-;18586:139;;18313:419;;;:::o;18738:::-;18904:4;18942:2;18931:9;18927:18;18919:26;;18991:9;18985:4;18981:20;18977:1;18966:9;18962:17;18955:47;19019:131;19145:4;19019:131;:::i;:::-;19011:139;;18738:419;;;:::o;19163:::-;19329:4;19367:2;19356:9;19352:18;19344:26;;19416:9;19410:4;19406:20;19402:1;19391:9;19387:17;19380:47;19444:131;19570:4;19444:131;:::i;:::-;19436:139;;19163:419;;;:::o;19588:::-;19754:4;19792:2;19781:9;19777:18;19769:26;;19841:9;19835:4;19831:20;19827:1;19816:9;19812:17;19805:47;19869:131;19995:4;19869:131;:::i;:::-;19861:139;;19588:419;;;:::o;20013:::-;20179:4;20217:2;20206:9;20202:18;20194:26;;20266:9;20260:4;20256:20;20252:1;20241:9;20237:17;20230:47;20294:131;20420:4;20294:131;:::i;:::-;20286:139;;20013:419;;;:::o;20438:222::-;20531:4;20569:2;20558:9;20554:18;20546:26;;20582:71;20650:1;20639:9;20635:17;20626:6;20582:71;:::i;:::-;20438:222;;;;:::o;20666:129::-;20700:6;20727:20;;:::i;:::-;20717:30;;20756:33;20784:4;20776:6;20756:33;:::i;:::-;20666:129;;;:::o;20801:75::-;20834:6;20867:2;20861:9;20851:19;;20801:75;:::o;20882:307::-;20943:4;21033:18;21025:6;21022:30;21019:56;;;21055:18;;:::i;:::-;21019:56;21093:29;21115:6;21093:29;:::i;:::-;21085:37;;21177:4;21171;21167:15;21159:23;;20882:307;;;:::o;21195:141::-;21244:4;21267:3;21259:11;;21290:3;21287:1;21280:14;21324:4;21321:1;21311:18;21303:26;;21195:141;;;:::o;21342:98::-;21393:6;21427:5;21421:12;21411:22;;21342:98;;;:::o;21446:99::-;21498:6;21532:5;21526:12;21516:22;;21446:99;;;:::o;21551:168::-;21634:11;21668:6;21663:3;21656:19;21708:4;21703:3;21699:14;21684:29;;21551:168;;;;:::o;21725:147::-;21826:11;21863:3;21848:18;;21725:147;;;;:::o;21878:169::-;21962:11;21996:6;21991:3;21984:19;22036:4;22031:3;22027:14;22012:29;;21878:169;;;;:::o;22053:148::-;22155:11;22192:3;22177:18;;22053:148;;;;:::o;22207:305::-;22247:3;22266:20;22284:1;22266:20;:::i;:::-;22261:25;;22300:20;22318:1;22300:20;:::i;:::-;22295:25;;22454:1;22386:66;22382:74;22379:1;22376:81;22373:107;;;22460:18;;:::i;:::-;22373:107;22504:1;22501;22497:9;22490:16;;22207:305;;;;:::o;22518:185::-;22558:1;22575:20;22593:1;22575:20;:::i;:::-;22570:25;;22609:20;22627:1;22609:20;:::i;:::-;22604:25;;22648:1;22638:35;;22653:18;;:::i;:::-;22638:35;22695:1;22692;22688:9;22683:14;;22518:185;;;;:::o;22709:348::-;22749:7;22772:20;22790:1;22772:20;:::i;:::-;22767:25;;22806:20;22824:1;22806:20;:::i;:::-;22801:25;;22994:1;22926:66;22922:74;22919:1;22916:81;22911:1;22904:9;22897:17;22893:105;22890:131;;;23001:18;;:::i;:::-;22890:131;23049:1;23046;23042:9;23031:20;;22709:348;;;;:::o;23063:191::-;23103:4;23123:20;23141:1;23123:20;:::i;:::-;23118:25;;23157:20;23175:1;23157:20;:::i;:::-;23152:25;;23196:1;23193;23190:8;23187:34;;;23201:18;;:::i;:::-;23187:34;23246:1;23243;23239:9;23231:17;;23063:191;;;;:::o;23260:96::-;23297:7;23326:24;23344:5;23326:24;:::i;:::-;23315:35;;23260:96;;;:::o;23362:90::-;23396:7;23439:5;23432:13;23425:21;23414:32;;23362:90;;;:::o;23458:149::-;23494:7;23534:66;23527:5;23523:78;23512:89;;23458:149;;;:::o;23613:126::-;23650:7;23690:42;23683:5;23679:54;23668:65;;23613:126;;;:::o;23745:77::-;23782:7;23811:5;23800:16;;23745:77;;;:::o;23828:154::-;23912:6;23907:3;23902;23889:30;23974:1;23965:6;23960:3;23956:16;23949:27;23828:154;;;:::o;23988:307::-;24056:1;24066:113;24080:6;24077:1;24074:13;24066:113;;;24165:1;24160:3;24156:11;24150:18;24146:1;24141:3;24137:11;24130:39;24102:2;24099:1;24095:10;24090:15;;24066:113;;;24197:6;24194:1;24191:13;24188:101;;;24277:1;24268:6;24263:3;24259:16;24252:27;24188:101;24037:258;23988:307;;;:::o;24301:320::-;24345:6;24382:1;24376:4;24372:12;24362:22;;24429:1;24423:4;24419:12;24450:18;24440:81;;24506:4;24498:6;24494:17;24484:27;;24440:81;24568:2;24560:6;24557:14;24537:18;24534:38;24531:84;;;24587:18;;:::i;:::-;24531:84;24352:269;24301:320;;;:::o;24627:281::-;24710:27;24732:4;24710:27;:::i;:::-;24702:6;24698:40;24840:6;24828:10;24825:22;24804:18;24792:10;24789:34;24786:62;24783:88;;;24851:18;;:::i;:::-;24783:88;24891:10;24887:2;24880:22;24670:238;24627:281;;:::o;24914:233::-;24953:3;24976:24;24994:5;24976:24;:::i;:::-;24967:33;;25022:66;25015:5;25012:77;25009:103;;;25092:18;;:::i;:::-;25009:103;25139:1;25132:5;25128:13;25121:20;;24914:233;;;:::o;25153:176::-;25185:1;25202:20;25220:1;25202:20;:::i;:::-;25197:25;;25236:20;25254:1;25236:20;:::i;:::-;25231:25;;25275:1;25265:35;;25280:18;;:::i;:::-;25265:35;25321:1;25318;25314:9;25309:14;;25153:176;;;;:::o;25335:180::-;25383:77;25380:1;25373:88;25480:4;25477:1;25470:15;25504:4;25501:1;25494:15;25521:180;25569:77;25566:1;25559:88;25666:4;25663:1;25656:15;25690:4;25687:1;25680:15;25707:180;25755:77;25752:1;25745:88;25852:4;25849:1;25842:15;25876:4;25873:1;25866:15;25893:180;25941:77;25938:1;25931:88;26038:4;26035:1;26028:15;26062:4;26059:1;26052:15;26079:180;26127:77;26124:1;26117:88;26224:4;26221:1;26214:15;26248:4;26245:1;26238:15;26265:117;26374:1;26371;26364:12;26388:117;26497:1;26494;26487:12;26511:117;26620:1;26617;26610:12;26634:117;26743:1;26740;26733:12;26757:117;26866:1;26863;26856:12;26880:117;26989:1;26986;26979:12;27003:102;27044:6;27095:2;27091:7;27086:2;27079:5;27075:14;27071:28;27061:38;;27003:102;;;:::o;27111:225::-;27251:34;27247:1;27239:6;27235:14;27228:58;27320:8;27315:2;27307:6;27303:15;27296:33;27111:225;:::o;27342:169::-;27482:21;27478:1;27470:6;27466:14;27459:45;27342:169;:::o;27517:178::-;27657:30;27653:1;27645:6;27641:14;27634:54;27517:178;:::o;27701:163::-;27841:15;27837:1;27829:6;27825:14;27818:39;27701:163;:::o;27870:176::-;28010:28;28006:1;27998:6;27994:14;27987:52;27870:176;:::o;28052:166::-;28192:18;28188:1;28180:6;28176:14;28169:42;28052:166;:::o;28224:182::-;28364:34;28360:1;28352:6;28348:14;28341:58;28224:182;:::o;28412:114::-;;:::o;28532:166::-;28672:18;28668:1;28660:6;28656:14;28649:42;28532:166;:::o;28704:158::-;28844:10;28840:1;28832:6;28828:14;28821:34;28704:158;:::o;28868:181::-;29008:33;29004:1;28996:6;28992:14;28985:57;28868:181;:::o;29055:122::-;29128:24;29146:5;29128:24;:::i;:::-;29121:5;29118:35;29108:63;;29167:1;29164;29157:12;29108:63;29055:122;:::o;29183:116::-;29253:21;29268:5;29253:21;:::i;:::-;29246:5;29243:32;29233:60;;29289:1;29286;29279:12;29233:60;29183:116;:::o;29305:120::-;29377:23;29394:5;29377:23;:::i;:::-;29370:5;29367:34;29357:62;;29415:1;29412;29405:12;29357:62;29305:120;:::o;29431:122::-;29504:24;29522:5;29504:24;:::i;:::-;29497:5;29494:35;29484:63;;29543:1;29540;29533:12;29484:63;29431:122;:::o

Swarm Source

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