ETH Price: $3,112.19 (+0.46%)
Gas: 4 Gwei

Token

MadGibber (MG)
 

Overview

Max Total Supply

1,831 MG

Holders

787

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 MG
0xc2bf53639861a84c186c5440c0579d2bad435d81
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:
MadGibber

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// 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/utils/introspection/ERC165.sol


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the NFT Royalty Standard.
 *
 * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
 * support for royalty payments across all NFT marketplaces and ecosystem participants.
 *
 * _Available since v4.5._
 */
interface IERC2981 is IERC165 {
    /**
     * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
     * exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
     */
    function royaltyInfo(uint256 tokenId, uint256 salePrice)
        external
        view
        returns (address receiver, uint256 royaltyAmount);
}

// File: @openzeppelin/contracts/token/common/ERC2981.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
 *
 * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
 * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
 *
 * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
 * fee is specified in basis points by default.
 *
 * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
 * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
 * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
 *
 * _Available since v4.5._
 */
abstract contract ERC2981 is IERC2981, ERC165 {
    struct RoyaltyInfo {
        address receiver;
        uint96 royaltyFraction;
    }

    RoyaltyInfo private _defaultRoyaltyInfo;
    mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;

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

    /**
     * @inheritdoc IERC2981
     */
    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) {
        RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];

        if (royalty.receiver == address(0)) {
            royalty = _defaultRoyaltyInfo;
        }

        uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator();

        return (royalty.receiver, royaltyAmount);
    }

    /**
     * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
     * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
     * override.
     */
    function _feeDenominator() internal pure virtual returns (uint96) {
        return 10000;
    }

    /**
     * @dev Sets the royalty information that all ids in this contract will default to.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: invalid receiver");

        _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Removes default royalty information.
     */
    function _deleteDefaultRoyalty() internal virtual {
        delete _defaultRoyaltyInfo;
    }

    /**
     * @dev Sets the royalty information for a specific token id, overriding the global default.
     *
     * Requirements:
     *
     * - `receiver` cannot be the zero address.
     * - `feeNumerator` cannot be greater than the fee denominator.
     */
    function _setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) internal virtual {
        require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice");
        require(receiver != address(0), "ERC2981: Invalid parameters");

        _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
    }

    /**
     * @dev Resets royalty information for the token id back to the global default.
     */
    function _resetTokenRoyalty(uint256 tokenId) internal virtual {
        delete _tokenRoyaltyInfo[tokenId];
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

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

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

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

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

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

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

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

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

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

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

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

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

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

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

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

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

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

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

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

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

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: rare.sol


pragma solidity ^0.8.9;




//import "@openzeppelin/contracts/interfaces/IERC2981.sol";




contract MadGibber is ERC721A, Ownable, ReentrancyGuard, ERC2981 { 
event DevMintEvent(address ownerAddress, uint256 startWith, uint256 amountMinted);
uint256 public devTotal;
    uint256 public _maxSupply = 1683;
    uint256 public _mintPrice = 0.002 ether;
    uint256 public _maxMintPerTx = 4;

    uint256 public _maxFreeMintPerAddr = 1;
    uint256 public _maxFreeMintSupply = 1123;
     uint256 public devSupply = 286;

    using Strings for uint256;
    string public baseURI;
    mapping(address => uint256) private _mintedFreeAmount;

    // Royalties
    address public royaltyAdd;

    constructor(string memory initBaseURI) ERC721A("MadGibber", "MG") {
        baseURI = initBaseURI;
        setDefaultRoyalty(msg.sender, 1000); // 10%
    }

    // Set default royalty account & percentage
    function setDefaultRoyalty(address _receiver, uint96 _feeNumerator) public {
        royaltyAdd = _receiver;
        _setDefaultRoyalty(_receiver, _feeNumerator);
    }

    // Set token specific royalty
    function setTokenRoyalty(
        uint256 tokenId,
        address receiver,
        uint96 feeNumerator
    ) external onlyOwner {
        _setTokenRoyalty(tokenId, royaltyAdd, feeNumerator);
    }

    function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view override returns (address, uint256) {
        // Get royalty info from ERC2981 base implementation
        (, uint royaltyAmt) = super.royaltyInfo(_tokenId, _salePrice);
        // Royalty address is always the one specified in this contract 
        return (royaltyAdd, royaltyAmt);
    }

    // /**
    //  * @dev See {IERC165-supportsInterface}.
    //  */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC2981) returns (bool) {
        return interfaceId == type(IERC2981).interfaceId || 
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    
    function mint(uint256 count) external payable {
        uint256 cost = _mintPrice;
        bool isFree = ((totalSupply() + count < _maxFreeMintSupply + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= _maxFreeMintPerAddr)) ||
            (msg.sender == owner());

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < _maxSupply - devSupply + 1, "Sold out!");
        require(count < _maxMintPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }
    
     function devMint() public onlyOwner {
        devTotal += devSupply;
        emit DevMintEvent(_msgSender(), devTotal, devSupply);
        _safeMint(msg.sender, devSupply);
    }

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

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

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

    function setFreeAmount(uint256 amount) external onlyOwner {
        _maxFreeMintSupply = amount;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        _mintPrice = _newPrice;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"initBaseURI","type":"string"}],"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":false,"internalType":"address","name":"ownerAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountMinted","type":"uint256"}],"name":"DevMintEvent","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":"_maxFreeMintPerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxFreeMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintPrice","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":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royaltyAdd","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_receiver","type":"address"},{"internalType":"uint96","name":"_feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setFreeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610693600d5566071afd498d0000600e556004600f55600160105561046360115561011e6012553480156200003857600080fd5b506040516200459b3803806200459b83398181016040528101906200005e9190620005c5565b6040518060400160405280600981526020017f4d616447696262657200000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4d470000000000000000000000000000000000000000000000000000000000008152508160029081620000db919062000861565b508060039081620000ed919062000861565b50620000fe6200015b60201b60201c565b6000819055505050620001266200011a6200016060201b60201c565b6200016860201b60201c565b600160098190555080601390816200013f919062000861565b5062000154336103e86200022e60201b60201c565b5062000a63565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200028182826200028560201b60201c565b5050565b620002956200042860201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed90620009cf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000368576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035f9062000a41565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200049b8262000450565b810181811067ffffffffffffffff82111715620004bd57620004bc62000461565b5b80604052505050565b6000620004d262000432565b9050620004e0828262000490565b919050565b600067ffffffffffffffff82111562000503576200050262000461565b5b6200050e8262000450565b9050602081019050919050565b60005b838110156200053b5780820151818401526020810190506200051e565b60008484015250505050565b60006200055e6200055884620004e5565b620004c6565b9050828152602081018484840111156200057d576200057c6200044b565b5b6200058a8482856200051b565b509392505050565b600082601f830112620005aa57620005a962000446565b5b8151620005bc84826020860162000547565b91505092915050565b600060208284031215620005de57620005dd6200043c565b5b600082015167ffffffffffffffff811115620005ff57620005fe62000441565b5b6200060d8482850162000592565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066957607f821691505b6020821081036200067f576200067e62000621565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006aa565b620006f58683620006aa565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007426200073c62000736846200070d565b62000717565b6200070d565b9050919050565b6000819050919050565b6200075e8362000721565b620007766200076d8262000749565b848454620006b7565b825550505050565b600090565b6200078d6200077e565b6200079a81848462000753565b505050565b5b81811015620007c257620007b660008262000783565b600181019050620007a0565b5050565b601f8211156200081157620007db8162000685565b620007e6846200069a565b81016020851015620007f6578190505b6200080e62000805856200069a565b8301826200079f565b50505b505050565b600082821c905092915050565b6000620008366000198460080262000816565b1980831691505092915050565b600062000851838362000823565b9150826002028217905092915050565b6200086c8262000616565b67ffffffffffffffff81111562000888576200088762000461565b5b62000894825462000650565b620008a1828285620007c6565b600060209050601f831160018114620008d95760008415620008c4578287015190505b620008d0858262000843565b86555062000940565b601f198416620008e98662000685565b60005b828110156200091357848901518255600182019150602085019450602081019050620008ec565b868310156200093357848901516200092f601f89168262000823565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b6000620009b7602a8362000948565b9150620009c48262000959565b604082019050919050565b60006020820190508181036000830152620009ea81620009a8565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b600062000a2960198362000948565b915062000a3682620009f1565b602082019050919050565b6000602082019050818103600083015262000a5c8162000a1a565b9050919050565b613b288062000a736000396000f3fe6080604052600436106102045760003560e01c80635e1c4b601161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610704578063c87b56dd1461072d578063de314a591461076a578063e985e9c514610795578063f2fde38b146107d257610204565b806395d89b41146106695780639cb57d2014610694578063a0712d68146106bf578063a22cb465146106db57610204565b8063715018a6116100e7578063715018a6146105be5780637c69e207146105d55780638da5cb5b146105ec57806391b7f5ed1461061757806392910eec1461064057610204565b80635e1c4b60146104ee5780636352211e146105195780636c0360eb1461055657806370a082311461058157610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461043e57806341c66d0a1461044857806342842e0e1461047357806355f804b31461049c5780635944c753146104c557610204565b8063190866921461038157806322f4596f146103ac57806323b872dd146103d75780632a55205a1461040057610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461032b57806318160ddd1461035657610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061275f565b6107fb565b60405161023d91906127a7565b60405180910390f35b34801561025257600080fd5b5061025b6108f5565b60405161026891906127db565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612898565b6108fb565b005b3480156102a657600080fd5b506102af61094a565b6040516102bc9190612968565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906129b6565b6109dc565b6040516102f991906129f2565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612a0d565b610a5b565b005b34801561033757600080fd5b50610340610b9f565b60405161034d91906127db565b60405180910390f35b34801561036257600080fd5b5061036b610ba5565b60405161037891906127db565b60405180910390f35b34801561038d57600080fd5b50610396610bbc565b6040516103a391906129f2565b60405180910390f35b3480156103b857600080fd5b506103c1610be2565b6040516103ce91906127db565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612a4d565b610be8565b005b34801561040c57600080fd5b5061042760048036038101906104229190612aa0565b610f0a565b604051610435929190612ae0565b60405180910390f35b610446610f4c565b005b34801561045457600080fd5b5061045d611022565b60405161046a91906127db565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612a4d565b611028565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612c3e565b611048565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190612c87565b611063565b005b3480156104fa57600080fd5b5061050361109d565b60405161051091906127db565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b91906129b6565b6110a3565b60405161054d91906129f2565b60405180910390f35b34801561056257600080fd5b5061056b6110b5565b6040516105789190612968565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612cda565b611143565b6040516105b591906127db565b60405180910390f35b3480156105ca57600080fd5b506105d36111fb565b005b3480156105e157600080fd5b506105ea61120f565b005b3480156105f857600080fd5b50610601611286565b60405161060e91906129f2565b60405180910390f35b34801561062357600080fd5b5061063e600480360381019061063991906129b6565b6112b0565b005b34801561064c57600080fd5b50610667600480360381019061066291906129b6565b6112c2565b005b34801561067557600080fd5b5061067e6112d4565b60405161068b9190612968565b60405180910390f35b3480156106a057600080fd5b506106a9611366565b6040516106b691906127db565b60405180910390f35b6106d960048036038101906106d491906129b6565b61136c565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612d33565b6115b3565b005b34801561071057600080fd5b5061072b60048036038101906107269190612e14565b61172a565b005b34801561073957600080fd5b50610754600480360381019061074f91906129b6565b61179d565b6040516107619190612968565b60405180910390f35b34801561077657600080fd5b5061077f611819565b60405161078c91906127db565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612e97565b61181f565b6040516107c991906127a7565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612cda565b6118b3565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109468282611936565b5050565b60606002805461095990612f06565b80601f016020809104026020016040519081016040528092919081815260200182805461098590612f06565b80156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109e782611acb565b610a1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a66826110a3565b90508073ffffffffffffffffffffffffffffffffffffffff16610a87611b2a565b73ffffffffffffffffffffffffffffffffffffffff1614610aea57610ab381610aae611b2a565b61181f565b610ae9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610baf611b32565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bf382611b37565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6684611c03565b91509150610c7c8187610c77611b2a565b611c2a565b610cc857610c9186610c8c611b2a565b61181f565b610cc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b8686866001611c6e565b8015610d4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1485610df0888887611c74565b7c020000000000000000000000000000000000000000000000000000000017611c9c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e9a5760006001850190506000600460008381526020019081526020016000205403610e98576000548114610e97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f028686866001611cc7565b505050505050565b6000806000610f198585611ccd565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f54611eb7565b600260095403610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612f83565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610fc790612fd4565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b505090508061101757600080fd5b506001600981905550565b60125481565b6110438383836040518060200160405280600081525061172a565b505050565b611050611eb7565b806013908161105f9190613195565b5050565b61106b611eb7565b61109883601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611f35565b505050565b60115481565b60006110ae82611b37565b9050919050565b601380546110c290612f06565b80601f01602080910402602001604051908101604052809291908181526020018280546110ee90612f06565b801561113b5780601f106111105761010080835404028352916020019161113b565b820191906000526020600020905b81548152906001019060200180831161111e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111aa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611203611eb7565b61120d60006120dc565b565b611217611eb7565b601254600c600082825461122b9190613296565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e61125b6121a2565b600c54601254604051611270939291906132ca565b60405180910390a1611284336012546121aa565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b8611eb7565b80600e8190555050565b6112ca611eb7565b8060118190555050565b6060600380546112e390612f06565b80601f016020809104026020016040519081016040528092919081815260200182805461130f90612f06565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b5050505050905090565b60105481565b6000600e549050600060016011546113849190613296565b8361138d610ba5565b6113979190613296565b1080156113f0575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ed9190613296565b11155b8061142d57506113fe611286565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561143a57600091505b81836114469190613301565b341015611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906133a7565b60405180910390fd5b6001601254600d5461149a91906133c7565b6114a49190613296565b836114ad610ba5565b6114b79190613296565b106114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90613447565b60405180910390fd5b6001600f546115069190613296565b8310611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e906134b3565b60405180910390fd5b80156115a45782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159c9190613296565b925050819055505b6115ae33846121aa565b505050565b6115bb611b2a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361161f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061162c611b2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d9611b2a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171e91906127a7565b60405180910390a35050565b611735848484610be8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461179757611760848484846121c8565b611796576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117a882611acb565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613545565b60405180910390fd5b60136117f283612318565b604051602001611803929190613670565b6040516020818303038152906040529050919050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118bb611eb7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613711565b60405180910390fd5b611933816120dc565b50565b61193e612478565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906137a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a029061380f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611ad6611b32565b11158015611ae5575060005482105b8015611b23575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b46611b32565b11611bcc57600054811015611bcb5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bc9575b60008103611bbf576004600083600190039350838152602001908152602001600020549050611b95565b8092505050611bfe565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c8b868684612482565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611e6257600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611e6c612478565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611e989190613301565b611ea2919061385e565b90508160000151819350935050509250929050565b611ebf6121a2565b73ffffffffffffffffffffffffffffffffffffffff16611edd611286565b73ffffffffffffffffffffffffffffffffffffffff1614611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906138db565b60405180910390fd5b565b611f3d612478565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f92906137a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190613947565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6121c482826040518060200160405280600081525061248b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ee611b2a565b8786866040518563ffffffff1660e01b815260040161221094939291906139bc565b6020604051808303816000875af192505050801561224c57506040513d601f19601f820116820180604052508101906122499190613a1d565b60015b6122c5573d806000811461227c576040519150601f19603f3d011682016040523d82523d6000602084013e612281565b606091505b5060008151036122bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361235f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612473565b600082905060005b6000821461239157808061237a90613a4a565b915050600a8261238a919061385e565b9150612367565b60008167ffffffffffffffff8111156123ad576123ac612b13565b5b6040519080825280601f01601f1916602001820160405280156123df5781602001600182028036833780820191505090505b5090505b6000851461246c576001826123f891906133c7565b9150600a856124079190613a92565b60306124139190613296565b60f81b81838151811061242957612428613ac3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612465919061385e565b94506123e3565b8093505050505b919050565b6000612710905090565b60009392505050565b6124958383612528565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461252357600080549050600083820390505b6124d560008683806001019450866121c8565b61250b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124c257816000541461252057600080fd5b50505b505050565b60008054905060008203612568576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125756000848385611c6e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125ec836125dd6000866000611c74565b6125e6856126e3565b17611c9c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461268d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612652565b50600082036126c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126de6000848385611cc7565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61273c81612707565b811461274757600080fd5b50565b60008135905061275981612733565b92915050565b600060208284031215612775576127746126fd565b5b60006127838482850161274a565b91505092915050565b60008115159050919050565b6127a18161278c565b82525050565b60006020820190506127bc6000830184612798565b92915050565b6000819050919050565b6127d5816127c2565b82525050565b60006020820190506127f060008301846127cc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612821826127f6565b9050919050565b61283181612816565b811461283c57600080fd5b50565b60008135905061284e81612828565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61287581612854565b811461288057600080fd5b50565b6000813590506128928161286c565b92915050565b600080604083850312156128af576128ae6126fd565b5b60006128bd8582860161283f565b92505060206128ce85828601612883565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129125780820151818401526020810190506128f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061293a826128d8565b61294481856128e3565b93506129548185602086016128f4565b61295d8161291e565b840191505092915050565b60006020820190508181036000830152612982818461292f565b905092915050565b612993816127c2565b811461299e57600080fd5b50565b6000813590506129b08161298a565b92915050565b6000602082840312156129cc576129cb6126fd565b5b60006129da848285016129a1565b91505092915050565b6129ec81612816565b82525050565b6000602082019050612a0760008301846129e3565b92915050565b60008060408385031215612a2457612a236126fd565b5b6000612a328582860161283f565b9250506020612a43858286016129a1565b9150509250929050565b600080600060608486031215612a6657612a656126fd565b5b6000612a748682870161283f565b9350506020612a858682870161283f565b9250506040612a96868287016129a1565b9150509250925092565b60008060408385031215612ab757612ab66126fd565b5b6000612ac5858286016129a1565b9250506020612ad6858286016129a1565b9150509250929050565b6000604082019050612af560008301856129e3565b612b0260208301846127cc565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b4b8261291e565b810181811067ffffffffffffffff82111715612b6a57612b69612b13565b5b80604052505050565b6000612b7d6126f3565b9050612b898282612b42565b919050565b600067ffffffffffffffff821115612ba957612ba8612b13565b5b612bb28261291e565b9050602081019050919050565b82818337600083830152505050565b6000612be1612bdc84612b8e565b612b73565b905082815260208101848484011115612bfd57612bfc612b0e565b5b612c08848285612bbf565b509392505050565b600082601f830112612c2557612c24612b09565b5b8135612c35848260208601612bce565b91505092915050565b600060208284031215612c5457612c536126fd565b5b600082013567ffffffffffffffff811115612c7257612c71612702565b5b612c7e84828501612c10565b91505092915050565b600080600060608486031215612ca057612c9f6126fd565b5b6000612cae868287016129a1565b9350506020612cbf8682870161283f565b9250506040612cd086828701612883565b9150509250925092565b600060208284031215612cf057612cef6126fd565b5b6000612cfe8482850161283f565b91505092915050565b612d108161278c565b8114612d1b57600080fd5b50565b600081359050612d2d81612d07565b92915050565b60008060408385031215612d4a57612d496126fd565b5b6000612d588582860161283f565b9250506020612d6985828601612d1e565b9150509250929050565b600067ffffffffffffffff821115612d8e57612d8d612b13565b5b612d978261291e565b9050602081019050919050565b6000612db7612db284612d73565b612b73565b905082815260208101848484011115612dd357612dd2612b0e565b5b612dde848285612bbf565b509392505050565b600082601f830112612dfb57612dfa612b09565b5b8135612e0b848260208601612da4565b91505092915050565b60008060008060808587031215612e2e57612e2d6126fd565b5b6000612e3c8782880161283f565b9450506020612e4d8782880161283f565b9350506040612e5e878288016129a1565b925050606085013567ffffffffffffffff811115612e7f57612e7e612702565b5b612e8b87828801612de6565b91505092959194509250565b60008060408385031215612eae57612ead6126fd565b5b6000612ebc8582860161283f565b9250506020612ecd8582860161283f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1e57607f821691505b602082108103612f3157612f30612ed7565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f6d601f836128e3565b9150612f7882612f37565b602082019050919050565b60006020820190508181036000830152612f9c81612f60565b9050919050565b600081905092915050565b50565b6000612fbe600083612fa3565b9150612fc982612fae565b600082019050919050565b6000612fdf82612fb1565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261304b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261300e565b613055868361300e565b95508019841693508086168417925050509392505050565b6000819050919050565b600061309261308d613088846127c2565b61306d565b6127c2565b9050919050565b6000819050919050565b6130ac83613077565b6130c06130b882613099565b84845461301b565b825550505050565b600090565b6130d56130c8565b6130e08184846130a3565b505050565b5b81811015613104576130f96000826130cd565b6001810190506130e6565b5050565b601f8211156131495761311a81612fe9565b61312384612ffe565b81016020851015613132578190505b61314661313e85612ffe565b8301826130e5565b50505b505050565b600082821c905092915050565b600061316c6000198460080261314e565b1980831691505092915050565b6000613185838361315b565b9150826002028217905092915050565b61319e826128d8565b67ffffffffffffffff8111156131b7576131b6612b13565b5b6131c18254612f06565b6131cc828285613108565b600060209050601f8311600181146131ff57600084156131ed578287015190505b6131f78582613179565b86555061325f565b601f19841661320d86612fe9565b60005b8281101561323557848901518255600182019150602085019450602081019050613210565b86831015613252578489015161324e601f89168261315b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132a1826127c2565b91506132ac836127c2565b92508282019050808211156132c4576132c3613267565b5b92915050565b60006060820190506132df60008301866129e3565b6132ec60208301856127cc565b6132f960408301846127cc565b949350505050565b600061330c826127c2565b9150613317836127c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133505761334f613267565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613391601d836128e3565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b60006133d2826127c2565b91506133dd836127c2565b92508282039050818111156133f5576133f4613267565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60006134316009836128e3565b915061343c826133fb565b602082019050919050565b6000602082019050818103600083015261346081613424565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061349d6013836128e3565b91506134a882613467565b602082019050919050565b600060208201905081810360008301526134cc81613490565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061352f602f836128e3565b915061353a826134d3565b604082019050919050565b6000602082019050818103600083015261355e81613522565b9050919050565b600081905092915050565b6000815461357d81612f06565b6135878186613565565b945060018216600081146135a257600181146135b7576135ea565b60ff19831686528115158202860193506135ea565b6135c085612fe9565b60005b838110156135e2578154818901526001820191506020810190506135c3565b838801955050505b50505092915050565b60006135fe826128d8565b6136088185613565565b93506136188185602086016128f4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061365a600583613565565b915061366582613624565b600582019050919050565b600061367c8285613570565b915061368882846135f3565b91506136938261364d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136fb6026836128e3565b91506137068261369f565b604082019050919050565b6000602082019050818103600083015261372a816136ee565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061378d602a836128e3565b915061379882613731565b604082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006137f96019836128e3565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613869826127c2565b9150613874836127c2565b9250826138845761388361382f565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138c56020836128e3565b91506138d08261388f565b602082019050919050565b600060208201905081810360008301526138f4816138b8565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000613931601b836128e3565b915061393c826138fb565b602082019050919050565b6000602082019050818103600083015261396081613924565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061398e82613967565b6139988185613972565b93506139a88185602086016128f4565b6139b18161291e565b840191505092915050565b60006080820190506139d160008301876129e3565b6139de60208301866129e3565b6139eb60408301856127cc565b81810360608301526139fd8184613983565b905095945050505050565b600081519050613a1781612733565b92915050565b600060208284031215613a3357613a326126fd565b5b6000613a4184828501613a08565b91505092915050565b6000613a55826127c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a8757613a86613267565b5b600182019050919050565b6000613a9d826127c2565b9150613aa8836127c2565b925082613ab857613ab761382f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209f4370cd1565945b2126417295ade6efec0f2f03f680f24b3198f76088a66f6864736f6c6343000810003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56464a657a345a624e747946594b77675a4d385a686737695141674e61775a62556a3766416e3463756362662f00000000000000000000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80635e1c4b601161011857806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde14610704578063c87b56dd1461072d578063de314a591461076a578063e985e9c514610795578063f2fde38b146107d257610204565b806395d89b41146106695780639cb57d2014610694578063a0712d68146106bf578063a22cb465146106db57610204565b8063715018a6116100e7578063715018a6146105be5780637c69e207146105d55780638da5cb5b146105ec57806391b7f5ed1461061757806392910eec1461064057610204565b80635e1c4b60146104ee5780636352211e146105195780636c0360eb1461055657806370a082311461058157610204565b8063190866921161019b5780633ccfd60b1161016a5780633ccfd60b1461043e57806341c66d0a1461044857806342842e0e1461047357806355f804b31461049c5780635944c753146104c557610204565b8063190866921461038157806322f4596f146103ac57806323b872dd146103d75780632a55205a1461040057610204565b8063081812fc116101d7578063081812fc146102c5578063095ea7b3146103025780630afb04db1461032b57806318160ddd1461035657610204565b806301ffc9a7146102095780630387da421461024657806304634d8d1461027157806306fdde031461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b919061275f565b6107fb565b60405161023d91906127a7565b60405180910390f35b34801561025257600080fd5b5061025b6108f5565b60405161026891906127db565b60405180910390f35b34801561027d57600080fd5b5061029860048036038101906102939190612898565b6108fb565b005b3480156102a657600080fd5b506102af61094a565b6040516102bc9190612968565b60405180910390f35b3480156102d157600080fd5b506102ec60048036038101906102e791906129b6565b6109dc565b6040516102f991906129f2565b60405180910390f35b34801561030e57600080fd5b5061032960048036038101906103249190612a0d565b610a5b565b005b34801561033757600080fd5b50610340610b9f565b60405161034d91906127db565b60405180910390f35b34801561036257600080fd5b5061036b610ba5565b60405161037891906127db565b60405180910390f35b34801561038d57600080fd5b50610396610bbc565b6040516103a391906129f2565b60405180910390f35b3480156103b857600080fd5b506103c1610be2565b6040516103ce91906127db565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f99190612a4d565b610be8565b005b34801561040c57600080fd5b5061042760048036038101906104229190612aa0565b610f0a565b604051610435929190612ae0565b60405180910390f35b610446610f4c565b005b34801561045457600080fd5b5061045d611022565b60405161046a91906127db565b60405180910390f35b34801561047f57600080fd5b5061049a60048036038101906104959190612a4d565b611028565b005b3480156104a857600080fd5b506104c360048036038101906104be9190612c3e565b611048565b005b3480156104d157600080fd5b506104ec60048036038101906104e79190612c87565b611063565b005b3480156104fa57600080fd5b5061050361109d565b60405161051091906127db565b60405180910390f35b34801561052557600080fd5b50610540600480360381019061053b91906129b6565b6110a3565b60405161054d91906129f2565b60405180910390f35b34801561056257600080fd5b5061056b6110b5565b6040516105789190612968565b60405180910390f35b34801561058d57600080fd5b506105a860048036038101906105a39190612cda565b611143565b6040516105b591906127db565b60405180910390f35b3480156105ca57600080fd5b506105d36111fb565b005b3480156105e157600080fd5b506105ea61120f565b005b3480156105f857600080fd5b50610601611286565b60405161060e91906129f2565b60405180910390f35b34801561062357600080fd5b5061063e600480360381019061063991906129b6565b6112b0565b005b34801561064c57600080fd5b50610667600480360381019061066291906129b6565b6112c2565b005b34801561067557600080fd5b5061067e6112d4565b60405161068b9190612968565b60405180910390f35b3480156106a057600080fd5b506106a9611366565b6040516106b691906127db565b60405180910390f35b6106d960048036038101906106d491906129b6565b61136c565b005b3480156106e757600080fd5b5061070260048036038101906106fd9190612d33565b6115b3565b005b34801561071057600080fd5b5061072b60048036038101906107269190612e14565b61172a565b005b34801561073957600080fd5b50610754600480360381019061074f91906129b6565b61179d565b6040516107619190612968565b60405180910390f35b34801561077657600080fd5b5061077f611819565b60405161078c91906127db565b60405180910390f35b3480156107a157600080fd5b506107bc60048036038101906107b79190612e97565b61181f565b6040516107c991906127a7565b60405180910390f35b3480156107de57600080fd5b506107f960048036038101906107f49190612cda565b6118b3565b005b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061088e57506301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108be57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108ee5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600e5481565b81601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109468282611936565b5050565b60606002805461095990612f06565b80601f016020809104026020016040519081016040528092919081815260200182805461098590612f06565b80156109d25780601f106109a7576101008083540402835291602001916109d2565b820191906000526020600020905b8154815290600101906020018083116109b557829003601f168201915b5050505050905090565b60006109e782611acb565b610a1d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a66826110a3565b90508073ffffffffffffffffffffffffffffffffffffffff16610a87611b2a565b73ffffffffffffffffffffffffffffffffffffffff1614610aea57610ab381610aae611b2a565b61181f565b610ae9576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6000610baf611b32565b6001546000540303905090565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6000610bf382611b37565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610c6684611c03565b91509150610c7c8187610c77611b2a565b611c2a565b610cc857610c9186610c8c611b2a565b61181f565b610cc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d2e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d3b8686866001611c6e565b8015610d4657600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e1485610df0888887611c74565b7c020000000000000000000000000000000000000000000000000000000017611c9c565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610e9a5760006001850190506000600460008381526020019081526020016000205403610e98576000548114610e97578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f028686866001611cc7565b505050505050565b6000806000610f198585611ccd565b915050601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b610f54611eb7565b600260095403610f99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9090612f83565b60405180910390fd5b600260098190555060003373ffffffffffffffffffffffffffffffffffffffff1647604051610fc790612fd4565b60006040518083038185875af1925050503d8060008114611004576040519150601f19603f3d011682016040523d82523d6000602084013e611009565b606091505b505090508061101757600080fd5b506001600981905550565b60125481565b6110438383836040518060200160405280600081525061172a565b505050565b611050611eb7565b806013908161105f9190613195565b5050565b61106b611eb7565b61109883601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611f35565b505050565b60115481565b60006110ae82611b37565b9050919050565b601380546110c290612f06565b80601f01602080910402602001604051908101604052809291908181526020018280546110ee90612f06565b801561113b5780601f106111105761010080835404028352916020019161113b565b820191906000526020600020905b81548152906001019060200180831161111e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111aa576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611203611eb7565b61120d60006120dc565b565b611217611eb7565b601254600c600082825461122b9190613296565b925050819055507f8d8664e4328cbcd16b52db004cff5622d17995140cefada9f4578b857f9b204e61125b6121a2565b600c54601254604051611270939291906132ca565b60405180910390a1611284336012546121aa565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112b8611eb7565b80600e8190555050565b6112ca611eb7565b8060118190555050565b6060600380546112e390612f06565b80601f016020809104026020016040519081016040528092919081815260200182805461130f90612f06565b801561135c5780601f106113315761010080835404028352916020019161135c565b820191906000526020600020905b81548152906001019060200180831161133f57829003601f168201915b5050505050905090565b60105481565b6000600e549050600060016011546113849190613296565b8361138d610ba5565b6113979190613296565b1080156113f0575060105483601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113ed9190613296565b11155b8061142d57506113fe611286565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b9050801561143a57600091505b81836114469190613301565b341015611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f906133a7565b60405180910390fd5b6001601254600d5461149a91906133c7565b6114a49190613296565b836114ad610ba5565b6114b79190613296565b106114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee90613447565b60405180910390fd5b6001600f546115069190613296565b8310611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e906134b3565b60405180910390fd5b80156115a45782601460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461159c9190613296565b925050819055505b6115ae33846121aa565b505050565b6115bb611b2a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361161f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806007600061162c611b2a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166116d9611b2a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161171e91906127a7565b60405180910390a35050565b611735848484610be8565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461179757611760848484846121c8565b611796576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606117a882611acb565b6117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de90613545565b60405180910390fd5b60136117f283612318565b604051602001611803929190613670565b6040516020818303038152906040529050919050565b600f5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6118bb611eb7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613711565b60405180910390fd5b611933816120dc565b50565b61193e612478565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff16111561199c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611993906137a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a029061380f565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600081611ad6611b32565b11158015611ae5575060005482105b8015611b23575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611b46611b32565b11611bcc57600054811015611bcb5760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611bc9575b60008103611bbf576004600083600190039350838152602001908152602001600020549050611b95565b8092505050611bfe565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611c8b868684612482565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1603611e6257600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000611e6c612478565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff1686611e989190613301565b611ea2919061385e565b90508160000151819350935050509250929050565b611ebf6121a2565b73ffffffffffffffffffffffffffffffffffffffff16611edd611286565b73ffffffffffffffffffffffffffffffffffffffff1614611f33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2a906138db565b60405180910390fd5b565b611f3d612478565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f92906137a3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361200a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200190613947565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600b600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550905050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6121c482826040518060200160405280600081525061248b565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ee611b2a565b8786866040518563ffffffff1660e01b815260040161221094939291906139bc565b6020604051808303816000875af192505050801561224c57506040513d601f19601f820116820180604052508101906122499190613a1d565b60015b6122c5573d806000811461227c576040519150601f19603f3d011682016040523d82523d6000602084013e612281565b606091505b5060008151036122bd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000820361235f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612473565b600082905060005b6000821461239157808061237a90613a4a565b915050600a8261238a919061385e565b9150612367565b60008167ffffffffffffffff8111156123ad576123ac612b13565b5b6040519080825280601f01601f1916602001820160405280156123df5781602001600182028036833780820191505090505b5090505b6000851461246c576001826123f891906133c7565b9150600a856124079190613a92565b60306124139190613296565b60f81b81838151811061242957612428613ac3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612465919061385e565b94506123e3565b8093505050505b919050565b6000612710905090565b60009392505050565b6124958383612528565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461252357600080549050600083820390505b6124d560008683806001019450866121c8565b61250b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124c257816000541461252057600080fd5b50505b505050565b60008054905060008203612568576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125756000848385611c6e565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125ec836125dd6000866000611c74565b6125e6856126e3565b17611c9c565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461268d57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612652565b50600082036126c8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126de6000848385611cc7565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61273c81612707565b811461274757600080fd5b50565b60008135905061275981612733565b92915050565b600060208284031215612775576127746126fd565b5b60006127838482850161274a565b91505092915050565b60008115159050919050565b6127a18161278c565b82525050565b60006020820190506127bc6000830184612798565b92915050565b6000819050919050565b6127d5816127c2565b82525050565b60006020820190506127f060008301846127cc565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612821826127f6565b9050919050565b61283181612816565b811461283c57600080fd5b50565b60008135905061284e81612828565b92915050565b60006bffffffffffffffffffffffff82169050919050565b61287581612854565b811461288057600080fd5b50565b6000813590506128928161286c565b92915050565b600080604083850312156128af576128ae6126fd565b5b60006128bd8582860161283f565b92505060206128ce85828601612883565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156129125780820151818401526020810190506128f7565b60008484015250505050565b6000601f19601f8301169050919050565b600061293a826128d8565b61294481856128e3565b93506129548185602086016128f4565b61295d8161291e565b840191505092915050565b60006020820190508181036000830152612982818461292f565b905092915050565b612993816127c2565b811461299e57600080fd5b50565b6000813590506129b08161298a565b92915050565b6000602082840312156129cc576129cb6126fd565b5b60006129da848285016129a1565b91505092915050565b6129ec81612816565b82525050565b6000602082019050612a0760008301846129e3565b92915050565b60008060408385031215612a2457612a236126fd565b5b6000612a328582860161283f565b9250506020612a43858286016129a1565b9150509250929050565b600080600060608486031215612a6657612a656126fd565b5b6000612a748682870161283f565b9350506020612a858682870161283f565b9250506040612a96868287016129a1565b9150509250925092565b60008060408385031215612ab757612ab66126fd565b5b6000612ac5858286016129a1565b9250506020612ad6858286016129a1565b9150509250929050565b6000604082019050612af560008301856129e3565b612b0260208301846127cc565b9392505050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612b4b8261291e565b810181811067ffffffffffffffff82111715612b6a57612b69612b13565b5b80604052505050565b6000612b7d6126f3565b9050612b898282612b42565b919050565b600067ffffffffffffffff821115612ba957612ba8612b13565b5b612bb28261291e565b9050602081019050919050565b82818337600083830152505050565b6000612be1612bdc84612b8e565b612b73565b905082815260208101848484011115612bfd57612bfc612b0e565b5b612c08848285612bbf565b509392505050565b600082601f830112612c2557612c24612b09565b5b8135612c35848260208601612bce565b91505092915050565b600060208284031215612c5457612c536126fd565b5b600082013567ffffffffffffffff811115612c7257612c71612702565b5b612c7e84828501612c10565b91505092915050565b600080600060608486031215612ca057612c9f6126fd565b5b6000612cae868287016129a1565b9350506020612cbf8682870161283f565b9250506040612cd086828701612883565b9150509250925092565b600060208284031215612cf057612cef6126fd565b5b6000612cfe8482850161283f565b91505092915050565b612d108161278c565b8114612d1b57600080fd5b50565b600081359050612d2d81612d07565b92915050565b60008060408385031215612d4a57612d496126fd565b5b6000612d588582860161283f565b9250506020612d6985828601612d1e565b9150509250929050565b600067ffffffffffffffff821115612d8e57612d8d612b13565b5b612d978261291e565b9050602081019050919050565b6000612db7612db284612d73565b612b73565b905082815260208101848484011115612dd357612dd2612b0e565b5b612dde848285612bbf565b509392505050565b600082601f830112612dfb57612dfa612b09565b5b8135612e0b848260208601612da4565b91505092915050565b60008060008060808587031215612e2e57612e2d6126fd565b5b6000612e3c8782880161283f565b9450506020612e4d8782880161283f565b9350506040612e5e878288016129a1565b925050606085013567ffffffffffffffff811115612e7f57612e7e612702565b5b612e8b87828801612de6565b91505092959194509250565b60008060408385031215612eae57612ead6126fd565b5b6000612ebc8582860161283f565b9250506020612ecd8582860161283f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f1e57607f821691505b602082108103612f3157612f30612ed7565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000612f6d601f836128e3565b9150612f7882612f37565b602082019050919050565b60006020820190508181036000830152612f9c81612f60565b9050919050565b600081905092915050565b50565b6000612fbe600083612fa3565b9150612fc982612fae565b600082019050919050565b6000612fdf82612fb1565b9150819050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261304b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261300e565b613055868361300e565b95508019841693508086168417925050509392505050565b6000819050919050565b600061309261308d613088846127c2565b61306d565b6127c2565b9050919050565b6000819050919050565b6130ac83613077565b6130c06130b882613099565b84845461301b565b825550505050565b600090565b6130d56130c8565b6130e08184846130a3565b505050565b5b81811015613104576130f96000826130cd565b6001810190506130e6565b5050565b601f8211156131495761311a81612fe9565b61312384612ffe565b81016020851015613132578190505b61314661313e85612ffe565b8301826130e5565b50505b505050565b600082821c905092915050565b600061316c6000198460080261314e565b1980831691505092915050565b6000613185838361315b565b9150826002028217905092915050565b61319e826128d8565b67ffffffffffffffff8111156131b7576131b6612b13565b5b6131c18254612f06565b6131cc828285613108565b600060209050601f8311600181146131ff57600084156131ed578287015190505b6131f78582613179565b86555061325f565b601f19841661320d86612fe9565b60005b8281101561323557848901518255600182019150602085019450602081019050613210565b86831015613252578489015161324e601f89168261315b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006132a1826127c2565b91506132ac836127c2565b92508282019050808211156132c4576132c3613267565b5b92915050565b60006060820190506132df60008301866129e3565b6132ec60208301856127cc565b6132f960408301846127cc565b949350505050565b600061330c826127c2565b9150613317836127c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156133505761334f613267565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000613391601d836128e3565b915061339c8261335b565b602082019050919050565b600060208201905081810360008301526133c081613384565b9050919050565b60006133d2826127c2565b91506133dd836127c2565b92508282039050818111156133f5576133f4613267565b5b92915050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b60006134316009836128e3565b915061343c826133fb565b602082019050919050565b6000602082019050818103600083015261346081613424565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b600061349d6013836128e3565b91506134a882613467565b602082019050919050565b600060208201905081810360008301526134cc81613490565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061352f602f836128e3565b915061353a826134d3565b604082019050919050565b6000602082019050818103600083015261355e81613522565b9050919050565b600081905092915050565b6000815461357d81612f06565b6135878186613565565b945060018216600081146135a257600181146135b7576135ea565b60ff19831686528115158202860193506135ea565b6135c085612fe9565b60005b838110156135e2578154818901526001820191506020810190506135c3565b838801955050505b50505092915050565b60006135fe826128d8565b6136088185613565565b93506136188185602086016128f4565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061365a600583613565565b915061366582613624565b600582019050919050565b600061367c8285613570565b915061368882846135f3565b91506136938261364d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006136fb6026836128e3565b91506137068261369f565b604082019050919050565b6000602082019050818103600083015261372a816136ee565b9050919050565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b600061378d602a836128e3565b915061379882613731565b604082019050919050565b600060208201905081810360008301526137bc81613780565b9050919050565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b60006137f96019836128e3565b9150613804826137c3565b602082019050919050565b60006020820190508181036000830152613828816137ec565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613869826127c2565b9150613874836127c2565b9250826138845761388361382f565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006138c56020836128e3565b91506138d08261388f565b602082019050919050565b600060208201905081810360008301526138f4816138b8565b9050919050565b7f455243323938313a20496e76616c696420706172616d65746572730000000000600082015250565b6000613931601b836128e3565b915061393c826138fb565b602082019050919050565b6000602082019050818103600083015261396081613924565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061398e82613967565b6139988185613972565b93506139a88185602086016128f4565b6139b18161291e565b840191505092915050565b60006080820190506139d160008301876129e3565b6139de60208301866129e3565b6139eb60408301856127cc565b81810360608301526139fd8184613983565b905095945050505050565b600081519050613a1781612733565b92915050565b600060208284031215613a3357613a326126fd565b5b6000613a4184828501613a08565b91505092915050565b6000613a55826127c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613a8757613a86613267565b5b600182019050919050565b6000613a9d826127c2565b9150613aa8836127c2565b925082613ab857613ab761382f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea26469706673582212209f4370cd1565945b2126417295ade6efec0f2f03f680f24b3198f76088a66f6864736f6c63430008100033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d56464a657a345a624e747946594b77675a4d385a686737695141674e61775a62556a3766416e3463756362662f00000000000000000000

-----Decoded View---------------
Arg [0] : initBaseURI (string): ipfs://QmVFJez4ZbNtyFYKwgZM8Zhg7iQAgNawZbUj7fAn4cucbf/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d56464a657a345a624e747946594b77675a4d385a686737
Arg [3] : 695141674e61775a62556a3766416e3463756362662f00000000000000000000


Deployed Bytecode Sourcemap

66797:4035:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68500:416;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67019:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67628:171;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35183:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41666:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41107:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66950:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30934:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67378:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66980:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45373:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68054:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;70624:205;;;:::i;:::-;;67199:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48286:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70311:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67842:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67151:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36576:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67270:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32118:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15029:103;;;;;;;;;;;;;:::i;:::-;;69647:182;;;;;;;;;;;;;:::i;:::-;;14381:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70519:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70407:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35359;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67106:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68930:704;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42224:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49069:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69953:350;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67065:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42689:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15287:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68500:416;68603:4;68642:26;68627:41;;;:11;:41;;;;:84;;;;68701:10;68686:25;;:11;:25;;;;68627:84;:161;;;;68778:10;68763:25;;:11;:25;;;;68627:161;:238;;;;68855:10;68840:25;;:11;:25;;;;68627:238;68620:245;;68500:416;;;:::o;67019:39::-;;;;:::o;67628:171::-;67727:9;67714:10;;:22;;;;;;;;;;;;;;;;;;67747:44;67766:9;67777:13;67747:18;:44::i;:::-;67628:171;;:::o;35183:100::-;35237:13;35270:5;35263:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35183:100;:::o;41666:218::-;41742:7;41767:16;41775:7;41767;:16::i;:::-;41762:64;;41792:34;;;;;;;;;;;;;;41762:64;41846:15;:24;41862:7;41846:24;;;;;;;;;;;:30;;;;;;;;;;;;41839:37;;41666:218;;;:::o;41107:400::-;41188:13;41204:16;41212:7;41204;:16::i;:::-;41188:32;;41260:5;41237:28;;:19;:17;:19::i;:::-;:28;;;41233:175;;41285:44;41302:5;41309:19;:17;:19::i;:::-;41285:16;:44::i;:::-;41280:128;;41357:35;;;;;;;;;;;;;;41280:128;41233:175;41453:2;41420:15;:24;41436:7;41420:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;41491:7;41487:2;41471:28;;41480:5;41471:28;;;;;;;;;;;;41177:330;41107:400;;:::o;66950:23::-;;;;:::o;30934:323::-;30995:7;31223:15;:13;:15::i;:::-;31208:12;;31192:13;;:28;:46;31185:53;;30934:323;:::o;67378:25::-;;;;;;;;;;;;;:::o;66980:32::-;;;;:::o;45373:2817::-;45507:27;45537;45556:7;45537:18;:27::i;:::-;45507:57;;45622:4;45581:45;;45597:19;45581:45;;;45577:86;;45635:28;;;;;;;;;;;;;;45577:86;45677:27;45706:23;45733:35;45760:7;45733:26;:35::i;:::-;45676:92;;;;45868:68;45893:15;45910:4;45916:19;:17;:19::i;:::-;45868:24;:68::i;:::-;45863:180;;45956:43;45973:4;45979:19;:17;:19::i;:::-;45956:16;:43::i;:::-;45951:92;;46008:35;;;;;;;;;;;;;;45951:92;45863:180;46074:1;46060:16;;:2;:16;;;46056:52;;46085:23;;;;;;;;;;;;;;46056:52;46121:43;46143:4;46149:2;46153:7;46162:1;46121:21;:43::i;:::-;46257:15;46254:160;;;46397:1;46376:19;46369:30;46254:160;46794:18;:24;46813:4;46794:24;;;;;;;;;;;;;;;;46792:26;;;;;;;;;;;;46863:18;:22;46882:2;46863:22;;;;;;;;;;;;;;;;46861:24;;;;;;;;;;;47185:146;47222:2;47271:45;47286:4;47292:2;47296:19;47271:14;:45::i;:::-;27333:8;47243:73;47185:18;:146::i;:::-;47156:17;:26;47174:7;47156:26;;;;;;;;;;;:175;;;;47502:1;27333:8;47451:19;:47;:52;47447:627;;47524:19;47556:1;47546:7;:11;47524:33;;47713:1;47679:17;:30;47697:11;47679:30;;;;;;;;;;;;:35;47675:384;;47817:13;;47802:11;:28;47798:242;;47997:19;47964:17;:30;47982:11;47964:30;;;;;;;;;;;:52;;;;47798:242;47675:384;47505:569;47447:627;48121:7;48117:2;48102:27;;48111:4;48102:27;;;;;;;;;;;;48140:42;48161:4;48167:2;48171:7;48180:1;48140:20;:42::i;:::-;45496:2694;;;45373:2817;;;:::o;68054:365::-;68143:7;68152;68237:15;68256:39;68274:8;68284:10;68256:17;:39::i;:::-;68234:61;;;68388:10;;;;;;;;;;;68400;68380:31;;;;;68054:365;;;;;:::o;70624:205::-;14267:13;:11;:13::i;:::-;11306:1:::1;11904:7;;:19:::0;11896:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;11306:1;12037:7;:18;;;;70694:12:::2;70720:10;70712:24;;70758:21;70712:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70693:101;;;70813:7;70805:16;;;::::0;::::2;;70682:147;11262:1:::1;12216:7;:22;;;;70624:205::o:0;67199:30::-;;;;:::o;48286:185::-;48424:39;48441:4;48447:2;48451:7;48424:39;;;;;;;;;;;;:16;:39::i;:::-;48286:185;;;:::o;70311:88::-;14267:13;:11;:13::i;:::-;70388:3:::1;70378:7;:13;;;;;;:::i;:::-;;70311:88:::0;:::o;67842:204::-;14267:13;:11;:13::i;:::-;67987:51:::1;68004:7;68013:10;;;;;;;;;;;68025:12;67987:16;:51::i;:::-;67842:204:::0;;;:::o;67151:40::-;;;;:::o;36576:152::-;36648:7;36691:27;36710:7;36691:18;:27::i;:::-;36668:52;;36576:152;;;:::o;67270:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32118:233::-;32190:7;32231:1;32214:19;;:5;:19;;;32210:60;;32242:28;;;;;;;;;;;;;;32210:60;26277:13;32288:18;:25;32307:5;32288:25;;;;;;;;;;;;;;;;:55;32281:62;;32118:233;;;:::o;15029:103::-;14267:13;:11;:13::i;:::-;15094:30:::1;15121:1;15094:18;:30::i;:::-;15029:103::o:0;69647:182::-;14267:13;:11;:13::i;:::-;69706:9:::1;;69694:8;;:21;;;;;;;:::i;:::-;;;;;;;;69731:47;69744:12;:10;:12::i;:::-;69758:8;;69768:9;;69731:47;;;;;;;;:::i;:::-;;;;;;;;69789:32;69799:10;69811:9;;69789;:32::i;:::-;69647:182::o:0;14381:87::-;14427:7;14454:6;;;;;;;;;;;14447:13;;14381:87;:::o;70519:97::-;14267:13;:11;:13::i;:::-;70599:9:::1;70586:10;:22;;;;70519:97:::0;:::o;70407:104::-;14267:13;:11;:13::i;:::-;70497:6:::1;70476:18;:27;;;;70407:104:::0;:::o;35359:::-;35415:13;35448:7;35441:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35359:104;:::o;67106:38::-;;;;:::o;68930:704::-;68987:12;69002:10;;68987:25;;69023:11;69084:1;69063:18;;:22;;;;:::i;:::-;69055:5;69039:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:46;69038:127;;;;;69145:19;;69136:5;69104:17;:29;69122:10;69104:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:60;;69038:127;69037:169;;;;69198:7;:5;:7::i;:::-;69184:21;;:10;:21;;;69037:169;69023:183;;69223:6;69219:47;;;69253:1;69246:8;;69219:47;69307:4;69299:5;:12;;;;:::i;:::-;69286:9;:25;;69278:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;69413:1;69401:9;;69388:10;;:22;;;;:::i;:::-;:26;;;;:::i;:::-;69380:5;69364:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:50;69356:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;69471:1;69455:13;;:17;;;;:::i;:::-;69447:5;:25;69439:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;69513:6;69509:77;;;69569:5;69536:17;:29;69554:10;69536:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;69509:77;69598:28;69608:10;69620:5;69598:9;:28::i;:::-;68976:658;;68930:704;:::o;42224:308::-;42335:19;:17;:19::i;:::-;42323:31;;:8;:31;;;42319:61;;42363:17;;;;;;;;;;;;;;42319:61;42445:8;42393:18;:39;42412:19;:17;:19::i;:::-;42393:39;;;;;;;;;;;;;;;:49;42433:8;42393:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;42505:8;42469:55;;42484:19;:17;:19::i;:::-;42469:55;;;42515:8;42469:55;;;;;;:::i;:::-;;;;;;;;42224:308;;:::o;49069:399::-;49236:31;49249:4;49255:2;49259:7;49236:12;:31::i;:::-;49300:1;49282:2;:14;;;:19;49278:183;;49321:56;49352:4;49358:2;49362:7;49371:5;49321:30;:56::i;:::-;49316:145;;49405:40;;;;;;;;;;;;;;49316:145;49278:183;49069:399;;;;:::o;69953:350::-;70071:13;70124:16;70132:7;70124;:16::i;:::-;70102:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;70257:7;70266:18;:7;:16;:18::i;:::-;70240:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;70226:69;;69953:350;;;:::o;67065:32::-;;;;:::o;42689:164::-;42786:4;42810:18;:25;42829:5;42810:25;;;;;;;;;;;;;;;:35;42836:8;42810:35;;;;;;;;;;;;;;;;;;;;;;;;;42803:42;;42689:164;;;;:::o;15287:201::-;14267:13;:11;:13::i;:::-;15396:1:::1;15376:22;;:8;:22;;::::0;15368:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15452:28;15471:8;15452:18;:28::i;:::-;15287:201:::0;:::o;5592:332::-;5711:17;:15;:17::i;:::-;5695:33;;:12;:33;;;;5687:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;5814:1;5794:22;;:8;:22;;;5786:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5881:35;;;;;;;;5893:8;5881:35;;;;;;5903:12;5881:35;;;;;5859:19;:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5592:332;;:::o;43111:282::-;43176:4;43232:7;43213:15;:13;:15::i;:::-;:26;;:66;;;;;43266:13;;43256:7;:23;43213:66;:153;;;;;43365:1;27053:8;43317:17;:26;43335:7;43317:26;;;;;;;;;;;;:44;:49;43213:153;43193:173;;43111:282;;;:::o;64877:105::-;64937:7;64964:10;64957:17;;64877:105;:::o;30450:92::-;30506:7;30450:92;:::o;37731:1275::-;37798:7;37818:12;37833:7;37818:22;;37901:4;37882:15;:13;:15::i;:::-;:23;37878:1061;;37935:13;;37928:4;:20;37924:1015;;;37973:14;37990:17;:23;38008:4;37990:23;;;;;;;;;;;;37973:40;;38107:1;27053:8;38079:6;:24;:29;38075:845;;38744:113;38761:1;38751:6;:11;38744:113;;38804:17;:25;38822:6;;;;;;;38804:25;;;;;;;;;;;;38795:34;;38744:113;;;38890:6;38883:13;;;;;;38075:845;37950:989;37924:1015;37878:1061;38967:31;;;;;;;;;;;;;;37731:1275;;;;:::o;44274:479::-;44376:27;44405:23;44446:38;44487:15;:24;44503:7;44487:24;;;;;;;;;;;44446:65;;44658:18;44635:41;;44715:19;44709:26;44690:45;;44620:126;44274:479;;;:::o;43502:659::-;43651:11;43816:16;43809:5;43805:28;43796:37;;43976:16;43965:9;43961:32;43948:45;;44126:15;44115:9;44112:30;44104:5;44093:9;44090:20;44087:56;44077:66;;43502:659;;;;;:::o;50130:159::-;;;;;:::o;64186:311::-;64321:7;64341:16;27457:3;64367:19;:41;;64341:68;;27457:3;64435:31;64446:4;64452:2;64456:9;64435:10;:31::i;:::-;64427:40;;:62;;64420:69;;;64186:311;;;;;:::o;39554:450::-;39634:14;39802:16;39795:5;39791:28;39782:37;;39979:5;39965:11;39940:23;39936:41;39933:52;39926:5;39923:63;39913:73;;39554:450;;;;:::o;50954:158::-;;;;;:::o;4500:442::-;4597:7;4606;4626:26;4655:17;:27;4673:8;4655:27;;;;;;;;;;;4626:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4727:1;4699:30;;:7;:16;;;:30;;;4695:92;;4756:19;4746:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4695:92;4799:21;4864:17;:15;:17::i;:::-;4823:58;;4837:7;:23;;;4824:36;;:10;:36;;;;:::i;:::-;4823:58;;;;:::i;:::-;4799:82;;4902:7;:16;;;4920:13;4894:40;;;;;;4500:442;;;;;:::o;14546:132::-;14621:12;:10;:12::i;:::-;14610:23;;:7;:5;:7::i;:::-;:23;;;14602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14546:132::o;6375:390::-;6543:17;:15;:17::i;:::-;6527:33;;:12;:33;;;;6519:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;6646:1;6626:22;;:8;:22;;;6618:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;6722:35;;;;;;;;6734:8;6722:35;;;;;;6744:12;6722:35;;;;;6693:17;:26;6711:7;6693:26;;;;;;;;;;;:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6375:390;;;:::o;15648:191::-;15722:16;15741:6;;;;;;;;;;;15722:25;;15767:8;15758:6;;:17;;;;;;;;;;;;;;;;;;15822:8;15791:40;;15812:8;15791:40;;;;;;;;;;;;15711:128;15648:191;:::o;12932:98::-;12985:7;13012:10;13005:17;;12932:98;:::o;58709:112::-;58786:27;58796:2;58800:8;58786:27;;;;;;;;;;;;:9;:27::i;:::-;58709:112;;:::o;51552:716::-;51715:4;51761:2;51736:45;;;51782:19;:17;:19::i;:::-;51803:4;51809:7;51818:5;51736:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;51732:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52036:1;52019:6;:13;:18;52015:235;;52065:40;;;;;;;;;;;;;;52015:235;52208:6;52202:13;52193:6;52189:2;52185:15;52178:38;51732:529;51905:54;;;51895:64;;;:6;:64;;;;51888:71;;;51552:716;;;;;;:::o;7427:723::-;7483:13;7713:1;7704:5;:10;7700:53;;7731:10;;;;;;;;;;;;;;;;;;;;;7700:53;7763:12;7778:5;7763:20;;7794:14;7819:78;7834:1;7826:4;:9;7819:78;;7852:8;;;;;:::i;:::-;;;;7883:2;7875:10;;;;;:::i;:::-;;;7819:78;;;7907:19;7939:6;7929:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7907:39;;7957:154;7973:1;7964:5;:10;7957:154;;8001:1;7991:11;;;;;:::i;:::-;;;8068:2;8060:5;:10;;;;:::i;:::-;8047:2;:24;;;;:::i;:::-;8034:39;;8017:6;8024;8017:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;8097:2;8088:11;;;;;:::i;:::-;;;7957:154;;;8135:6;8121:21;;;;;7427:723;;;;:::o;5224:97::-;5282:6;5308:5;5301:12;;5224:97;:::o;63887:147::-;64024:6;63887:147;;;;;:::o;57936:689::-;58067:19;58073:2;58077:8;58067:5;:19::i;:::-;58146:1;58128:2;:14;;;:19;58124:483;;58168:11;58182:13;;58168:27;;58214:13;58236:8;58230:3;:14;58214:30;;58263:233;58294:62;58333:1;58337:2;58341:7;;;;;;58350:5;58294:30;:62::i;:::-;58289:167;;58392:40;;;;;;;;;;;;;;58289:167;58491:3;58483:5;:11;58263:233;;58578:3;58561:13;;:20;58557:34;;58583:8;;;58557:34;58149:458;;58124:483;57936:689;;;:::o;52730:2454::-;52803:20;52826:13;;52803:36;;52866:1;52854:8;:13;52850:44;;52876:18;;;;;;;;;;;;;;52850:44;52907:61;52937:1;52941:2;52945:12;52959:8;52907:21;:61::i;:::-;53451:1;26415:2;53421:1;:26;;53420:32;53408:8;:45;53382:18;:22;53401:2;53382:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;53730:139;53767:2;53821:33;53844:1;53848:2;53852:1;53821:14;:33::i;:::-;53788:30;53809:8;53788:20;:30::i;:::-;:66;53730:18;:139::i;:::-;53696:17;:31;53714:12;53696:31;;;;;;;;;;;:173;;;;53886:16;53917:11;53946:8;53931:12;:23;53917:37;;54201:16;54197:2;54193:25;54181:37;;54573:12;54533:8;54492:1;54430:25;54371:1;54310;54283:335;54698:1;54684:12;54680:20;54638:346;54739:3;54730:7;54727:16;54638:346;;54957:7;54947:8;54944:1;54917:25;54914:1;54911;54906:59;54792:1;54783:7;54779:15;54768:26;;54638:346;;;54642:77;55029:1;55017:8;:13;55013:45;;55039:19;;;;;;;;;;;;;;55013:45;55091:3;55075:13;:19;;;;53156:1950;;55116:60;55145:1;55149:2;55153:12;55167:8;55116:20;:60::i;:::-;52792:2392;52730:2454;;:::o;40106:324::-;40176:14;40409:1;40399:8;40396:15;40370:24;40366:46;40356:56;;40106:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:126::-;1990:7;2030:42;2023:5;2019:54;2008:65;;1953:126;;;:::o;2085:96::-;2122:7;2151:24;2169:5;2151:24;:::i;:::-;2140:35;;2085:96;;;:::o;2187:122::-;2260:24;2278:5;2260:24;:::i;:::-;2253:5;2250:35;2240:63;;2299:1;2296;2289:12;2240:63;2187:122;:::o;2315:139::-;2361:5;2399:6;2386:20;2377:29;;2415:33;2442:5;2415:33;:::i;:::-;2315:139;;;;:::o;2460:109::-;2496:7;2536:26;2529:5;2525:38;2514:49;;2460:109;;;:::o;2575:120::-;2647:23;2664:5;2647:23;:::i;:::-;2640:5;2637:34;2627:62;;2685:1;2682;2675:12;2627:62;2575:120;:::o;2701:137::-;2746:5;2784:6;2771:20;2762:29;;2800:32;2826:5;2800:32;:::i;:::-;2701:137;;;;:::o;2844:472::-;2911:6;2919;2968:2;2956:9;2947:7;2943:23;2939:32;2936:119;;;2974:79;;:::i;:::-;2936:119;3094:1;3119:53;3164:7;3155:6;3144:9;3140:22;3119:53;:::i;:::-;3109:63;;3065:117;3221:2;3247:52;3291:7;3282:6;3271:9;3267:22;3247:52;:::i;:::-;3237:62;;3192:117;2844:472;;;;;:::o;3322:99::-;3374:6;3408:5;3402:12;3392:22;;3322:99;;;:::o;3427:169::-;3511:11;3545:6;3540:3;3533:19;3585:4;3580:3;3576:14;3561:29;;3427:169;;;;:::o;3602:246::-;3683:1;3693:113;3707:6;3704:1;3701:13;3693:113;;;3792:1;3787:3;3783:11;3777:18;3773:1;3768:3;3764:11;3757:39;3729:2;3726:1;3722:10;3717:15;;3693:113;;;3840:1;3831:6;3826:3;3822:16;3815:27;3664:184;3602:246;;;:::o;3854:102::-;3895:6;3946:2;3942:7;3937:2;3930:5;3926:14;3922:28;3912:38;;3854:102;;;:::o;3962:377::-;4050:3;4078:39;4111:5;4078:39;:::i;:::-;4133:71;4197:6;4192:3;4133:71;:::i;:::-;4126:78;;4213:65;4271:6;4266:3;4259:4;4252:5;4248:16;4213:65;:::i;:::-;4303:29;4325:6;4303:29;:::i;:::-;4298:3;4294:39;4287:46;;4054:285;3962:377;;;;:::o;4345:313::-;4458:4;4496:2;4485:9;4481:18;4473:26;;4545:9;4539:4;4535:20;4531:1;4520:9;4516:17;4509:47;4573:78;4646:4;4637:6;4573:78;:::i;:::-;4565:86;;4345:313;;;;:::o;4664:122::-;4737:24;4755:5;4737:24;:::i;:::-;4730:5;4727:35;4717:63;;4776:1;4773;4766:12;4717:63;4664:122;:::o;4792:139::-;4838:5;4876:6;4863:20;4854:29;;4892:33;4919:5;4892:33;:::i;:::-;4792:139;;;;:::o;4937:329::-;4996:6;5045:2;5033:9;5024:7;5020:23;5016:32;5013:119;;;5051:79;;:::i;:::-;5013:119;5171:1;5196:53;5241:7;5232:6;5221:9;5217:22;5196:53;:::i;:::-;5186:63;;5142:117;4937:329;;;;:::o;5272:118::-;5359:24;5377:5;5359:24;:::i;:::-;5354:3;5347:37;5272:118;;:::o;5396:222::-;5489:4;5527:2;5516:9;5512:18;5504:26;;5540:71;5608:1;5597:9;5593:17;5584:6;5540:71;:::i;:::-;5396:222;;;;:::o;5624:474::-;5692:6;5700;5749:2;5737:9;5728:7;5724:23;5720:32;5717:119;;;5755:79;;:::i;:::-;5717:119;5875:1;5900:53;5945:7;5936:6;5925:9;5921:22;5900:53;:::i;:::-;5890:63;;5846:117;6002:2;6028:53;6073:7;6064:6;6053:9;6049:22;6028:53;:::i;:::-;6018:63;;5973:118;5624:474;;;;;:::o;6104:619::-;6181:6;6189;6197;6246:2;6234:9;6225:7;6221:23;6217:32;6214:119;;;6252:79;;:::i;:::-;6214:119;6372:1;6397:53;6442:7;6433:6;6422:9;6418:22;6397:53;:::i;:::-;6387:63;;6343:117;6499:2;6525:53;6570:7;6561:6;6550:9;6546:22;6525:53;:::i;:::-;6515:63;;6470:118;6627:2;6653:53;6698:7;6689:6;6678:9;6674:22;6653:53;:::i;:::-;6643:63;;6598:118;6104:619;;;;;:::o;6729:474::-;6797:6;6805;6854:2;6842:9;6833:7;6829:23;6825:32;6822:119;;;6860:79;;:::i;:::-;6822:119;6980:1;7005:53;7050:7;7041:6;7030:9;7026:22;7005:53;:::i;:::-;6995:63;;6951:117;7107:2;7133:53;7178:7;7169:6;7158:9;7154:22;7133:53;:::i;:::-;7123:63;;7078:118;6729:474;;;;;:::o;7209:332::-;7330:4;7368:2;7357:9;7353:18;7345:26;;7381:71;7449:1;7438:9;7434:17;7425:6;7381:71;:::i;:::-;7462:72;7530:2;7519:9;7515:18;7506:6;7462:72;:::i;:::-;7209:332;;;;;:::o;7547:117::-;7656:1;7653;7646:12;7670:117;7779:1;7776;7769:12;7793:180;7841:77;7838:1;7831:88;7938:4;7935:1;7928:15;7962:4;7959:1;7952:15;7979:281;8062:27;8084:4;8062:27;:::i;:::-;8054:6;8050:40;8192:6;8180:10;8177:22;8156:18;8144:10;8141:34;8138:62;8135:88;;;8203:18;;:::i;:::-;8135:88;8243:10;8239:2;8232:22;8022:238;7979:281;;:::o;8266:129::-;8300:6;8327:20;;:::i;:::-;8317:30;;8356:33;8384:4;8376:6;8356:33;:::i;:::-;8266:129;;;:::o;8401:308::-;8463:4;8553:18;8545:6;8542:30;8539:56;;;8575:18;;:::i;:::-;8539:56;8613:29;8635:6;8613:29;:::i;:::-;8605:37;;8697:4;8691;8687:15;8679:23;;8401:308;;;:::o;8715:146::-;8812:6;8807:3;8802;8789:30;8853:1;8844:6;8839:3;8835:16;8828:27;8715:146;;;:::o;8867:425::-;8945:5;8970:66;8986:49;9028:6;8986:49;:::i;:::-;8970:66;:::i;:::-;8961:75;;9059:6;9052:5;9045:21;9097:4;9090:5;9086:16;9135:3;9126:6;9121:3;9117:16;9114:25;9111:112;;;9142:79;;:::i;:::-;9111:112;9232:54;9279:6;9274:3;9269;9232:54;:::i;:::-;8951:341;8867:425;;;;;:::o;9312:340::-;9368:5;9417:3;9410:4;9402:6;9398:17;9394:27;9384:122;;9425:79;;:::i;:::-;9384:122;9542:6;9529:20;9567:79;9642:3;9634:6;9627:4;9619:6;9615:17;9567:79;:::i;:::-;9558:88;;9374:278;9312:340;;;;:::o;9658:509::-;9727:6;9776:2;9764:9;9755:7;9751:23;9747:32;9744:119;;;9782:79;;:::i;:::-;9744:119;9930:1;9919:9;9915:17;9902:31;9960:18;9952:6;9949:30;9946:117;;;9982:79;;:::i;:::-;9946:117;10087:63;10142:7;10133:6;10122:9;10118:22;10087:63;:::i;:::-;10077:73;;9873:287;9658:509;;;;:::o;10173:617::-;10249:6;10257;10265;10314:2;10302:9;10293:7;10289:23;10285:32;10282:119;;;10320:79;;:::i;:::-;10282:119;10440:1;10465:53;10510:7;10501:6;10490:9;10486:22;10465:53;:::i;:::-;10455:63;;10411:117;10567:2;10593:53;10638:7;10629:6;10618:9;10614:22;10593:53;:::i;:::-;10583:63;;10538:118;10695:2;10721:52;10765:7;10756:6;10745:9;10741:22;10721:52;:::i;:::-;10711:62;;10666:117;10173:617;;;;;:::o;10796:329::-;10855:6;10904:2;10892:9;10883:7;10879:23;10875:32;10872:119;;;10910:79;;:::i;:::-;10872:119;11030:1;11055:53;11100:7;11091:6;11080:9;11076:22;11055:53;:::i;:::-;11045:63;;11001:117;10796:329;;;;:::o;11131:116::-;11201:21;11216:5;11201:21;:::i;:::-;11194:5;11191:32;11181:60;;11237:1;11234;11227:12;11181:60;11131:116;:::o;11253:133::-;11296:5;11334:6;11321:20;11312:29;;11350:30;11374:5;11350:30;:::i;:::-;11253:133;;;;:::o;11392:468::-;11457:6;11465;11514:2;11502:9;11493:7;11489:23;11485:32;11482:119;;;11520:79;;:::i;:::-;11482:119;11640:1;11665:53;11710:7;11701:6;11690:9;11686:22;11665:53;:::i;:::-;11655:63;;11611:117;11767:2;11793:50;11835:7;11826:6;11815:9;11811:22;11793:50;:::i;:::-;11783:60;;11738:115;11392:468;;;;;:::o;11866:307::-;11927:4;12017:18;12009:6;12006:30;12003:56;;;12039:18;;:::i;:::-;12003:56;12077:29;12099:6;12077:29;:::i;:::-;12069:37;;12161:4;12155;12151:15;12143:23;;11866:307;;;:::o;12179:423::-;12256:5;12281:65;12297:48;12338:6;12297:48;:::i;:::-;12281:65;:::i;:::-;12272:74;;12369:6;12362:5;12355:21;12407:4;12400:5;12396:16;12445:3;12436:6;12431:3;12427:16;12424:25;12421:112;;;12452:79;;:::i;:::-;12421:112;12542:54;12589:6;12584:3;12579;12542:54;:::i;:::-;12262:340;12179:423;;;;;:::o;12621:338::-;12676:5;12725:3;12718:4;12710:6;12706:17;12702:27;12692:122;;12733:79;;:::i;:::-;12692:122;12850:6;12837:20;12875:78;12949:3;12941:6;12934:4;12926:6;12922:17;12875:78;:::i;:::-;12866:87;;12682:277;12621:338;;;;:::o;12965:943::-;13060:6;13068;13076;13084;13133:3;13121:9;13112:7;13108:23;13104:33;13101:120;;;13140:79;;:::i;:::-;13101:120;13260:1;13285:53;13330:7;13321:6;13310:9;13306:22;13285:53;:::i;:::-;13275:63;;13231:117;13387:2;13413:53;13458:7;13449:6;13438:9;13434:22;13413:53;:::i;:::-;13403:63;;13358:118;13515:2;13541:53;13586:7;13577:6;13566:9;13562:22;13541:53;:::i;:::-;13531:63;;13486:118;13671:2;13660:9;13656:18;13643:32;13702:18;13694:6;13691:30;13688:117;;;13724:79;;:::i;:::-;13688:117;13829:62;13883:7;13874:6;13863:9;13859:22;13829:62;:::i;:::-;13819:72;;13614:287;12965:943;;;;;;;:::o;13914:474::-;13982:6;13990;14039:2;14027:9;14018:7;14014:23;14010:32;14007:119;;;14045:79;;:::i;:::-;14007:119;14165:1;14190:53;14235:7;14226:6;14215:9;14211:22;14190:53;:::i;:::-;14180:63;;14136:117;14292:2;14318:53;14363:7;14354:6;14343:9;14339:22;14318:53;:::i;:::-;14308:63;;14263:118;13914:474;;;;;:::o;14394:180::-;14442:77;14439:1;14432:88;14539:4;14536:1;14529:15;14563:4;14560:1;14553:15;14580:320;14624:6;14661:1;14655:4;14651:12;14641:22;;14708:1;14702:4;14698:12;14729:18;14719:81;;14785:4;14777:6;14773:17;14763:27;;14719:81;14847:2;14839:6;14836:14;14816:18;14813:38;14810:84;;14866:18;;:::i;:::-;14810:84;14631:269;14580:320;;;:::o;14906:181::-;15046:33;15042:1;15034:6;15030:14;15023:57;14906:181;:::o;15093:366::-;15235:3;15256:67;15320:2;15315:3;15256:67;:::i;:::-;15249:74;;15332:93;15421:3;15332:93;:::i;:::-;15450:2;15445:3;15441:12;15434:19;;15093:366;;;:::o;15465:419::-;15631:4;15669:2;15658:9;15654:18;15646:26;;15718:9;15712:4;15708:20;15704:1;15693:9;15689:17;15682:47;15746:131;15872:4;15746:131;:::i;:::-;15738:139;;15465:419;;;:::o;15890:147::-;15991:11;16028:3;16013:18;;15890:147;;;;:::o;16043:114::-;;:::o;16163:398::-;16322:3;16343:83;16424:1;16419:3;16343:83;:::i;:::-;16336:90;;16435:93;16524:3;16435:93;:::i;:::-;16553:1;16548:3;16544:11;16537:18;;16163:398;;;:::o;16567:379::-;16751:3;16773:147;16916:3;16773:147;:::i;:::-;16766:154;;16937:3;16930:10;;16567:379;;;:::o;16952:141::-;17001:4;17024:3;17016:11;;17047:3;17044:1;17037:14;17081:4;17078:1;17068:18;17060:26;;16952:141;;;:::o;17099:93::-;17136:6;17183:2;17178;17171:5;17167:14;17163:23;17153:33;;17099:93;;;:::o;17198:107::-;17242:8;17292:5;17286:4;17282:16;17261:37;;17198:107;;;;:::o;17311:393::-;17380:6;17430:1;17418:10;17414:18;17453:97;17483:66;17472:9;17453:97;:::i;:::-;17571:39;17601:8;17590:9;17571:39;:::i;:::-;17559:51;;17643:4;17639:9;17632:5;17628:21;17619:30;;17692:4;17682:8;17678:19;17671:5;17668:30;17658:40;;17387:317;;17311:393;;;;;:::o;17710:60::-;17738:3;17759:5;17752:12;;17710:60;;;:::o;17776:142::-;17826:9;17859:53;17877:34;17886:24;17904:5;17886:24;:::i;:::-;17877:34;:::i;:::-;17859:53;:::i;:::-;17846:66;;17776:142;;;:::o;17924:75::-;17967:3;17988:5;17981:12;;17924:75;;;:::o;18005:269::-;18115:39;18146:7;18115:39;:::i;:::-;18176:91;18225:41;18249:16;18225:41;:::i;:::-;18217:6;18210:4;18204:11;18176:91;:::i;:::-;18170:4;18163:105;18081:193;18005:269;;;:::o;18280:73::-;18325:3;18280:73;:::o;18359:189::-;18436:32;;:::i;:::-;18477:65;18535:6;18527;18521:4;18477:65;:::i;:::-;18412:136;18359:189;;:::o;18554:186::-;18614:120;18631:3;18624:5;18621:14;18614:120;;;18685:39;18722:1;18715:5;18685:39;:::i;:::-;18658:1;18651:5;18647:13;18638:22;;18614:120;;;18554:186;;:::o;18746:543::-;18847:2;18842:3;18839:11;18836:446;;;18881:38;18913:5;18881:38;:::i;:::-;18965:29;18983:10;18965:29;:::i;:::-;18955:8;18951:44;19148:2;19136:10;19133:18;19130:49;;;19169:8;19154:23;;19130:49;19192:80;19248:22;19266:3;19248:22;:::i;:::-;19238:8;19234:37;19221:11;19192:80;:::i;:::-;18851:431;;18836:446;18746:543;;;:::o;19295:117::-;19349:8;19399:5;19393:4;19389:16;19368:37;;19295:117;;;;:::o;19418:169::-;19462:6;19495:51;19543:1;19539:6;19531:5;19528:1;19524:13;19495:51;:::i;:::-;19491:56;19576:4;19570;19566:15;19556:25;;19469:118;19418:169;;;;:::o;19592:295::-;19668:4;19814:29;19839:3;19833:4;19814:29;:::i;:::-;19806:37;;19876:3;19873:1;19869:11;19863:4;19860:21;19852:29;;19592:295;;;;:::o;19892:1395::-;20009:37;20042:3;20009:37;:::i;:::-;20111:18;20103:6;20100:30;20097:56;;;20133:18;;:::i;:::-;20097:56;20177:38;20209:4;20203:11;20177:38;:::i;:::-;20262:67;20322:6;20314;20308:4;20262:67;:::i;:::-;20356:1;20380:4;20367:17;;20412:2;20404:6;20401:14;20429:1;20424:618;;;;21086:1;21103:6;21100:77;;;21152:9;21147:3;21143:19;21137:26;21128:35;;21100:77;21203:67;21263:6;21256:5;21203:67;:::i;:::-;21197:4;21190:81;21059:222;20394:887;;20424:618;20476:4;20472:9;20464:6;20460:22;20510:37;20542:4;20510:37;:::i;:::-;20569:1;20583:208;20597:7;20594:1;20591:14;20583:208;;;20676:9;20671:3;20667:19;20661:26;20653:6;20646:42;20727:1;20719:6;20715:14;20705:24;;20774:2;20763:9;20759:18;20746:31;;20620:4;20617:1;20613:12;20608:17;;20583:208;;;20819:6;20810:7;20807:19;20804:179;;;20877:9;20872:3;20868:19;20862:26;20920:48;20962:4;20954:6;20950:17;20939:9;20920:48;:::i;:::-;20912:6;20905:64;20827:156;20804:179;21029:1;21025;21017:6;21013:14;21009:22;21003:4;20996:36;20431:611;;;20394:887;;19984:1303;;;19892:1395;;:::o;21293:180::-;21341:77;21338:1;21331:88;21438:4;21435:1;21428:15;21462:4;21459:1;21452:15;21479:191;21519:3;21538:20;21556:1;21538:20;:::i;:::-;21533:25;;21572:20;21590:1;21572:20;:::i;:::-;21567:25;;21615:1;21612;21608:9;21601:16;;21636:3;21633:1;21630:10;21627:36;;;21643:18;;:::i;:::-;21627:36;21479:191;;;;:::o;21676:442::-;21825:4;21863:2;21852:9;21848:18;21840:26;;21876:71;21944:1;21933:9;21929:17;21920:6;21876:71;:::i;:::-;21957:72;22025:2;22014:9;22010:18;22001:6;21957:72;:::i;:::-;22039;22107:2;22096:9;22092:18;22083:6;22039:72;:::i;:::-;21676:442;;;;;;:::o;22124:348::-;22164:7;22187:20;22205:1;22187:20;:::i;:::-;22182:25;;22221:20;22239:1;22221:20;:::i;:::-;22216:25;;22409:1;22341:66;22337:74;22334:1;22331:81;22326:1;22319:9;22312:17;22308:105;22305:131;;;22416:18;;:::i;:::-;22305:131;22464:1;22461;22457:9;22446:20;;22124:348;;;;:::o;22478:179::-;22618:31;22614:1;22606:6;22602:14;22595:55;22478:179;:::o;22663:366::-;22805:3;22826:67;22890:2;22885:3;22826:67;:::i;:::-;22819:74;;22902:93;22991:3;22902:93;:::i;:::-;23020:2;23015:3;23011:12;23004:19;;22663:366;;;:::o;23035:419::-;23201:4;23239:2;23228:9;23224:18;23216:26;;23288:9;23282:4;23278:20;23274:1;23263:9;23259:17;23252:47;23316:131;23442:4;23316:131;:::i;:::-;23308:139;;23035:419;;;:::o;23460:194::-;23500:4;23520:20;23538:1;23520:20;:::i;:::-;23515:25;;23554:20;23572:1;23554:20;:::i;:::-;23549:25;;23598:1;23595;23591:9;23583:17;;23622:1;23616:4;23613:11;23610:37;;;23627:18;;:::i;:::-;23610:37;23460:194;;;;:::o;23660:159::-;23800:11;23796:1;23788:6;23784:14;23777:35;23660:159;:::o;23825:365::-;23967:3;23988:66;24052:1;24047:3;23988:66;:::i;:::-;23981:73;;24063:93;24152:3;24063:93;:::i;:::-;24181:2;24176:3;24172:12;24165:19;;23825:365;;;:::o;24196:419::-;24362:4;24400:2;24389:9;24385:18;24377:26;;24449:9;24443:4;24439:20;24435:1;24424:9;24420:17;24413:47;24477:131;24603:4;24477:131;:::i;:::-;24469:139;;24196:419;;;:::o;24621:169::-;24761:21;24757:1;24749:6;24745:14;24738:45;24621:169;:::o;24796:366::-;24938:3;24959:67;25023:2;25018:3;24959:67;:::i;:::-;24952:74;;25035:93;25124:3;25035:93;:::i;:::-;25153:2;25148:3;25144:12;25137:19;;24796:366;;;:::o;25168:419::-;25334:4;25372:2;25361:9;25357:18;25349:26;;25421:9;25415:4;25411:20;25407:1;25396:9;25392:17;25385:47;25449:131;25575:4;25449:131;:::i;:::-;25441:139;;25168:419;;;:::o;25593:234::-;25733:34;25729:1;25721:6;25717:14;25710:58;25802:17;25797:2;25789:6;25785:15;25778:42;25593:234;:::o;25833:366::-;25975:3;25996:67;26060:2;26055:3;25996:67;:::i;:::-;25989:74;;26072:93;26161:3;26072:93;:::i;:::-;26190:2;26185:3;26181:12;26174:19;;25833:366;;;:::o;26205:419::-;26371:4;26409:2;26398:9;26394:18;26386:26;;26458:9;26452:4;26448:20;26444:1;26433:9;26429:17;26422:47;26486:131;26612:4;26486:131;:::i;:::-;26478:139;;26205:419;;;:::o;26630:148::-;26732:11;26769:3;26754:18;;26630:148;;;;:::o;26808:874::-;26911:3;26948:5;26942:12;26977:36;27003:9;26977:36;:::i;:::-;27029:89;27111:6;27106:3;27029:89;:::i;:::-;27022:96;;27149:1;27138:9;27134:17;27165:1;27160:166;;;;27340:1;27335:341;;;;27127:549;;27160:166;27244:4;27240:9;27229;27225:25;27220:3;27213:38;27306:6;27299:14;27292:22;27284:6;27280:35;27275:3;27271:45;27264:52;;27160:166;;27335:341;27402:38;27434:5;27402:38;:::i;:::-;27462:1;27476:154;27490:6;27487:1;27484:13;27476:154;;;27564:7;27558:14;27554:1;27549:3;27545:11;27538:35;27614:1;27605:7;27601:15;27590:26;;27512:4;27509:1;27505:12;27500:17;;27476:154;;;27659:6;27654:3;27650:16;27643:23;;27342:334;;27127:549;;26915:767;;26808:874;;;;:::o;27688:390::-;27794:3;27822:39;27855:5;27822:39;:::i;:::-;27877:89;27959:6;27954:3;27877:89;:::i;:::-;27870:96;;27975:65;28033:6;28028:3;28021:4;28014:5;28010:16;27975:65;:::i;:::-;28065:6;28060:3;28056:16;28049:23;;27798:280;27688:390;;;;:::o;28084:155::-;28224:7;28220:1;28212:6;28208:14;28201:31;28084:155;:::o;28245:400::-;28405:3;28426:84;28508:1;28503:3;28426:84;:::i;:::-;28419:91;;28519:93;28608:3;28519:93;:::i;:::-;28637:1;28632:3;28628:11;28621:18;;28245:400;;;:::o;28651:695::-;28929:3;28951:92;29039:3;29030:6;28951:92;:::i;:::-;28944:99;;29060:95;29151:3;29142:6;29060:95;:::i;:::-;29053:102;;29172:148;29316:3;29172:148;:::i;:::-;29165:155;;29337:3;29330:10;;28651:695;;;;;:::o;29352:225::-;29492:34;29488:1;29480:6;29476:14;29469:58;29561:8;29556:2;29548:6;29544:15;29537:33;29352:225;:::o;29583:366::-;29725:3;29746:67;29810:2;29805:3;29746:67;:::i;:::-;29739:74;;29822:93;29911:3;29822:93;:::i;:::-;29940:2;29935:3;29931:12;29924:19;;29583:366;;;:::o;29955:419::-;30121:4;30159:2;30148:9;30144:18;30136:26;;30208:9;30202:4;30198:20;30194:1;30183:9;30179:17;30172:47;30236:131;30362:4;30236:131;:::i;:::-;30228:139;;29955:419;;;:::o;30380:229::-;30520:34;30516:1;30508:6;30504:14;30497:58;30589:12;30584:2;30576:6;30572:15;30565:37;30380:229;:::o;30615:366::-;30757:3;30778:67;30842:2;30837:3;30778:67;:::i;:::-;30771:74;;30854:93;30943:3;30854:93;:::i;:::-;30972:2;30967:3;30963:12;30956:19;;30615:366;;;:::o;30987:419::-;31153:4;31191:2;31180:9;31176:18;31168:26;;31240:9;31234:4;31230:20;31226:1;31215:9;31211:17;31204:47;31268:131;31394:4;31268:131;:::i;:::-;31260:139;;30987:419;;;:::o;31412:175::-;31552:27;31548:1;31540:6;31536:14;31529:51;31412:175;:::o;31593:366::-;31735:3;31756:67;31820:2;31815:3;31756:67;:::i;:::-;31749:74;;31832:93;31921:3;31832:93;:::i;:::-;31950:2;31945:3;31941:12;31934:19;;31593:366;;;:::o;31965:419::-;32131:4;32169:2;32158:9;32154:18;32146:26;;32218:9;32212:4;32208:20;32204:1;32193:9;32189:17;32182:47;32246:131;32372:4;32246:131;:::i;:::-;32238:139;;31965:419;;;:::o;32390:180::-;32438:77;32435:1;32428:88;32535:4;32532:1;32525:15;32559:4;32556:1;32549:15;32576:185;32616:1;32633:20;32651:1;32633:20;:::i;:::-;32628:25;;32667:20;32685:1;32667:20;:::i;:::-;32662:25;;32706:1;32696:35;;32711:18;;:::i;:::-;32696:35;32753:1;32750;32746:9;32741:14;;32576:185;;;;:::o;32767:182::-;32907:34;32903:1;32895:6;32891:14;32884:58;32767:182;:::o;32955:366::-;33097:3;33118:67;33182:2;33177:3;33118:67;:::i;:::-;33111:74;;33194:93;33283:3;33194:93;:::i;:::-;33312:2;33307:3;33303:12;33296:19;;32955:366;;;:::o;33327:419::-;33493:4;33531:2;33520:9;33516:18;33508:26;;33580:9;33574:4;33570:20;33566:1;33555:9;33551:17;33544:47;33608:131;33734:4;33608:131;:::i;:::-;33600:139;;33327:419;;;:::o;33752:177::-;33892:29;33888:1;33880:6;33876:14;33869:53;33752:177;:::o;33935:366::-;34077:3;34098:67;34162:2;34157:3;34098:67;:::i;:::-;34091:74;;34174:93;34263:3;34174:93;:::i;:::-;34292:2;34287:3;34283:12;34276:19;;33935:366;;;:::o;34307:419::-;34473:4;34511:2;34500:9;34496:18;34488:26;;34560:9;34554:4;34550:20;34546:1;34535:9;34531:17;34524:47;34588:131;34714:4;34588:131;:::i;:::-;34580:139;;34307:419;;;:::o;34732:98::-;34783:6;34817:5;34811:12;34801:22;;34732:98;;;:::o;34836:168::-;34919:11;34953:6;34948:3;34941:19;34993:4;34988:3;34984:14;34969:29;;34836:168;;;;:::o;35010:373::-;35096:3;35124:38;35156:5;35124:38;:::i;:::-;35178:70;35241:6;35236:3;35178:70;:::i;:::-;35171:77;;35257:65;35315:6;35310:3;35303:4;35296:5;35292:16;35257:65;:::i;:::-;35347:29;35369:6;35347:29;:::i;:::-;35342:3;35338:39;35331:46;;35100:283;35010:373;;;;:::o;35389:640::-;35584:4;35622:3;35611:9;35607:19;35599:27;;35636:71;35704:1;35693:9;35689:17;35680:6;35636:71;:::i;:::-;35717:72;35785:2;35774:9;35770:18;35761:6;35717:72;:::i;:::-;35799;35867:2;35856:9;35852:18;35843:6;35799:72;:::i;:::-;35918:9;35912:4;35908:20;35903:2;35892:9;35888:18;35881:48;35946:76;36017:4;36008:6;35946:76;:::i;:::-;35938:84;;35389:640;;;;;;;:::o;36035:141::-;36091:5;36122:6;36116:13;36107:22;;36138:32;36164:5;36138:32;:::i;:::-;36035:141;;;;:::o;36182:349::-;36251:6;36300:2;36288:9;36279:7;36275:23;36271:32;36268:119;;;36306:79;;:::i;:::-;36268:119;36426:1;36451:63;36506:7;36497:6;36486:9;36482:22;36451:63;:::i;:::-;36441:73;;36397:127;36182:349;;;;:::o;36537:233::-;36576:3;36599:24;36617:5;36599:24;:::i;:::-;36590:33;;36645:66;36638:5;36635:77;36632:103;;36715:18;;:::i;:::-;36632:103;36762:1;36755:5;36751:13;36744:20;;36537:233;;;:::o;36776:176::-;36808:1;36825:20;36843:1;36825:20;:::i;:::-;36820:25;;36859:20;36877:1;36859:20;:::i;:::-;36854:25;;36898:1;36888:35;;36903:18;;:::i;:::-;36888:35;36944:1;36941;36937:9;36932:14;;36776:176;;;;:::o;36958:180::-;37006:77;37003:1;36996:88;37103:4;37100:1;37093:15;37127:4;37124:1;37117:15

Swarm Source

ipfs://9f4370cd1565945b2126417295ade6efec0f2f03f680f24b3198f76088a66f68
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.