ETH Price: $2,314.14 (+0.30%)

Token

The Philbert Experiment (PBXP)
 

Overview

Max Total Supply

2,222 PBXP

Holders

194

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
10 PBXP
0x8ef5b9f05f1c64dce929706b9f67a2ad179316b0
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:
PhilbertExperiment

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

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


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

pragma solidity ^0.8.0;


/**
 * @dev Collection of functions related to array types.
 */
library Arrays {
    /**
     * @dev Searches a sorted `array` and returns the first index that contains
     * a value greater or equal to `element`. If no such index exists (i.e. all
     * values in the array are strictly less than `element`), the array length is
     * returned. Time complexity O(log n).
     *
     * `array` is expected to be sorted in ascending order, and to contain no
     * repeated elements.
     */
    function findUpperBound(uint256[] storage array, uint256 element) internal view returns (uint256) {
        if (array.length == 0) {
            return 0;
        }

        uint256 low = 0;
        uint256 high = array.length;

        while (low < high) {
            uint256 mid = Math.average(low, high);

            // Note that mid will always be strictly less than high (i.e. it will be a valid array index)
            // because Math.average rounds down (it does integer division with truncation).
            if (array[mid] > element) {
                high = mid;
            } else {
                low = mid + 1;
            }
        }

        // At this point `low` is the exclusive upper bound. We will return the inclusive upper bound.
        if (low > 0 && array[low - 1] == element) {
            return low - 1;
        } else {
            return low;
        }
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/extensions/IERC721AQueryable.sol


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

pragma solidity ^0.8.4;


/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

// File: erc721a/contracts/extensions/ERC721AQueryable.sol


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

pragma solidity ^0.8.4;



/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *   - `extraData` = `0`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *   - `extraData` = `<Extra data when token was burned>`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     *   - `extraData` = `<Extra data at start of ownership>`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

// File: contracts/PhilbertExperiment.sol



//////////////////////////////////////////////////////////////////////////////////////
/*/////////////////////////////////////
THE PHILBERT EXPERIMENT////////////////
*//////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////


pragma solidity >=0.8.13 <0.9.0;









contract PhilbertExperiment is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

// ================== Variables Start =======================
    
  string public uri;
  string public uriSuffix = ".json";
  uint256 public price = 0.005 ether;
  uint256 public maxSupply = 2222;
  uint256 public reservesAmount = 100;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public maxLimitPerWallet = 10;
  bool public sale = true;

// ================== Variables End =======================  

// ================== Constructor Start =======================

  constructor(
    string memory _uri
  ) ERC721A("The Philbert Experiment", "PBXP")  {
    seturi(_uri);
  }

// ================== Constructor End =======================

// ================== Mint Functions Start =======================

  function UpdateCost(uint256 _supply) internal view returns  (uint256 _cost) {
      if (_supply < maxSupply){
          return price;
        }
  }
  
  function CollectReserves() public onlyOwner nonReentrant {
      require(totalSupply() + reservesAmount <= maxSupply, 'Max Supply Exceeded.');
      _safeMint(msg.sender, reservesAmount);
  }

  function Mint(uint256 _mintAmount) public payable {
    //Dynamic Price
    uint256 supply = totalSupply();
    // Normal requirements 
    require(sale, 'The Sale is paused!');
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(supply + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(balanceOf(msg.sender) + _mintAmount <= maxLimitPerWallet, 'Max mint per wallet exceeded!');

    uint256 freeMintsLeft = 2 - balanceOf(msg.sender);
    if(freeMintsLeft < 0)
    {
        freeMintsLeft = 0;
    }

    require(msg.value >= price * (_mintAmount - freeMintsLeft), 'Insufficient funds!');
     
    // Mint
     _safeMint(_msgSender(), _mintAmount);
  }  

  function Airdrop(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _safeMint(_receiver, _mintAmount);
  }

// ================== Mint Functions End =======================  

// ================== Set Functions Start =======================

// uri
  function seturi(string memory _uri) public onlyOwner {
    uri = _uri;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

// max per tx
  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

// pax per wallet
  function setMaxLimitPerWallet(uint256 _maxLimitPerWallet) public onlyOwner {
    maxLimitPerWallet = _maxLimitPerWallet;
  }

// price

  function setCost(uint256 _cost) public onlyOwner {
    price = _cost;
  }  

// supply limit
  function setSupplyLimit(uint256 _supplyLimit) public onlyOwner {
    maxSupply = _supplyLimit;
  }

// ================== Set Functions End =======================

// ================== Withdraw Function Start =======================
  
  function withdraw() public onlyOwner nonReentrant {
        uint _balance = address(this).balance;
         (bool os, ) = payable(owner()).call{value: _balance}("");
        require(os);
  }

// ================== Withdraw Function End=======================  

// ================== Read Functions Start =======================

function tokensOfOwner(address owner) external view returns (uint256[] memory) {
    unchecked {
        uint256[] memory a = new uint256[](balanceOf(owner)); 
        uint256 end = _nextTokenId();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;
        for (uint256 i; i < end; i++) {
            TokenOwnership memory ownership = _ownershipAt(i);
            if (ownership.burned) {
                continue;
            }
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                a[tokenIdsIdx++] = i;
            }
        }
        return a;    
    }
}

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

  function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) {
    require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token');

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

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

// ================== Read Functions End =======================  

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","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":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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CollectReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"Mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLimitPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservesAmount","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":"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":[],"name":"sale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxLimitPerWallet","type":"uint256"}],"name":"setMaxLimitPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"setSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"seturi","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"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":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b9080519060200190620000519291906200035e565b506611c37937e08000600c556108ae600d556064600e55600a600f55600a6010556001601160006101000a81548160ff0219169083151502179055503480156200009a57600080fd5b506040516200427f3803806200427f8339818101604052810190620000c09190620005ab565b6040518060400160405280601781526020017f546865205068696c62657274204578706572696d656e740000000000000000008152506040518060400160405280600481526020017f50425850000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001449291906200035e565b5080600390805190602001906200015d9291906200035e565b506200016e620001b660201b60201c565b6000819055505050620001966200018a620001bb60201b60201c565b620001c360201b60201c565b6001600981905550620001af816200028960201b60201c565b50620006e3565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000299620001bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002bf6200033460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000318576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200030f906200065d565b60405180910390fd5b80600a9080519060200190620003309291906200035e565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200036c90620006ae565b90600052602060002090601f016020900481019282620003905760008555620003dc565b82601f10620003ab57805160ff1916838001178555620003dc565b82800160010185558215620003dc579182015b82811115620003db578251825591602001919060010190620003be565b5b509050620003eb9190620003ef565b5090565b5b808211156200040a576000816000905550600101620003f0565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000477826200042c565b810181811067ffffffffffffffff821117156200049957620004986200043d565b5b80604052505050565b6000620004ae6200040e565b9050620004bc82826200046c565b919050565b600067ffffffffffffffff821115620004df57620004de6200043d565b5b620004ea826200042c565b9050602081019050919050565b60005b8381101562000517578082015181840152602081019050620004fa565b8381111562000527576000848401525b50505050565b6000620005446200053e84620004c1565b620004a2565b90508281526020810184848401111562000563576200056262000427565b5b62000570848285620004f7565b509392505050565b600082601f83011262000590576200058f62000422565b5b8151620005a28482602086016200052d565b91505092915050565b600060208284031215620005c457620005c362000418565b5b600082015167ffffffffffffffff811115620005e557620005e46200041d565b5b620005f38482850162000578565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000645602083620005fc565b915062000652826200060d565b602082019050919050565b60006020820190508181036000830152620006788162000636565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006c757607f821691505b602082108103620006dd57620006dc6200067f565b5b50919050565b613b8c80620006f36000396000f3fe60806040526004361061020f5760003560e01c8063715018a611610118578063b071401b116100a0578063db4aa5191161006f578063db4aa51914610754578063e985e9c51461077f578063eac989f8146107bc578063f2fde38b146107e7578063f6484980146108105761020f565b8063b071401b1461069a578063b88d4fde146106c3578063c87b56dd146106ec578063d5abeb01146107295761020f565b80638da5cb5b116100e75780638da5cb5b146105c557806394354fd0146105f057806395d89b411461061b578063a035b1fe14610646578063a22cb465146106715761020f565b8063715018a6146105315780637871e154146105485780637e295d66146105715780638462151c146105885761020f565b80633ccfd60b1161019b5780635503a0e81161016a5780635503a0e8146104365780635a0b8b23146104615780636352211e1461048c5780636ad1fe02146104c957806370a08231146104f45761020f565b80633ccfd60b146103a45780633fa10135146103bb57806342842e0e146103e457806344a0d68a1461040d5761020f565b8063095ea7b3116101e2578063095ea7b3146102d557806316ba10e0146102fe57806318160ddd1461032757806323b872dd14610352578063361fab251461037b5761020f565b806301ffc9a71461021457806306fdde0314610251578063078837031461027c578063081812fc14610298575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612acc565b610839565b6040516102489190612b14565b60405180910390f35b34801561025d57600080fd5b506102666108cb565b6040516102739190612bc8565b60405180910390f35b61029660048036038101906102919190612c20565b61095d565b005b3480156102a457600080fd5b506102bf60048036038101906102ba9190612c20565b610b49565b6040516102cc9190612c8e565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612cd5565b610bc5565b005b34801561030a57600080fd5b5061032560048036038101906103209190612e4a565b610d06565b005b34801561033357600080fd5b5061033c610d9c565b6040516103499190612ea2565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612ebd565b610db3565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612c20565b6110d5565b005b3480156103b057600080fd5b506103b961115b565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612c20565b6112b2565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612ebd565b611338565b005b34801561041957600080fd5b50610434600480360381019061042f9190612c20565b611358565b005b34801561044257600080fd5b5061044b6113de565b6040516104589190612bc8565b60405180910390f35b34801561046d57600080fd5b5061047661146c565b6040516104839190612ea2565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612c20565b611472565b6040516104c09190612c8e565b60405180910390f35b3480156104d557600080fd5b506104de611484565b6040516104eb9190612b14565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612f10565b611497565b6040516105289190612ea2565b60405180910390f35b34801561053d57600080fd5b5061054661154f565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612f3d565b6115d7565b005b34801561057d57600080fd5b506105866116b8565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612f10565b6117f0565b6040516105bc919061303b565b60405180910390f35b3480156105d157600080fd5b506105da611934565b6040516105e79190612c8e565b60405180910390f35b3480156105fc57600080fd5b5061060561195e565b6040516106129190612ea2565b60405180910390f35b34801561062757600080fd5b50610630611964565b60405161063d9190612bc8565b60405180910390f35b34801561065257600080fd5b5061065b6119f6565b6040516106689190612ea2565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613089565b6119fc565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612c20565b611b73565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061316a565b611bf9565b005b3480156106f857600080fd5b50610713600480360381019061070e9190612c20565b611c6c565b6040516107209190612bc8565b60405180910390f35b34801561073557600080fd5b5061073e611d16565b60405161074b9190612ea2565b60405180910390f35b34801561076057600080fd5b50610769611d1c565b6040516107769190612ea2565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906131ed565b611d22565b6040516107b39190612b14565b60405180910390f35b3480156107c857600080fd5b506107d1611db6565b6040516107de9190612bc8565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612f10565b611e44565b005b34801561081c57600080fd5b5061083760048036038101906108329190612e4a565b611f3b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108da9061325c565b80601f01602080910402602001604051908101604052809291908181526020018280546109069061325c565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000610967610d9c565b9050601160009054906101000a900460ff166109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906132d9565b60405180910390fd5b6000821180156109ca5750600f548211155b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613345565b60405180910390fd5b600d548282610a189190613394565b1115610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613436565b60405180910390fd5b60105482610a6633611497565b610a709190613394565b1115610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906134a2565b60405180910390fd5b6000610abc33611497565b6002610ac891906134c2565b90506000811015610ad857600090505b8083610ae491906134c2565b600c54610af191906134f6565b341015610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a9061359c565b60405180910390fd5b610b44610b3e611fd1565b84611fd9565b505050565b6000610b5482611ff7565b610b8a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd082611472565b90508073ffffffffffffffffffffffffffffffffffffffff16610bf1612056565b73ffffffffffffffffffffffffffffffffffffffff1614610c5457610c1d81610c18612056565b611d22565b610c53576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d0e611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610d2c611934565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613608565b60405180910390fd5b80600b9080519060200190610d9892919061296e565b5050565b6000610da661205e565b6001546000540303905090565b6000610dbe82612063565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e25576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e318461212f565b91509150610e478187610e42612056565b612151565b610e9357610e5c86610e57612056565b611d22565b610e92576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f068686866001612195565b8015610f1157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fdf85610fbb88888761219b565b7c0200000000000000000000000000000000000000000000000000000000176121c3565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110655760006001850190506000600460008381526020019081526020016000205403611063576000548114611062578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110cd86868660016121ee565b505050505050565b6110dd611fd1565b73ffffffffffffffffffffffffffffffffffffffff166110fb611934565b73ffffffffffffffffffffffffffffffffffffffff1614611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890613608565b60405180910390fd5b80600d8190555050565b611163611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611181611934565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613608565b60405180910390fd5b60026009540361121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390613674565b60405180910390fd5b600260098190555060004790506000611233611934565b73ffffffffffffffffffffffffffffffffffffffff1682604051611256906136c5565b60006040518083038185875af1925050503d8060008114611293576040519150601f19603f3d011682016040523d82523d6000602084013e611298565b606091505b50509050806112a657600080fd5b50506001600981905550565b6112ba611fd1565b73ffffffffffffffffffffffffffffffffffffffff166112d8611934565b73ffffffffffffffffffffffffffffffffffffffff161461132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613608565b60405180910390fd5b8060108190555050565b61135383838360405180602001604052806000815250611bf9565b505050565b611360611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661137e611934565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90613608565b60405180910390fd5b80600c8190555050565b600b80546113eb9061325c565b80601f01602080910402602001604051908101604052809291908181526020018280546114179061325c565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b505050505081565b60105481565b600061147d82612063565b9050919050565b601160009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611557611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611575611934565b73ffffffffffffffffffffffffffffffffffffffff16146115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613608565b60405180910390fd5b6115d560006121f4565b565b6115df611fd1565b73ffffffffffffffffffffffffffffffffffffffff166115fd611934565b73ffffffffffffffffffffffffffffffffffffffff1614611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613608565b60405180910390fd5b600d548261165f610d9c565b6116699190613394565b11156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613436565b60405180910390fd5b6116b48183611fd9565b5050565b6116c0611fd1565b73ffffffffffffffffffffffffffffffffffffffff166116de611934565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613608565b60405180910390fd5b600260095403611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613674565b60405180910390fd5b6002600981905550600d54600e5461178f610d9c565b6117999190613394565b11156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613726565b60405180910390fd5b6117e633600e54611fd9565b6001600981905550565b606060006117fd83611497565b67ffffffffffffffff81111561181657611815612d1f565b5b6040519080825280602002602001820160405280156118445781602001602082028036833780820191505090505b50905060006118516122ba565b905060008060005b8381101561192757600061186c826122c3565b905080604001511561187e575061191a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118be57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611918578186858060010196508151811061190b5761190a613746565b5b6020026020010181815250505b505b8080600101915050611859565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546119739061325c565b80601f016020809104026020016040519081016040528092919081815260200182805461199f9061325c565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b5050505050905090565b600c5481565b611a04612056565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a68576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a75612056565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b22612056565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b679190612b14565b60405180910390a35050565b611b7b611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611b99611934565b73ffffffffffffffffffffffffffffffffffffffff1614611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613608565b60405180910390fd5b80600f8190555050565b611c04848484610db3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c6657611c2f848484846122ee565b611c65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611c7782611ff7565b611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad906137e7565b60405180910390fd5b6000611cc061243e565b90506000815111611ce05760405180602001604052806000815250611d0e565b80611cea846124d0565b600b604051602001611cfe939291906138d7565b6040516020818303038152906040525b915050919050565b600d5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611dc39061325c565b80601f0160208091040260200160405190810160405280929190818152602001828054611def9061325c565b8015611e3c5780601f10611e1157610100808354040283529160200191611e3c565b820191906000526020600020905b815481529060010190602001808311611e1f57829003601f168201915b505050505081565b611e4c611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611e6a611934565b73ffffffffffffffffffffffffffffffffffffffff1614611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790613608565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f269061397a565b60405180910390fd5b611f38816121f4565b50565b611f43611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611f61611934565b73ffffffffffffffffffffffffffffffffffffffff1614611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae90613608565b60405180910390fd5b80600a9080519060200190611fcd92919061296e565b5050565b600033905090565b611ff3828260405180602001604052806000815250612630565b5050565b60008161200261205e565b11158015612011575060005482105b801561204f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061207261205e565b116120f8576000548110156120f75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120f5575b600081036120eb5760046000836001900393508381526020019081526020016000205490506120c1565b809250505061212a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121b28686846126cd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b6122cb6129f4565b6122e760046000848152602001908152602001600020546126d6565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612314612056565b8786866040518563ffffffff1660e01b815260040161233694939291906139ef565b6020604051808303816000875af192505050801561237257506040513d601f19601f8201168201806040525081019061236f9190613a50565b60015b6123eb573d80600081146123a2576040519150601f19603f3d011682016040523d82523d6000602084013e6123a7565b606091505b5060008151036123e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461244d9061325c565b80601f01602080910402602001604051908101604052809291908181526020018280546124799061325c565b80156124c65780601f1061249b576101008083540402835291602001916124c6565b820191906000526020600020905b8154815290600101906020018083116124a957829003601f168201915b5050505050905090565b606060008203612517576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061262b565b600082905060005b6000821461254957808061253290613a7d565b915050600a826125429190613af4565b915061251f565b60008167ffffffffffffffff81111561256557612564612d1f565b5b6040519080825280601f01601f1916602001820160405280156125975781602001600182028036833780820191505090505b5090505b60008514612624576001826125b091906134c2565b9150600a856125bf9190613b25565b60306125cb9190613394565b60f81b8183815181106125e1576125e0613746565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561261d9190613af4565b945061259b565b8093505050505b919050565b61263a838361278c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126c857600080549050600083820390505b61267a60008683806001019450866122ee565b6126b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126675781600054146126c557600080fd5b50505b505050565b60009392505050565b6126de6129f4565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127f8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612832576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61283f6000848385612195565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128b6836128a7600086600061219b565b6128b08561295e565b176121c3565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106128da5780600081905550505061295960008483856121ee565b505050565b60006001821460e11b9050919050565b82805461297a9061325c565b90600052602060002090601f01602090048101928261299c57600085556129e3565b82601f106129b557805160ff19168380011785556129e3565b828001600101855582156129e3579182015b828111156129e25782518255916020019190600101906129c7565b5b5090506129f09190612a43565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a5c576000816000905550600101612a44565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aa981612a74565b8114612ab457600080fd5b50565b600081359050612ac681612aa0565b92915050565b600060208284031215612ae257612ae1612a6a565b5b6000612af084828501612ab7565b91505092915050565b60008115159050919050565b612b0e81612af9565b82525050565b6000602082019050612b296000830184612b05565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b69578082015181840152602081019050612b4e565b83811115612b78576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9a82612b2f565b612ba48185612b3a565b9350612bb4818560208601612b4b565b612bbd81612b7e565b840191505092915050565b60006020820190508181036000830152612be28184612b8f565b905092915050565b6000819050919050565b612bfd81612bea565b8114612c0857600080fd5b50565b600081359050612c1a81612bf4565b92915050565b600060208284031215612c3657612c35612a6a565b5b6000612c4484828501612c0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7882612c4d565b9050919050565b612c8881612c6d565b82525050565b6000602082019050612ca36000830184612c7f565b92915050565b612cb281612c6d565b8114612cbd57600080fd5b50565b600081359050612ccf81612ca9565b92915050565b60008060408385031215612cec57612ceb612a6a565b5b6000612cfa85828601612cc0565b9250506020612d0b85828601612c0b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5782612b7e565b810181811067ffffffffffffffff82111715612d7657612d75612d1f565b5b80604052505050565b6000612d89612a60565b9050612d958282612d4e565b919050565b600067ffffffffffffffff821115612db557612db4612d1f565b5b612dbe82612b7e565b9050602081019050919050565b82818337600083830152505050565b6000612ded612de884612d9a565b612d7f565b905082815260208101848484011115612e0957612e08612d1a565b5b612e14848285612dcb565b509392505050565b600082601f830112612e3157612e30612d15565b5b8135612e41848260208601612dda565b91505092915050565b600060208284031215612e6057612e5f612a6a565b5b600082013567ffffffffffffffff811115612e7e57612e7d612a6f565b5b612e8a84828501612e1c565b91505092915050565b612e9c81612bea565b82525050565b6000602082019050612eb76000830184612e93565b92915050565b600080600060608486031215612ed657612ed5612a6a565b5b6000612ee486828701612cc0565b9350506020612ef586828701612cc0565b9250506040612f0686828701612c0b565b9150509250925092565b600060208284031215612f2657612f25612a6a565b5b6000612f3484828501612cc0565b91505092915050565b60008060408385031215612f5457612f53612a6a565b5b6000612f6285828601612c0b565b9250506020612f7385828601612cc0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fb281612bea565b82525050565b6000612fc48383612fa9565b60208301905092915050565b6000602082019050919050565b6000612fe882612f7d565b612ff28185612f88565b9350612ffd83612f99565b8060005b8381101561302e5781516130158882612fb8565b975061302083612fd0565b925050600181019050613001565b5085935050505092915050565b600060208201905081810360008301526130558184612fdd565b905092915050565b61306681612af9565b811461307157600080fd5b50565b6000813590506130838161305d565b92915050565b600080604083850312156130a05761309f612a6a565b5b60006130ae85828601612cc0565b92505060206130bf85828601613074565b9150509250929050565b600067ffffffffffffffff8211156130e4576130e3612d1f565b5b6130ed82612b7e565b9050602081019050919050565b600061310d613108846130c9565b612d7f565b90508281526020810184848401111561312957613128612d1a565b5b613134848285612dcb565b509392505050565b600082601f83011261315157613150612d15565b5b81356131618482602086016130fa565b91505092915050565b6000806000806080858703121561318457613183612a6a565b5b600061319287828801612cc0565b94505060206131a387828801612cc0565b93505060406131b487828801612c0b565b925050606085013567ffffffffffffffff8111156131d5576131d4612a6f565b5b6131e18782880161313c565b91505092959194509250565b6000806040838503121561320457613203612a6a565b5b600061321285828601612cc0565b925050602061322385828601612cc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061327457607f821691505b6020821081036132875761328661322d565b5b50919050565b7f5468652053616c65206973207061757365642100000000000000000000000000600082015250565b60006132c3601383612b3a565b91506132ce8261328d565b602082019050919050565b600060208201905081810360008301526132f2816132b6565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061332f601483612b3a565b915061333a826132f9565b602082019050919050565b6000602082019050818103600083015261335e81613322565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339f82612bea565b91506133aa83612bea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133df576133de613365565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613420601483612b3a565b915061342b826133ea565b602082019050919050565b6000602082019050818103600083015261344f81613413565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b600061348c601d83612b3a565b915061349782613456565b602082019050919050565b600060208201905081810360008301526134bb8161347f565b9050919050565b60006134cd82612bea565b91506134d883612bea565b9250828210156134eb576134ea613365565b5b828203905092915050565b600061350182612bea565b915061350c83612bea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354557613544613365565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613586601383612b3a565b915061359182613550565b602082019050919050565b600060208201905081810360008301526135b581613579565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135f2602083612b3a565b91506135fd826135bc565b602082019050919050565b60006020820190508181036000830152613621816135e5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061365e601f83612b3a565b915061366982613628565b602082019050919050565b6000602082019050818103600083015261368d81613651565b9050919050565b600081905092915050565b50565b60006136af600083613694565b91506136ba8261369f565b600082019050919050565b60006136d0826136a2565b9150819050919050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000613710601483612b3a565b915061371b826136da565b602082019050919050565b6000602082019050818103600083015261373f81613703565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137d1602f83612b3a565b91506137dc82613775565b604082019050919050565b60006020820190508181036000830152613800816137c4565b9050919050565b600081905092915050565b600061381d82612b2f565b6138278185613807565b9350613837818560208601612b4b565b80840191505092915050565b60008190508160005260206000209050919050565b600081546138658161325c565b61386f8186613807565b9450600182166000811461388a576001811461389b576138ce565b60ff198316865281860193506138ce565b6138a485613843565b60005b838110156138c6578154818901526001820191506020810190506138a7565b838801955050505b50505092915050565b60006138e38286613812565b91506138ef8285613812565b91506138fb8284613858565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613964602683612b3a565b915061396f82613908565b604082019050919050565b6000602082019050818103600083015261399381613957565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139c18261399a565b6139cb81856139a5565b93506139db818560208601612b4b565b6139e481612b7e565b840191505092915050565b6000608082019050613a046000830187612c7f565b613a116020830186612c7f565b613a1e6040830185612e93565b8181036060830152613a3081846139b6565b905095945050505050565b600081519050613a4a81612aa0565b92915050565b600060208284031215613a6657613a65612a6a565b5b6000613a7484828501613a3b565b91505092915050565b6000613a8882612bea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aba57613ab9613365565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613aff82612bea565b9150613b0a83612bea565b925082613b1a57613b19613ac5565b5b828204905092915050565b6000613b3082612bea565b9150613b3b83612bea565b925082613b4b57613b4a613ac5565b5b82820690509291505056fea2646970667358221220921180f5976b942e4cad6ccfa7a1383a6ff2d67a4e1bf092575c987114fee8b264736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5561417561484835547441554c594247584b656a455444536779726743793272556f623141505a443563735a2f00000000000000000000

Deployed Bytecode

0x60806040526004361061020f5760003560e01c8063715018a611610118578063b071401b116100a0578063db4aa5191161006f578063db4aa51914610754578063e985e9c51461077f578063eac989f8146107bc578063f2fde38b146107e7578063f6484980146108105761020f565b8063b071401b1461069a578063b88d4fde146106c3578063c87b56dd146106ec578063d5abeb01146107295761020f565b80638da5cb5b116100e75780638da5cb5b146105c557806394354fd0146105f057806395d89b411461061b578063a035b1fe14610646578063a22cb465146106715761020f565b8063715018a6146105315780637871e154146105485780637e295d66146105715780638462151c146105885761020f565b80633ccfd60b1161019b5780635503a0e81161016a5780635503a0e8146104365780635a0b8b23146104615780636352211e1461048c5780636ad1fe02146104c957806370a08231146104f45761020f565b80633ccfd60b146103a45780633fa10135146103bb57806342842e0e146103e457806344a0d68a1461040d5761020f565b8063095ea7b3116101e2578063095ea7b3146102d557806316ba10e0146102fe57806318160ddd1461032757806323b872dd14610352578063361fab251461037b5761020f565b806301ffc9a71461021457806306fdde0314610251578063078837031461027c578063081812fc14610298575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612acc565b610839565b6040516102489190612b14565b60405180910390f35b34801561025d57600080fd5b506102666108cb565b6040516102739190612bc8565b60405180910390f35b61029660048036038101906102919190612c20565b61095d565b005b3480156102a457600080fd5b506102bf60048036038101906102ba9190612c20565b610b49565b6040516102cc9190612c8e565b60405180910390f35b3480156102e157600080fd5b506102fc60048036038101906102f79190612cd5565b610bc5565b005b34801561030a57600080fd5b5061032560048036038101906103209190612e4a565b610d06565b005b34801561033357600080fd5b5061033c610d9c565b6040516103499190612ea2565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612ebd565b610db3565b005b34801561038757600080fd5b506103a2600480360381019061039d9190612c20565b6110d5565b005b3480156103b057600080fd5b506103b961115b565b005b3480156103c757600080fd5b506103e260048036038101906103dd9190612c20565b6112b2565b005b3480156103f057600080fd5b5061040b60048036038101906104069190612ebd565b611338565b005b34801561041957600080fd5b50610434600480360381019061042f9190612c20565b611358565b005b34801561044257600080fd5b5061044b6113de565b6040516104589190612bc8565b60405180910390f35b34801561046d57600080fd5b5061047661146c565b6040516104839190612ea2565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190612c20565b611472565b6040516104c09190612c8e565b60405180910390f35b3480156104d557600080fd5b506104de611484565b6040516104eb9190612b14565b60405180910390f35b34801561050057600080fd5b5061051b60048036038101906105169190612f10565b611497565b6040516105289190612ea2565b60405180910390f35b34801561053d57600080fd5b5061054661154f565b005b34801561055457600080fd5b5061056f600480360381019061056a9190612f3d565b6115d7565b005b34801561057d57600080fd5b506105866116b8565b005b34801561059457600080fd5b506105af60048036038101906105aa9190612f10565b6117f0565b6040516105bc919061303b565b60405180910390f35b3480156105d157600080fd5b506105da611934565b6040516105e79190612c8e565b60405180910390f35b3480156105fc57600080fd5b5061060561195e565b6040516106129190612ea2565b60405180910390f35b34801561062757600080fd5b50610630611964565b60405161063d9190612bc8565b60405180910390f35b34801561065257600080fd5b5061065b6119f6565b6040516106689190612ea2565b60405180910390f35b34801561067d57600080fd5b5061069860048036038101906106939190613089565b6119fc565b005b3480156106a657600080fd5b506106c160048036038101906106bc9190612c20565b611b73565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061316a565b611bf9565b005b3480156106f857600080fd5b50610713600480360381019061070e9190612c20565b611c6c565b6040516107209190612bc8565b60405180910390f35b34801561073557600080fd5b5061073e611d16565b60405161074b9190612ea2565b60405180910390f35b34801561076057600080fd5b50610769611d1c565b6040516107769190612ea2565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a191906131ed565b611d22565b6040516107b39190612b14565b60405180910390f35b3480156107c857600080fd5b506107d1611db6565b6040516107de9190612bc8565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190612f10565b611e44565b005b34801561081c57600080fd5b5061083760048036038101906108329190612e4a565b611f3b565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c45750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546108da9061325c565b80601f01602080910402602001604051908101604052809291908181526020018280546109069061325c565b80156109535780601f1061092857610100808354040283529160200191610953565b820191906000526020600020905b81548152906001019060200180831161093657829003601f168201915b5050505050905090565b6000610967610d9c565b9050601160009054906101000a900460ff166109b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109af906132d9565b60405180910390fd5b6000821180156109ca5750600f548211155b610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0090613345565b60405180910390fd5b600d548282610a189190613394565b1115610a59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5090613436565b60405180910390fd5b60105482610a6633611497565b610a709190613394565b1115610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906134a2565b60405180910390fd5b6000610abc33611497565b6002610ac891906134c2565b90506000811015610ad857600090505b8083610ae491906134c2565b600c54610af191906134f6565b341015610b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2a9061359c565b60405180910390fd5b610b44610b3e611fd1565b84611fd9565b505050565b6000610b5482611ff7565b610b8a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bd082611472565b90508073ffffffffffffffffffffffffffffffffffffffff16610bf1612056565b73ffffffffffffffffffffffffffffffffffffffff1614610c5457610c1d81610c18612056565b611d22565b610c53576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610d0e611fd1565b73ffffffffffffffffffffffffffffffffffffffff16610d2c611934565b73ffffffffffffffffffffffffffffffffffffffff1614610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7990613608565b60405180910390fd5b80600b9080519060200190610d9892919061296e565b5050565b6000610da661205e565b6001546000540303905090565b6000610dbe82612063565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e25576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610e318461212f565b91509150610e478187610e42612056565b612151565b610e9357610e5c86610e57612056565b611d22565b610e92576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610ef9576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610f068686866001612195565b8015610f1157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610fdf85610fbb88888761219b565b7c0200000000000000000000000000000000000000000000000000000000176121c3565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036110655760006001850190506000600460008381526020019081526020016000205403611063576000548114611062578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110cd86868660016121ee565b505050505050565b6110dd611fd1565b73ffffffffffffffffffffffffffffffffffffffff166110fb611934565b73ffffffffffffffffffffffffffffffffffffffff1614611151576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114890613608565b60405180910390fd5b80600d8190555050565b611163611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611181611934565b73ffffffffffffffffffffffffffffffffffffffff16146111d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ce90613608565b60405180910390fd5b60026009540361121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390613674565b60405180910390fd5b600260098190555060004790506000611233611934565b73ffffffffffffffffffffffffffffffffffffffff1682604051611256906136c5565b60006040518083038185875af1925050503d8060008114611293576040519150601f19603f3d011682016040523d82523d6000602084013e611298565b606091505b50509050806112a657600080fd5b50506001600981905550565b6112ba611fd1565b73ffffffffffffffffffffffffffffffffffffffff166112d8611934565b73ffffffffffffffffffffffffffffffffffffffff161461132e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132590613608565b60405180910390fd5b8060108190555050565b61135383838360405180602001604052806000815250611bf9565b505050565b611360611fd1565b73ffffffffffffffffffffffffffffffffffffffff1661137e611934565b73ffffffffffffffffffffffffffffffffffffffff16146113d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113cb90613608565b60405180910390fd5b80600c8190555050565b600b80546113eb9061325c565b80601f01602080910402602001604051908101604052809291908181526020018280546114179061325c565b80156114645780601f1061143957610100808354040283529160200191611464565b820191906000526020600020905b81548152906001019060200180831161144757829003601f168201915b505050505081565b60105481565b600061147d82612063565b9050919050565b601160009054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114fe576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611557611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611575611934565b73ffffffffffffffffffffffffffffffffffffffff16146115cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c290613608565b60405180910390fd5b6115d560006121f4565b565b6115df611fd1565b73ffffffffffffffffffffffffffffffffffffffff166115fd611934565b73ffffffffffffffffffffffffffffffffffffffff1614611653576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164a90613608565b60405180910390fd5b600d548261165f610d9c565b6116699190613394565b11156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a190613436565b60405180910390fd5b6116b48183611fd9565b5050565b6116c0611fd1565b73ffffffffffffffffffffffffffffffffffffffff166116de611934565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613608565b60405180910390fd5b600260095403611779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177090613674565b60405180910390fd5b6002600981905550600d54600e5461178f610d9c565b6117999190613394565b11156117da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d190613726565b60405180910390fd5b6117e633600e54611fd9565b6001600981905550565b606060006117fd83611497565b67ffffffffffffffff81111561181657611815612d1f565b5b6040519080825280602002602001820160405280156118445781602001602082028036833780820191505090505b50905060006118516122ba565b905060008060005b8381101561192757600061186c826122c3565b905080604001511561187e575061191a565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146118be57806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611918578186858060010196508151811061190b5761190a613746565b5b6020026020010181815250505b505b8080600101915050611859565b5083945050505050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600f5481565b6060600380546119739061325c565b80601f016020809104026020016040519081016040528092919081815260200182805461199f9061325c565b80156119ec5780601f106119c1576101008083540402835291602001916119ec565b820191906000526020600020905b8154815290600101906020018083116119cf57829003601f168201915b5050505050905090565b600c5481565b611a04612056565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a68576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611a75612056565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b22612056565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b679190612b14565b60405180910390a35050565b611b7b611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611b99611934565b73ffffffffffffffffffffffffffffffffffffffff1614611bef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be690613608565b60405180910390fd5b80600f8190555050565b611c04848484610db3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c6657611c2f848484846122ee565b611c65576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611c7782611ff7565b611cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cad906137e7565b60405180910390fd5b6000611cc061243e565b90506000815111611ce05760405180602001604052806000815250611d0e565b80611cea846124d0565b600b604051602001611cfe939291906138d7565b6040516020818303038152906040525b915050919050565b600d5481565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a8054611dc39061325c565b80601f0160208091040260200160405190810160405280929190818152602001828054611def9061325c565b8015611e3c5780601f10611e1157610100808354040283529160200191611e3c565b820191906000526020600020905b815481529060010190602001808311611e1f57829003601f168201915b505050505081565b611e4c611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611e6a611934565b73ffffffffffffffffffffffffffffffffffffffff1614611ec0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb790613608565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611f2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f269061397a565b60405180910390fd5b611f38816121f4565b50565b611f43611fd1565b73ffffffffffffffffffffffffffffffffffffffff16611f61611934565b73ffffffffffffffffffffffffffffffffffffffff1614611fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fae90613608565b60405180910390fd5b80600a9080519060200190611fcd92919061296e565b5050565b600033905090565b611ff3828260405180602001604052806000815250612630565b5050565b60008161200261205e565b11158015612011575060005482105b801561204f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b6000808290508061207261205e565b116120f8576000548110156120f75760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036120f5575b600081036120eb5760046000836001900393508381526020019081526020016000205490506120c1565b809250505061212a565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86121b28686846126cd565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008054905090565b6122cb6129f4565b6122e760046000848152602001908152602001600020546126d6565b9050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612314612056565b8786866040518563ffffffff1660e01b815260040161233694939291906139ef565b6020604051808303816000875af192505050801561237257506040513d601f19601f8201168201806040525081019061236f9190613a50565b60015b6123eb573d80600081146123a2576040519150601f19603f3d011682016040523d82523d6000602084013e6123a7565b606091505b5060008151036123e3576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461244d9061325c565b80601f01602080910402602001604051908101604052809291908181526020018280546124799061325c565b80156124c65780601f1061249b576101008083540402835291602001916124c6565b820191906000526020600020905b8154815290600101906020018083116124a957829003601f168201915b5050505050905090565b606060008203612517576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061262b565b600082905060005b6000821461254957808061253290613a7d565b915050600a826125429190613af4565b915061251f565b60008167ffffffffffffffff81111561256557612564612d1f565b5b6040519080825280601f01601f1916602001820160405280156125975781602001600182028036833780820191505090505b5090505b60008514612624576001826125b091906134c2565b9150600a856125bf9190613b25565b60306125cb9190613394565b60f81b8183815181106125e1576125e0613746565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561261d9190613af4565b945061259b565b8093505050505b919050565b61263a838361278c565b60008373ffffffffffffffffffffffffffffffffffffffff163b146126c857600080549050600083820390505b61267a60008683806001019450866122ee565b6126b0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106126675781600054146126c557600080fd5b50505b505050565b60009392505050565b6126de6129f4565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c01000000000000000000000000000000000000000000000000000000008316141581604001901515908115158152505060e882901c816060019062ffffff16908162ffffff1681525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036127f8576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612832576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61283f6000848385612195565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506128b6836128a7600086600061219b565b6128b08561295e565b176121c3565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106128da5780600081905550505061295960008483856121ee565b505050565b60006001821460e11b9050919050565b82805461297a9061325c565b90600052602060002090601f01602090048101928261299c57600085556129e3565b82601f106129b557805160ff19168380011785556129e3565b828001600101855582156129e3579182015b828111156129e25782518255916020019190600101906129c7565b5b5090506129f09190612a43565b5090565b6040518060800160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff168152602001600015158152602001600062ffffff1681525090565b5b80821115612a5c576000816000905550600101612a44565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612aa981612a74565b8114612ab457600080fd5b50565b600081359050612ac681612aa0565b92915050565b600060208284031215612ae257612ae1612a6a565b5b6000612af084828501612ab7565b91505092915050565b60008115159050919050565b612b0e81612af9565b82525050565b6000602082019050612b296000830184612b05565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612b69578082015181840152602081019050612b4e565b83811115612b78576000848401525b50505050565b6000601f19601f8301169050919050565b6000612b9a82612b2f565b612ba48185612b3a565b9350612bb4818560208601612b4b565b612bbd81612b7e565b840191505092915050565b60006020820190508181036000830152612be28184612b8f565b905092915050565b6000819050919050565b612bfd81612bea565b8114612c0857600080fd5b50565b600081359050612c1a81612bf4565b92915050565b600060208284031215612c3657612c35612a6a565b5b6000612c4484828501612c0b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612c7882612c4d565b9050919050565b612c8881612c6d565b82525050565b6000602082019050612ca36000830184612c7f565b92915050565b612cb281612c6d565b8114612cbd57600080fd5b50565b600081359050612ccf81612ca9565b92915050565b60008060408385031215612cec57612ceb612a6a565b5b6000612cfa85828601612cc0565b9250506020612d0b85828601612c0b565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612d5782612b7e565b810181811067ffffffffffffffff82111715612d7657612d75612d1f565b5b80604052505050565b6000612d89612a60565b9050612d958282612d4e565b919050565b600067ffffffffffffffff821115612db557612db4612d1f565b5b612dbe82612b7e565b9050602081019050919050565b82818337600083830152505050565b6000612ded612de884612d9a565b612d7f565b905082815260208101848484011115612e0957612e08612d1a565b5b612e14848285612dcb565b509392505050565b600082601f830112612e3157612e30612d15565b5b8135612e41848260208601612dda565b91505092915050565b600060208284031215612e6057612e5f612a6a565b5b600082013567ffffffffffffffff811115612e7e57612e7d612a6f565b5b612e8a84828501612e1c565b91505092915050565b612e9c81612bea565b82525050565b6000602082019050612eb76000830184612e93565b92915050565b600080600060608486031215612ed657612ed5612a6a565b5b6000612ee486828701612cc0565b9350506020612ef586828701612cc0565b9250506040612f0686828701612c0b565b9150509250925092565b600060208284031215612f2657612f25612a6a565b5b6000612f3484828501612cc0565b91505092915050565b60008060408385031215612f5457612f53612a6a565b5b6000612f6285828601612c0b565b9250506020612f7385828601612cc0565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612fb281612bea565b82525050565b6000612fc48383612fa9565b60208301905092915050565b6000602082019050919050565b6000612fe882612f7d565b612ff28185612f88565b9350612ffd83612f99565b8060005b8381101561302e5781516130158882612fb8565b975061302083612fd0565b925050600181019050613001565b5085935050505092915050565b600060208201905081810360008301526130558184612fdd565b905092915050565b61306681612af9565b811461307157600080fd5b50565b6000813590506130838161305d565b92915050565b600080604083850312156130a05761309f612a6a565b5b60006130ae85828601612cc0565b92505060206130bf85828601613074565b9150509250929050565b600067ffffffffffffffff8211156130e4576130e3612d1f565b5b6130ed82612b7e565b9050602081019050919050565b600061310d613108846130c9565b612d7f565b90508281526020810184848401111561312957613128612d1a565b5b613134848285612dcb565b509392505050565b600082601f83011261315157613150612d15565b5b81356131618482602086016130fa565b91505092915050565b6000806000806080858703121561318457613183612a6a565b5b600061319287828801612cc0565b94505060206131a387828801612cc0565b93505060406131b487828801612c0b565b925050606085013567ffffffffffffffff8111156131d5576131d4612a6f565b5b6131e18782880161313c565b91505092959194509250565b6000806040838503121561320457613203612a6a565b5b600061321285828601612cc0565b925050602061322385828601612cc0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061327457607f821691505b6020821081036132875761328661322d565b5b50919050565b7f5468652053616c65206973207061757365642100000000000000000000000000600082015250565b60006132c3601383612b3a565b91506132ce8261328d565b602082019050919050565b600060208201905081810360008301526132f2816132b6565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b600061332f601483612b3a565b915061333a826132f9565b602082019050919050565b6000602082019050818103600083015261335e81613322565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061339f82612bea565b91506133aa83612bea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133df576133de613365565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613420601483612b3a565b915061342b826133ea565b602082019050919050565b6000602082019050818103600083015261344f81613413565b9050919050565b7f4d6178206d696e74207065722077616c6c657420657863656564656421000000600082015250565b600061348c601d83612b3a565b915061349782613456565b602082019050919050565b600060208201905081810360008301526134bb8161347f565b9050919050565b60006134cd82612bea565b91506134d883612bea565b9250828210156134eb576134ea613365565b5b828203905092915050565b600061350182612bea565b915061350c83612bea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561354557613544613365565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613586601383612b3a565b915061359182613550565b602082019050919050565b600060208201905081810360008301526135b581613579565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006135f2602083612b3a565b91506135fd826135bc565b602082019050919050565b60006020820190508181036000830152613621816135e5565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b600061365e601f83612b3a565b915061366982613628565b602082019050919050565b6000602082019050818103600083015261368d81613651565b9050919050565b600081905092915050565b50565b60006136af600083613694565b91506136ba8261369f565b600082019050919050565b60006136d0826136a2565b9150819050919050565b7f4d617820537570706c792045786365656465642e000000000000000000000000600082015250565b6000613710601483612b3a565b915061371b826136da565b602082019050919050565b6000602082019050818103600083015261373f81613703565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006137d1602f83612b3a565b91506137dc82613775565b604082019050919050565b60006020820190508181036000830152613800816137c4565b9050919050565b600081905092915050565b600061381d82612b2f565b6138278185613807565b9350613837818560208601612b4b565b80840191505092915050565b60008190508160005260206000209050919050565b600081546138658161325c565b61386f8186613807565b9450600182166000811461388a576001811461389b576138ce565b60ff198316865281860193506138ce565b6138a485613843565b60005b838110156138c6578154818901526001820191506020810190506138a7565b838801955050505b50505092915050565b60006138e38286613812565b91506138ef8285613812565b91506138fb8284613858565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613964602683612b3a565b915061396f82613908565b604082019050919050565b6000602082019050818103600083015261399381613957565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006139c18261399a565b6139cb81856139a5565b93506139db818560208601612b4b565b6139e481612b7e565b840191505092915050565b6000608082019050613a046000830187612c7f565b613a116020830186612c7f565b613a1e6040830185612e93565b8181036060830152613a3081846139b6565b905095945050505050565b600081519050613a4a81612aa0565b92915050565b600060208284031215613a6657613a65612a6a565b5b6000613a7484828501613a3b565b91505092915050565b6000613a8882612bea565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613aba57613ab9613365565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613aff82612bea565b9150613b0a83612bea565b925082613b1a57613b19613ac5565b5b828204905092915050565b6000613b3082612bea565b9150613b3b83612bea565b925082613b4b57613b4a613ac5565b5b82820690509291505056fea2646970667358221220921180f5976b942e4cad6ccfa7a1383a6ff2d67a4e1bf092575c987114fee8b264736f6c634300080d0033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5561417561484835547441554c594247584b656a455444536779726743793272556f623141505a443563735a2f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmUaAuaHH5TtAULYBGXKejETDSgyrgCy2rUob1APZD5csZ/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5561417561484835547441554c594247584b656a455444
Arg [3] : 536779726743793272556f623141505a443563735a2f00000000000000000000


Deployed Bytecode Sourcemap

65110:4866:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25769:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31416:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66316:738;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33362:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32910:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67497:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24823:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42627:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68017:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68265:194;;;;;;;;;;;;;:::i;:::-;;67773:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34252:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67917:75;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65305:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65501:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31205:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65543:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26448:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7601:103;;;;;;;;;;;;;:::i;:::-;;67062:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66116:194;;;;;;;;;;;;;:::i;:::-;;68605:712;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6950:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65458:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31585:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65343:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33638:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67618:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34508:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69424:373;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65382:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65418:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34017:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65283:17;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7859:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67415:76;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25769:615;25854:4;26169:10;26154:25;;:11;:25;;;;:102;;;;26246:10;26231:25;;:11;:25;;;;26154:102;:179;;;;26323:10;26308:25;;:11;:25;;;;26154:179;26134:199;;25769:615;;;:::o;31416:100::-;31470:13;31503:5;31496:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31416:100;:::o;66316:738::-;66394:14;66411:13;:11;:13::i;:::-;66394:30;;66468:4;;;;;;;;;;;66460:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;66525:1;66511:11;:15;:52;;;;;66545:18;;66530:11;:33;;66511:52;66503:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;66627:9;;66612:11;66603:6;:20;;;;:::i;:::-;:33;;66595:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;66715:17;;66700:11;66676:21;66686:10;66676:9;:21::i;:::-;:35;;;;:::i;:::-;:56;;66668:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;66775:21;66803;66813:10;66803:9;:21::i;:::-;66799:1;:25;;;;:::i;:::-;66775:49;;66850:1;66834:13;:17;66831:63;;;66885:1;66869:17;;66831:63;66946:13;66932:11;:27;;;;:::i;:::-;66923:5;;:37;;;;:::i;:::-;66910:9;:50;;66902:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;67012:36;67022:12;:10;:12::i;:::-;67036:11;67012:9;:36::i;:::-;66366:688;;66316:738;:::o;33362:204::-;33430:7;33455:16;33463:7;33455;:16::i;:::-;33450:64;;33480:34;;;;;;;;;;;;;;33450:64;33534:15;:24;33550:7;33534:24;;;;;;;;;;;;;;;;;;;;;33527:31;;33362:204;;;:::o;32910:386::-;32983:13;32999:16;33007:7;32999;:16::i;:::-;32983:32;;33055:5;33032:28;;:19;:17;:19::i;:::-;:28;;;33028:175;;33080:44;33097:5;33104:19;:17;:19::i;:::-;33080:16;:44::i;:::-;33075:128;;33152:35;;;;;;;;;;;;;;33075:128;33028:175;33242:2;33215:15;:24;33231:7;33215:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33280:7;33276:2;33260:28;;33269:5;33260:28;;;;;;;;;;;;32972:324;32910:386;;:::o;67497:100::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67581:10:::1;67569:9;:22;;;;;;;;;;;;:::i;:::-;;67497:100:::0;:::o;24823:315::-;24876:7;25104:15;:13;:15::i;:::-;25089:12;;25073:13;;:28;:46;25066:53;;24823:315;:::o;42627:2800::-;42761:27;42791;42810:7;42791:18;:27::i;:::-;42761:57;;42876:4;42835:45;;42851:19;42835:45;;;42831:86;;42889:28;;;;;;;;;;;;;;42831:86;42931:27;42960:23;42987:28;43007:7;42987:19;:28::i;:::-;42930:85;;;;43115:62;43134:15;43151:4;43157:19;:17;:19::i;:::-;43115:18;:62::i;:::-;43110:174;;43197:43;43214:4;43220:19;:17;:19::i;:::-;43197:16;:43::i;:::-;43192:92;;43249:35;;;;;;;;;;;;;;43192:92;43110:174;43315:1;43301:16;;:2;:16;;;43297:52;;43326:23;;;;;;;;;;;;;;43297:52;43362:43;43384:4;43390:2;43394:7;43403:1;43362:21;:43::i;:::-;43498:15;43495:160;;;43638:1;43617:19;43610:30;43495:160;44033:18;:24;44052:4;44033:24;;;;;;;;;;;;;;;;44031:26;;;;;;;;;;;;44102:18;:22;44121:2;44102:22;;;;;;;;;;;;;;;;44100:24;;;;;;;;;;;44424:145;44461:2;44509:45;44524:4;44530:2;44534:19;44509:14;:45::i;:::-;22051:8;44482:72;44424:18;:145::i;:::-;44395:17;:26;44413:7;44395:26;;;;;;;;;;;:174;;;;44739:1;22051:8;44689:19;:46;:51;44685:626;;44761:19;44793:1;44783:7;:11;44761:33;;44950:1;44916:17;:30;44934:11;44916:30;;;;;;;;;;;;:35;44912:384;;45054:13;;45039:11;:28;45035:242;;45234:19;45201:17;:30;45219:11;45201:30;;;;;;;;;;;:52;;;;45035:242;44912:384;44742:569;44685:626;45358:7;45354:2;45339:27;;45348:4;45339:27;;;;;;;;;;;;45377:42;45398:4;45404:2;45408:7;45417:1;45377:20;:42::i;:::-;42750:2677;;;42627:2800;;;:::o;68017:100::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68099:12:::1;68087:9;:24;;;;68017:100:::0;:::o;68265:194::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1:::1;10828:7;;:19:::0;10820:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1;10961:7;:18;;;;68326:13:::2;68342:21;68326:37;;68376:7;68397;:5;:7::i;:::-;68389:21;;68418:8;68389:42;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68375:56;;;68450:2;68442:11;;;::::0;::::2;;68315:144;;10186:1:::1;11140:7;:22;;;;68265:194::o:0;67773:126::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67875:18:::1;67855:17;:38;;;;67773:126:::0;:::o;34252:185::-;34390:39;34407:4;34413:2;34417:7;34390:39;;;;;;;;;;;;:16;:39::i;:::-;34252:185;;;:::o;67917:75::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67981:5:::1;67973;:13;;;;67917:75:::0;:::o;65305:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65501:37::-;;;;:::o;31205:144::-;31269:7;31312:27;31331:7;31312:18;:27::i;:::-;31289:52;;31205:144;;;:::o;65543:23::-;;;;;;;;;;;;;:::o;26448:224::-;26512:7;26553:1;26536:19;;:5;:19;;;26532:60;;26564:28;;;;;;;;;;;;;;26532:60;21003:13;26610:18;:25;26629:5;26610:25;;;;;;;;;;;;;;;;:54;26603:61;;26448:224;;;:::o;7601:103::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7666:30:::1;7693:1;7666:18;:30::i;:::-;7601:103::o:0;67062:200::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67182:9:::1;;67167:11;67151:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;67143:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;67223:33;67233:9;67244:11;67223:9;:33::i;:::-;67062:200:::0;;:::o;66116:194::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1:::1;10828:7;;:19:::0;10820:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10230:1;10961:7;:18;;;;66224:9:::2;;66206:14;;66190:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:43;;66182:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;66267:37;66277:10;66289:14;;66267:9;:37::i;:::-;10186:1:::1;11140:7;:22;;;;66116:194::o:0;68605:712::-;68666:16;68712:18;68747:16;68757:5;68747:9;:16::i;:::-;68733:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68712:52;;68776:11;68790:14;:12;:14::i;:::-;68776:28;;68815:19;68845:25;68886:9;68881:403;68901:3;68897:1;:7;68881:403;;;68926:31;68960:15;68973:1;68960:12;:15::i;:::-;68926:49;;68994:9;:16;;;68990:65;;;69031:8;;;68990:65;69099:1;69073:28;;:9;:14;;;:28;;;69069:103;;69142:9;:14;;;69122:34;;69069:103;69211:5;69190:26;;:17;:26;;;69186:87;;69256:1;69237;69239:13;;;;;;69237:16;;;;;;;;:::i;:::-;;;;;;;:20;;;;;69186:87;68911:373;68881:403;68906:3;;;;;;;68881:403;;;;69301:1;69294:8;;;;;;68605:712;;;:::o;6950:87::-;6996:7;7023:6;;;;;;;;;;;7016:13;;6950:87;:::o;65458:38::-;;;;:::o;31585:104::-;31641:13;31674:7;31667:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31585:104;:::o;65343:34::-;;;;:::o;33638:308::-;33749:19;:17;:19::i;:::-;33737:31;;:8;:31;;;33733:61;;33777:17;;;;;;;;;;;;;;33733:61;33859:8;33807:18;:39;33826:19;:17;:19::i;:::-;33807:39;;;;;;;;;;;;;;;:49;33847:8;33807:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;33919:8;33883:55;;33898:19;:17;:19::i;:::-;33883:55;;;33929:8;33883:55;;;;;;:::i;:::-;;;;;;;;33638:308;;:::o;67618:130::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67723:19:::1;67702:18;:40;;;;67618:130:::0;:::o;34508:399::-;34675:31;34688:4;34694:2;34698:7;34675:12;:31::i;:::-;34739:1;34721:2;:14;;;:19;34717:183;;34760:56;34791:4;34797:2;34801:7;34810:5;34760:30;:56::i;:::-;34755:145;;34844:40;;;;;;;;;;;;;;34755:145;34717:183;34508:399;;;;:::o;69424:373::-;69498:13;69528:17;69536:8;69528:7;:17::i;:::-;69520:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;69606:28;69637:10;:8;:10::i;:::-;69606:41;;69692:1;69667:14;69661:28;:32;:130;;;;;;;;;;;;;;;;;69729:14;69745:19;:8;:17;:19::i;:::-;69766:9;69712:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;69661:130;69654:137;;;69424:373;;;:::o;65382:31::-;;;;:::o;65418:35::-;;;;:::o;34017:164::-;34114:4;34138:18;:25;34157:5;34138:25;;;;;;;;;;;;;;;:35;34164:8;34138:35;;;;;;;;;;;;;;;;;;;;;;;;;34131:42;;34017:164;;;;:::o;65283:17::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7859:201::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7968:1:::1;7948:22;;:8;:22;;::::0;7940:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;8024:28;8043:8;8024:18;:28::i;:::-;7859:201:::0;:::o;67415:76::-;7181:12;:10;:12::i;:::-;7170:23;;:7;:5;:7::i;:::-;:23;;;7162:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67481:4:::1;67475:3;:10;;;;;;;;;;;;:::i;:::-;;67415:76:::0;:::o;5674:98::-;5727:7;5754:10;5747:17;;5674:98;:::o;35519:104::-;35588:27;35598:2;35602:8;35588:27;;;;;;;;;;;;:9;:27::i;:::-;35519:104;;:::o;35162:273::-;35219:4;35275:7;35256:15;:13;:15::i;:::-;:26;;:66;;;;;35309:13;;35299:7;:23;35256:66;:152;;;;;35407:1;21773:8;35360:17;:26;35378:7;35360:26;;;;;;;;;;;;:43;:48;35256:152;35236:172;;35162:273;;;:::o;53723:105::-;53783:7;53810:10;53803:17;;53723:105;:::o;69323:95::-;69388:7;69323:95;:::o;28122:1129::-;28189:7;28209:12;28224:7;28209:22;;28292:4;28273:15;:13;:15::i;:::-;:23;28269:915;;28326:13;;28319:4;:20;28315:869;;;28364:14;28381:17;:23;28399:4;28381:23;;;;;;;;;;;;28364:40;;28497:1;21773:8;28470:6;:23;:28;28466:699;;28989:113;29006:1;28996:6;:11;28989:113;;29049:17;:25;29067:6;;;;;;;29049:25;;;;;;;;;;;;29040:34;;28989:113;;;29135:6;29128:13;;;;;;28466:699;28341:843;28315:869;28269:915;29212:31;;;;;;;;;;;;;;28122:1129;;;;:::o;40963:652::-;41058:27;41087:23;41128:53;41184:15;41128:71;;41370:7;41364:4;41357:21;41405:22;41399:4;41392:36;41481:4;41475;41465:21;41442:44;;41577:19;41571:26;41552:45;;41308:300;40963:652;;;:::o;41728:645::-;41870:11;42032:15;42026:4;42022:26;42014:34;;42191:15;42180:9;42176:31;42163:44;;42338:15;42327:9;42324:30;42317:4;42306:9;42303:19;42300:55;42290:65;;41728:645;;;;;:::o;52556:159::-;;;;;:::o;50868:309::-;51003:7;51023:16;22174:3;51049:19;:40;;51023:67;;22174:3;51116:31;51127:4;51133:2;51137:9;51116:10;:31::i;:::-;51108:40;;:61;;51101:68;;;50868:309;;;;;:::o;30696:447::-;30776:14;30944:15;30937:5;30933:27;30924:36;;31118:5;31104:11;31080:22;31076:40;31073:51;31066:5;31063:62;31053:72;;30696:447;;;;:::o;53374:158::-;;;;;:::o;8220:191::-;8294:16;8313:6;;;;;;;;;;;8294:25;;8339:8;8330:6;;:17;;;;;;;;;;;;;;;;;;8394:8;8363:40;;8384:8;8363:40;;;;;;;;;;;;8283:128;8220:191;:::o;24518:95::-;24565:7;24592:13;;24585:20;;24518:95;:::o;29799:153::-;29859:21;;:::i;:::-;29900:44;29919:17;:24;29937:5;29919:24;;;;;;;;;;;;29900:18;:44::i;:::-;29893:51;;29799:153;;;:::o;49378:716::-;49541:4;49587:2;49562:45;;;49608:19;:17;:19::i;:::-;49629:4;49635:7;49644:5;49562:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;49558:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49862:1;49845:6;:13;:18;49841:235;;49891:40;;;;;;;;;;;;;;49841:235;50034:6;50028:13;50019:6;50015:2;50011:15;50004:38;49558:529;49731:54;;;49721:64;;;:6;:64;;;;49714:71;;;49378:716;;;;;;:::o;69803:98::-;69863:13;69892:3;69885:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69803:98;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;36039:681::-;36162:19;36168:2;36172:8;36162:5;:19::i;:::-;36241:1;36223:2;:14;;;:19;36219:483;;36263:11;36277:13;;36263:27;;36309:13;36331:8;36325:3;:14;36309:30;;36358:233;36389:62;36428:1;36432:2;36436:7;;;;;;36445:5;36389:30;:62::i;:::-;36384:167;;36487:40;;;;;;;;;;;;;;36384:167;36586:3;36578:5;:11;36358:233;;36673:3;36656:13;;:20;36652:34;;36678:8;;;36652:34;36244:458;;36219:483;36039:681;;;:::o;51753:147::-;51890:6;51753:147;;;;;:::o;29345:363::-;29411:31;;:::i;:::-;29488:6;29455:9;:14;;:41;;;;;;;;;;;21657:3;29541:6;:32;;29507:9;:24;;:67;;;;;;;;;;;29631:1;21773:8;29604:6;:23;:28;;29585:9;:16;;:47;;;;;;;;;;;22174:3;29672:6;:27;;29643:9;:19;;:57;;;;;;;;;;;29345:363;;;:::o;36993:1529::-;37058:20;37081:13;;37058:36;;37123:1;37109:16;;:2;:16;;;37105:48;;37134:19;;;;;;;;;;;;;;37105:48;37180:1;37168:8;:13;37164:44;;37190:18;;;;;;;;;;;;;;37164:44;37221:61;37251:1;37255:2;37259:12;37273:8;37221:21;:61::i;:::-;37764:1;21140:2;37735:1;:25;;37734:31;37722:8;:44;37696:18;:22;37715:2;37696:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;38043:139;38080:2;38134:33;38157:1;38161:2;38165:1;38134:14;:33::i;:::-;38101:30;38122:8;38101:20;:30::i;:::-;:66;38043:18;:139::i;:::-;38009:17;:31;38027:12;38009:31;;;;;;;;;;;:173;;;;38199:15;38217:12;38199:30;;38244:11;38273:8;38258:12;:23;38244:37;;38296:101;38348:9;;;;;;38344:2;38323:35;;38340:1;38323:35;;;;;;;;;;;;38392:3;38382:7;:13;38296:101;;38429:3;38413:13;:19;;;;37470:974;;38454:60;38483:1;38487:2;38491:12;38505:8;38454:20;:60::i;:::-;37047:1475;36993:1529;;:::o;32526:322::-;32596:14;32827:1;32817:8;32814:15;32789:23;32785:45;32775:55;;32526:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::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:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:117::-;5047:1;5044;5037:12;5061:117;5170:1;5167;5160:12;5184:180;5232:77;5229:1;5222:88;5329:4;5326:1;5319:15;5353:4;5350:1;5343:15;5370:281;5453:27;5475:4;5453:27;:::i;:::-;5445:6;5441:40;5583:6;5571:10;5568:22;5547:18;5535:10;5532:34;5529:62;5526:88;;;5594:18;;:::i;:::-;5526:88;5634:10;5630:2;5623:22;5413:238;5370:281;;:::o;5657:129::-;5691:6;5718:20;;:::i;:::-;5708:30;;5747:33;5775:4;5767:6;5747:33;:::i;:::-;5657:129;;;:::o;5792:308::-;5854:4;5944:18;5936:6;5933:30;5930:56;;;5966:18;;:::i;:::-;5930:56;6004:29;6026:6;6004:29;:::i;:::-;5996:37;;6088:4;6082;6078:15;6070:23;;5792:308;;;:::o;6106:154::-;6190:6;6185:3;6180;6167:30;6252:1;6243:6;6238:3;6234:16;6227:27;6106:154;;;:::o;6266:412::-;6344:5;6369:66;6385:49;6427:6;6385:49;:::i;:::-;6369:66;:::i;:::-;6360:75;;6458:6;6451:5;6444:21;6496:4;6489:5;6485:16;6534:3;6525:6;6520:3;6516:16;6513:25;6510:112;;;6541:79;;:::i;:::-;6510:112;6631:41;6665:6;6660:3;6655;6631:41;:::i;:::-;6350:328;6266:412;;;;;:::o;6698:340::-;6754:5;6803:3;6796:4;6788:6;6784:17;6780:27;6770:122;;6811:79;;:::i;:::-;6770:122;6928:6;6915:20;6953:79;7028:3;7020:6;7013:4;7005:6;7001:17;6953:79;:::i;:::-;6944:88;;6760:278;6698:340;;;;:::o;7044:509::-;7113:6;7162:2;7150:9;7141:7;7137:23;7133:32;7130:119;;;7168:79;;:::i;:::-;7130:119;7316:1;7305:9;7301:17;7288:31;7346:18;7338:6;7335:30;7332:117;;;7368:79;;:::i;:::-;7332:117;7473:63;7528:7;7519:6;7508:9;7504:22;7473:63;:::i;:::-;7463:73;;7259:287;7044:509;;;;:::o;7559:118::-;7646:24;7664:5;7646:24;:::i;:::-;7641:3;7634:37;7559:118;;:::o;7683:222::-;7776:4;7814:2;7803:9;7799:18;7791:26;;7827:71;7895:1;7884:9;7880:17;7871:6;7827:71;:::i;:::-;7683:222;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:474::-;8939:6;8947;8996:2;8984:9;8975:7;8971:23;8967:32;8964:119;;;9002:79;;:::i;:::-;8964:119;9122:1;9147:53;9192:7;9183:6;9172:9;9168:22;9147:53;:::i;:::-;9137:63;;9093:117;9249:2;9275:53;9320:7;9311:6;9300:9;9296:22;9275:53;:::i;:::-;9265:63;;9220:118;8871:474;;;;;:::o;9351:114::-;9418:6;9452:5;9446:12;9436:22;;9351:114;;;:::o;9471:184::-;9570:11;9604:6;9599:3;9592:19;9644:4;9639:3;9635:14;9620:29;;9471:184;;;;:::o;9661:132::-;9728:4;9751:3;9743:11;;9781:4;9776:3;9772:14;9764:22;;9661:132;;;:::o;9799:108::-;9876:24;9894:5;9876:24;:::i;:::-;9871:3;9864:37;9799:108;;:::o;9913:179::-;9982:10;10003:46;10045:3;10037:6;10003:46;:::i;:::-;10081:4;10076:3;10072:14;10058:28;;9913:179;;;;:::o;10098:113::-;10168:4;10200;10195:3;10191:14;10183:22;;10098:113;;;:::o;10247:732::-;10366:3;10395:54;10443:5;10395:54;:::i;:::-;10465:86;10544:6;10539:3;10465:86;:::i;:::-;10458:93;;10575:56;10625:5;10575:56;:::i;:::-;10654:7;10685:1;10670:284;10695:6;10692:1;10689:13;10670:284;;;10771:6;10765:13;10798:63;10857:3;10842:13;10798:63;:::i;:::-;10791:70;;10884:60;10937:6;10884:60;:::i;:::-;10874:70;;10730:224;10717:1;10714;10710:9;10705:14;;10670:284;;;10674:14;10970:3;10963:10;;10371:608;;;10247:732;;;;:::o;10985:373::-;11128:4;11166:2;11155:9;11151:18;11143:26;;11215:9;11209:4;11205:20;11201:1;11190:9;11186:17;11179:47;11243:108;11346:4;11337:6;11243:108;:::i;:::-;11235:116;;10985:373;;;;:::o;11364:116::-;11434:21;11449:5;11434:21;:::i;:::-;11427:5;11424:32;11414:60;;11470:1;11467;11460:12;11414:60;11364:116;:::o;11486:133::-;11529:5;11567:6;11554:20;11545:29;;11583:30;11607:5;11583:30;:::i;:::-;11486:133;;;;:::o;11625:468::-;11690:6;11698;11747:2;11735:9;11726:7;11722:23;11718:32;11715:119;;;11753:79;;:::i;:::-;11715:119;11873:1;11898:53;11943:7;11934:6;11923:9;11919:22;11898:53;:::i;:::-;11888:63;;11844:117;12000:2;12026:50;12068:7;12059:6;12048:9;12044:22;12026:50;:::i;:::-;12016:60;;11971:115;11625:468;;;;;:::o;12099:307::-;12160:4;12250:18;12242:6;12239:30;12236:56;;;12272:18;;:::i;:::-;12236:56;12310:29;12332:6;12310:29;:::i;:::-;12302:37;;12394:4;12388;12384:15;12376:23;;12099:307;;;:::o;12412:410::-;12489:5;12514:65;12530:48;12571:6;12530:48;:::i;:::-;12514:65;:::i;:::-;12505:74;;12602:6;12595:5;12588:21;12640:4;12633:5;12629:16;12678:3;12669:6;12664:3;12660:16;12657:25;12654:112;;;12685:79;;:::i;:::-;12654:112;12775:41;12809:6;12804:3;12799;12775:41;:::i;:::-;12495:327;12412:410;;;;;:::o;12841:338::-;12896:5;12945:3;12938:4;12930:6;12926:17;12922:27;12912:122;;12953:79;;:::i;:::-;12912:122;13070:6;13057:20;13095:78;13169:3;13161:6;13154:4;13146:6;13142:17;13095:78;:::i;:::-;13086:87;;12902:277;12841:338;;;;:::o;13185:943::-;13280:6;13288;13296;13304;13353:3;13341:9;13332:7;13328:23;13324:33;13321:120;;;13360:79;;:::i;:::-;13321:120;13480:1;13505:53;13550:7;13541:6;13530:9;13526:22;13505:53;:::i;:::-;13495:63;;13451:117;13607:2;13633:53;13678:7;13669:6;13658:9;13654:22;13633:53;:::i;:::-;13623:63;;13578:118;13735:2;13761:53;13806:7;13797:6;13786:9;13782:22;13761:53;:::i;:::-;13751:63;;13706:118;13891:2;13880:9;13876:18;13863:32;13922:18;13914:6;13911:30;13908:117;;;13944:79;;:::i;:::-;13908:117;14049:62;14103:7;14094:6;14083:9;14079:22;14049:62;:::i;:::-;14039:72;;13834:287;13185:943;;;;;;;:::o;14134:474::-;14202:6;14210;14259:2;14247:9;14238:7;14234:23;14230:32;14227:119;;;14265:79;;:::i;:::-;14227:119;14385:1;14410:53;14455:7;14446:6;14435:9;14431:22;14410:53;:::i;:::-;14400:63;;14356:117;14512:2;14538:53;14583:7;14574:6;14563:9;14559:22;14538:53;:::i;:::-;14528:63;;14483:118;14134:474;;;;;:::o;14614:180::-;14662:77;14659:1;14652:88;14759:4;14756:1;14749:15;14783:4;14780:1;14773:15;14800:320;14844:6;14881:1;14875:4;14871:12;14861:22;;14928:1;14922:4;14918:12;14949:18;14939:81;;15005:4;14997:6;14993:17;14983:27;;14939:81;15067:2;15059:6;15056:14;15036:18;15033:38;15030:84;;15086:18;;:::i;:::-;15030:84;14851:269;14800:320;;;:::o;15126:169::-;15266:21;15262:1;15254:6;15250:14;15243:45;15126:169;:::o;15301:366::-;15443:3;15464:67;15528:2;15523:3;15464:67;:::i;:::-;15457:74;;15540:93;15629:3;15540:93;:::i;:::-;15658:2;15653:3;15649:12;15642:19;;15301:366;;;:::o;15673:419::-;15839:4;15877:2;15866:9;15862:18;15854:26;;15926:9;15920:4;15916:20;15912:1;15901:9;15897:17;15890:47;15954:131;16080:4;15954:131;:::i;:::-;15946:139;;15673:419;;;:::o;16098:170::-;16238:22;16234:1;16226:6;16222:14;16215:46;16098:170;:::o;16274:366::-;16416:3;16437:67;16501:2;16496:3;16437:67;:::i;:::-;16430:74;;16513:93;16602:3;16513:93;:::i;:::-;16631:2;16626:3;16622:12;16615:19;;16274:366;;;:::o;16646:419::-;16812:4;16850:2;16839:9;16835:18;16827:26;;16899:9;16893:4;16889:20;16885:1;16874:9;16870:17;16863:47;16927:131;17053:4;16927:131;:::i;:::-;16919:139;;16646:419;;;:::o;17071:180::-;17119:77;17116:1;17109:88;17216:4;17213:1;17206:15;17240:4;17237:1;17230:15;17257:305;17297:3;17316:20;17334:1;17316:20;:::i;:::-;17311:25;;17350:20;17368:1;17350:20;:::i;:::-;17345:25;;17504:1;17436:66;17432:74;17429:1;17426:81;17423:107;;;17510:18;;:::i;:::-;17423:107;17554:1;17551;17547:9;17540:16;;17257:305;;;;:::o;17568:170::-;17708:22;17704:1;17696:6;17692:14;17685:46;17568:170;:::o;17744:366::-;17886:3;17907:67;17971:2;17966:3;17907:67;:::i;:::-;17900:74;;17983:93;18072:3;17983:93;:::i;:::-;18101:2;18096:3;18092:12;18085:19;;17744:366;;;:::o;18116:419::-;18282:4;18320:2;18309:9;18305:18;18297:26;;18369:9;18363:4;18359:20;18355:1;18344:9;18340:17;18333:47;18397:131;18523:4;18397:131;:::i;:::-;18389:139;;18116:419;;;:::o;18541:179::-;18681:31;18677:1;18669:6;18665:14;18658:55;18541:179;:::o;18726:366::-;18868:3;18889:67;18953:2;18948:3;18889:67;:::i;:::-;18882:74;;18965:93;19054:3;18965:93;:::i;:::-;19083:2;19078:3;19074:12;19067:19;;18726:366;;;:::o;19098:419::-;19264:4;19302:2;19291:9;19287:18;19279:26;;19351:9;19345:4;19341:20;19337:1;19326:9;19322:17;19315:47;19379:131;19505:4;19379:131;:::i;:::-;19371:139;;19098:419;;;:::o;19523:191::-;19563:4;19583:20;19601:1;19583:20;:::i;:::-;19578:25;;19617:20;19635:1;19617:20;:::i;:::-;19612:25;;19656:1;19653;19650:8;19647:34;;;19661:18;;:::i;:::-;19647:34;19706:1;19703;19699:9;19691:17;;19523:191;;;;:::o;19720:348::-;19760:7;19783:20;19801:1;19783:20;:::i;:::-;19778:25;;19817:20;19835:1;19817:20;:::i;:::-;19812:25;;20005:1;19937:66;19933:74;19930:1;19927:81;19922:1;19915:9;19908:17;19904:105;19901:131;;;20012:18;;:::i;:::-;19901:131;20060:1;20057;20053:9;20042:20;;19720:348;;;;:::o;20074:169::-;20214:21;20210:1;20202:6;20198:14;20191:45;20074:169;:::o;20249:366::-;20391:3;20412:67;20476:2;20471:3;20412:67;:::i;:::-;20405:74;;20488:93;20577:3;20488:93;:::i;:::-;20606:2;20601:3;20597:12;20590:19;;20249:366;;;:::o;20621:419::-;20787:4;20825:2;20814:9;20810:18;20802:26;;20874:9;20868:4;20864:20;20860:1;20849:9;20845:17;20838:47;20902:131;21028:4;20902:131;:::i;:::-;20894:139;;20621:419;;;:::o;21046:182::-;21186:34;21182:1;21174:6;21170:14;21163:58;21046:182;:::o;21234:366::-;21376:3;21397:67;21461:2;21456:3;21397:67;:::i;:::-;21390:74;;21473:93;21562:3;21473:93;:::i;:::-;21591:2;21586:3;21582:12;21575:19;;21234:366;;;:::o;21606:419::-;21772:4;21810:2;21799:9;21795:18;21787:26;;21859:9;21853:4;21849:20;21845:1;21834:9;21830:17;21823:47;21887:131;22013:4;21887:131;:::i;:::-;21879:139;;21606:419;;;:::o;22031:181::-;22171:33;22167:1;22159:6;22155:14;22148:57;22031:181;:::o;22218:366::-;22360:3;22381:67;22445:2;22440:3;22381:67;:::i;:::-;22374:74;;22457:93;22546:3;22457:93;:::i;:::-;22575:2;22570:3;22566:12;22559:19;;22218:366;;;:::o;22590:419::-;22756:4;22794:2;22783:9;22779:18;22771:26;;22843:9;22837:4;22833:20;22829:1;22818:9;22814:17;22807:47;22871:131;22997:4;22871:131;:::i;:::-;22863:139;;22590:419;;;:::o;23015:147::-;23116:11;23153:3;23138:18;;23015:147;;;;:::o;23168:114::-;;:::o;23288:398::-;23447:3;23468:83;23549:1;23544:3;23468:83;:::i;:::-;23461:90;;23560:93;23649:3;23560:93;:::i;:::-;23678:1;23673:3;23669:11;23662:18;;23288:398;;;:::o;23692:379::-;23876:3;23898:147;24041:3;23898:147;:::i;:::-;23891:154;;24062:3;24055:10;;23692:379;;;:::o;24077:170::-;24217:22;24213:1;24205:6;24201:14;24194:46;24077:170;:::o;24253:366::-;24395:3;24416:67;24480:2;24475:3;24416:67;:::i;:::-;24409:74;;24492:93;24581:3;24492:93;:::i;:::-;24610:2;24605:3;24601:12;24594:19;;24253:366;;;:::o;24625:419::-;24791:4;24829:2;24818:9;24814:18;24806:26;;24878:9;24872:4;24868:20;24864:1;24853:9;24849:17;24842:47;24906:131;25032:4;24906:131;:::i;:::-;24898:139;;24625:419;;;:::o;25050:180::-;25098:77;25095:1;25088:88;25195:4;25192:1;25185:15;25219:4;25216:1;25209:15;25236:234;25376:34;25372:1;25364:6;25360:14;25353:58;25445:17;25440:2;25432:6;25428:15;25421:42;25236:234;:::o;25476:366::-;25618:3;25639:67;25703:2;25698:3;25639:67;:::i;:::-;25632:74;;25715:93;25804:3;25715:93;:::i;:::-;25833:2;25828:3;25824:12;25817:19;;25476:366;;;:::o;25848:419::-;26014:4;26052:2;26041:9;26037:18;26029:26;;26101:9;26095:4;26091:20;26087:1;26076:9;26072:17;26065:47;26129:131;26255:4;26129:131;:::i;:::-;26121:139;;25848:419;;;:::o;26273:148::-;26375:11;26412:3;26397:18;;26273:148;;;;:::o;26427:377::-;26533:3;26561:39;26594:5;26561:39;:::i;:::-;26616:89;26698:6;26693:3;26616:89;:::i;:::-;26609:96;;26714:52;26759:6;26754:3;26747:4;26740:5;26736:16;26714:52;:::i;:::-;26791:6;26786:3;26782:16;26775:23;;26537:267;26427:377;;;;:::o;26810:141::-;26859:4;26882:3;26874:11;;26905:3;26902:1;26895:14;26939:4;26936:1;26926:18;26918:26;;26810:141;;;:::o;26981:845::-;27084:3;27121:5;27115:12;27150:36;27176:9;27150:36;:::i;:::-;27202:89;27284:6;27279:3;27202:89;:::i;:::-;27195:96;;27322:1;27311:9;27307:17;27338:1;27333:137;;;;27484:1;27479:341;;;;27300:520;;27333:137;27417:4;27413:9;27402;27398:25;27393:3;27386:38;27453:6;27448:3;27444:16;27437:23;;27333:137;;27479:341;27546:38;27578:5;27546:38;:::i;:::-;27606:1;27620:154;27634:6;27631:1;27628:13;27620:154;;;27708:7;27702:14;27698:1;27693:3;27689:11;27682:35;27758:1;27749:7;27745:15;27734:26;;27656:4;27653:1;27649:12;27644:17;;27620:154;;;27803:6;27798:3;27794:16;27787:23;;27486:334;;27300:520;;27088:738;;26981:845;;;;:::o;27832:589::-;28057:3;28079:95;28170:3;28161:6;28079:95;:::i;:::-;28072:102;;28191:95;28282:3;28273:6;28191:95;:::i;:::-;28184:102;;28303:92;28391:3;28382:6;28303:92;:::i;:::-;28296:99;;28412:3;28405:10;;27832:589;;;;;;:::o;28427:225::-;28567:34;28563:1;28555:6;28551:14;28544:58;28636:8;28631:2;28623:6;28619:15;28612:33;28427:225;:::o;28658:366::-;28800:3;28821:67;28885:2;28880:3;28821:67;:::i;:::-;28814:74;;28897:93;28986:3;28897:93;:::i;:::-;29015:2;29010:3;29006:12;28999:19;;28658:366;;;:::o;29030:419::-;29196:4;29234:2;29223:9;29219:18;29211:26;;29283:9;29277:4;29273:20;29269:1;29258:9;29254:17;29247:47;29311:131;29437:4;29311:131;:::i;:::-;29303:139;;29030:419;;;:::o;29455:98::-;29506:6;29540:5;29534:12;29524:22;;29455:98;;;:::o;29559:168::-;29642:11;29676:6;29671:3;29664:19;29716:4;29711:3;29707:14;29692:29;;29559:168;;;;:::o;29733:360::-;29819:3;29847:38;29879:5;29847:38;:::i;:::-;29901:70;29964:6;29959:3;29901:70;:::i;:::-;29894:77;;29980:52;30025:6;30020:3;30013:4;30006:5;30002:16;29980:52;:::i;:::-;30057:29;30079:6;30057:29;:::i;:::-;30052:3;30048:39;30041:46;;29823:270;29733:360;;;;:::o;30099:640::-;30294:4;30332:3;30321:9;30317:19;30309:27;;30346:71;30414:1;30403:9;30399:17;30390:6;30346:71;:::i;:::-;30427:72;30495:2;30484:9;30480:18;30471:6;30427:72;:::i;:::-;30509;30577:2;30566:9;30562:18;30553:6;30509:72;:::i;:::-;30628:9;30622:4;30618:20;30613:2;30602:9;30598:18;30591:48;30656:76;30727:4;30718:6;30656:76;:::i;:::-;30648:84;;30099:640;;;;;;;:::o;30745:141::-;30801:5;30832:6;30826:13;30817:22;;30848:32;30874:5;30848:32;:::i;:::-;30745:141;;;;:::o;30892:349::-;30961:6;31010:2;30998:9;30989:7;30985:23;30981:32;30978:119;;;31016:79;;:::i;:::-;30978:119;31136:1;31161:63;31216:7;31207:6;31196:9;31192:22;31161:63;:::i;:::-;31151:73;;31107:127;30892:349;;;;:::o;31247:233::-;31286:3;31309:24;31327:5;31309:24;:::i;:::-;31300:33;;31355:66;31348:5;31345:77;31342:103;;31425:18;;:::i;:::-;31342:103;31472:1;31465:5;31461:13;31454:20;;31247:233;;;:::o;31486:180::-;31534:77;31531:1;31524:88;31631:4;31628:1;31621:15;31655:4;31652:1;31645:15;31672:185;31712:1;31729:20;31747:1;31729:20;:::i;:::-;31724:25;;31763:20;31781:1;31763:20;:::i;:::-;31758:25;;31802:1;31792:35;;31807:18;;:::i;:::-;31792:35;31849:1;31846;31842:9;31837:14;;31672:185;;;;:::o;31863:176::-;31895:1;31912:20;31930:1;31912:20;:::i;:::-;31907:25;;31946:20;31964:1;31946:20;:::i;:::-;31941:25;;31985:1;31975:35;;31990:18;;:::i;:::-;31975:35;32031:1;32028;32024:9;32019:14;;31863:176;;;;:::o

Swarm Source

ipfs://921180f5976b942e4cad6ccfa7a1383a6ff2d67a4e1bf092575c987114fee8b2
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.