ETH Price: $2,624.39 (+1.14%)

Token

NFTeesAreNotPFPees (NOTPFP)
 

Overview

Max Total Supply

91 NOTPFP

Holders

13

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
isi77.eth
Balance
1 NOTPFP
0x96Ee4daeA1BBA5fCA92C51CBa5116d5BdA02A716
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:
NFTeesarenotPFPees

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-27
*/

// File: contracts/IMeta.sol



// ____  _____  ________  _________                       _           _______  ________  _______                       
//|_   \|_   _||_   __  ||  _   _  |                     | | ______  |_   __ \|_   __  ||_   __ \                      
//  |   \ | |    | |_ \_||_/ | | \_|.---.  .---.  .--.   | ||______|   | |__) | | |_ \_|  | |__) |.---.  .---.  .--.   
//  | |\ \| |    |  _|       | |   / /__\\/ /__\\( (`\]  | | ______    |  ___/  |  _|     |  ___// /__\\/ /__\\( (`\]  
// _| |_\   |_  _| |_       _| |_  | \__.,| \__., `'.'.  |_||______|  _| |_    _| |_     _| |_   | \__.,| \__., `'.'.  
//|_____|\____||_____|     |_____|  '.__.' '.__.'[\__) ) (_)         |_____|  |_____|   |_____|   '.__.' '.__.'[\__) ) 
                                                                                                                     
//twitter : @NFTsarenotPFPs
//site : nfteesarenotpfpees.xyz

pragma solidity ^0.8.0;

interface IMeta 
{
    function getMetadata(uint256 tokenId) external view returns (string memory);
}
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/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/security/Pausable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory 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.
                // The ASCII index of the '0' character is 48.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contracts/NFTeesarenotPFPees.sol

//SPDX-License-Identifier: MIT
 
// ____  _____  ________  _________                       _           _______  ________  _______                       
//|_   \|_   _||_   __  ||  _   _  |                     | | ______  |_   __ \|_   __  ||_   __ \                      
//  |   \ | |    | |_ \_||_/ | | \_|.---.  .---.  .--.   | ||______|   | |__) | | |_ \_|  | |__) |.---.  .---.  .--.   
//  | |\ \| |    |  _|       | |   / /__\\/ /__\\( (`\]  | | ______    |  ___/  |  _|     |  ___// /__\\/ /__\\( (`\]  
// _| |_\   |_  _| |_       _| |_  | \__.,| \__., `'.'.  |_||______|  _| |_    _| |_     _| |_   | \__.,| \__., `'.'.  
//|_____|\____||_____|     |_____|  '.__.' '.__.'[\__) ) (_)         |_____|  |_____|   |_____|   '.__.' '.__.'[\__) ) 
                                                                                                                     
//twitter : @NFTsarenotPFPs
//site : nfteesarenotpfpees.xyz

pragma solidity ^0.8.0; 






contract NFTeesarenotPFPees is ERC721A, Ownable, Pausable 
{
    using Strings for uint256;
    
    uint256 public totalColSize = 6969;
    mapping(address => uint256) public soloMintList;
    mapping(address => uint256) public fiveMintList;
    mapping(address => uint256) public tenMintList;
    uint256 public walletFreeMintLimit = 1;
    uint256 public walletFiveMintLimit = 5;
    uint256 public walletTenMintLimit = 10;
    address public metadataProvider;
    uint256 private constant SOLOMINT_PRICE = 0 ether; //Buying 1
    uint256 private FIVEMINT_PRICE = 0.01 ether; //Buying 5
    uint256 private TENMINT_PRICE = 0.015 ether; //Buying 10
    string private baseTokenURI;
    bool public providerBasedURI;
    bool public publicMintActive;

    constructor
    ( 
       string memory _name,
       string memory _symbol,
       string memory _baseTokenURI
    ) ERC721A(_name, _symbol) 
    {
        baseTokenURI = _baseTokenURI;
    }

    modifier callerIsUser() 
    {
        require(tx.origin == msg.sender, "Caller is contract");
        _;
    }

    modifier onlyPublicMintActive() {
        require(publicMintActive, "Public Minting is not active");
        _;
    }

    function setMetadataProvider(address _metadataProvider) external onlyOwner {
        metadataProvider = _metadataProvider;
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(_tokenId), "Token not existed");
        require( providerBasedURI ? ( metadataProvider != address(0) ) : ( keccak256(abi.encodePacked(baseTokenURI)) != keccak256(abi.encodePacked("")) ),
            "Invalid metadata provider address"
        );

        return providerBasedURI ? IMeta(metadataProvider).getMetadata(_tokenId) : string(abi.encodePacked(baseTokenURI, _tokenId.toString(),".json"));
    }
    
    
    function setBaseURI(string calldata _baseTokenURI) external onlyOwner 
    {
        baseTokenURI = _baseTokenURI;
    }


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

    function mintOne(uint256 quantity)
        external
        payable
        onlyPublicMintActive
        callerIsUser    
    {
        require(soloMintList[msg.sender] + quantity <= walletFreeMintLimit, "Up to 1 mints allowed per wallet");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        soloMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    function mintFive(uint256 quantity)
        external
        payable
        onlyPublicMintActive
        callerIsUser    
    {   
        require(fiveMintList[msg.sender] + quantity <= walletFiveMintLimit, "Up to 5 mints allowed per wallet");
        require(msg.value >= FIVEMINT_PRICE, "Insufficient funds");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        fiveMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    function mintTen(uint256 quantity)
        external
        payable
        onlyPublicMintActive
        callerIsUser    
    {
        require(tenMintList[msg.sender] + quantity <= walletTenMintLimit, "Up to 10 mints allowed per wallet");
        require(msg.value >= TENMINT_PRICE, "Insufficient funds");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        tenMintList[msg.sender] += quantity;
        _safeMint(msg.sender, quantity);
    }
    
    function teamMint(uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        _safeMint(msg.sender, quantity);
    }

    function airdrop(address toAdd,uint256 quantity)
        external
        payable
        onlyOwner
    {
        require(quantity > 0, "Invalid quantity");
        require(totalSupply() + quantity <= totalColSize, "EXCEED_COL_SIZE");

        _safeMint(toAdd, quantity);
    }

    function toggleProviderBasedURI() 
        external 
        onlyOwner 
    {
        providerBasedURI = !providerBasedURI;
    }

    function togglePublicMint() 
        external 
        onlyOwner 
    {
        publicMintActive = !publicMintActive;
    }

    function changeFiveMintPrice(uint256 _mintPrice) 
        external 
        onlyPublicMintActive
        onlyOwner 
    {
        require(_mintPrice >= 0 ,"Invalid price");
        TENMINT_PRICE = _mintPrice;
    }

    function changeTenMintPrice(uint256 _mintPrice) 
        external 
        onlyPublicMintActive
        onlyOwner 
    {
        require(_mintPrice >= 0 ,"Invalid price");
        TENMINT_PRICE = _mintPrice;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }
    
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal override(ERC721A) whenNotPaused 
    {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
    }

    function changeSupply(uint256 _decreaseAmount) 
        external 
        onlyOwner 
    {
        require(_decreaseAmount > 0 ,"Amount must be greater than 0");
        require(totalSupply() < totalColSize ,"Just sold out" );
        require(totalColSize - _decreaseAmount >= totalSupply() ,"Insufficient amount" );
        totalColSize -= _decreaseAmount;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"toAdd","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"airdrop","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":"_mintPrice","type":"uint256"}],"name":"changeFiveMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_decreaseAmount","type":"uint256"}],"name":"changeSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeTenMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"fiveMintList","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":"metadataProvider","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintFive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintTen","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"providerBasedURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_metadataProvider","type":"address"}],"name":"setMetadataProvider","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"soloMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"tenMintList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleProviderBasedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalColSize","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"walletFiveMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletFreeMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"walletTenMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052611b396009556001600d556005600e55600a600f55662386f26fc1000060115566354a6ba7a180006012553480156200003c57600080fd5b50604051620046bf380380620046bf833981810160405281019062000062919062000310565b828281600290805190602001906200007c929190620001e2565b50806003908051906020019062000095929190620001e2565b50620000a66200010b60201b60201c565b6000819055505050620000ce620000c26200011460201b60201c565b6200011c60201b60201c565b6000600860146101000a81548160ff021916908315150217905550806013908051906020019062000101929190620001e2565b505050506200054d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001f0906200045e565b90600052602060002090601f01602090048101928262000214576000855562000260565b82601f106200022f57805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200025f57825182559160200191906001019062000242565b5b5090506200026f919062000273565b5090565b5b808211156200028e57600081600090555060010162000274565b5090565b6000620002a9620002a384620003f2565b620003c9565b905082815260208101848484011115620002c857620002c76200052d565b5b620002d584828562000428565b509392505050565b600082601f830112620002f557620002f462000528565b5b81516200030784826020860162000292565b91505092915050565b6000806000606084860312156200032c576200032b62000537565b5b600084015167ffffffffffffffff8111156200034d576200034c62000532565b5b6200035b86828701620002dd565b935050602084015167ffffffffffffffff8111156200037f576200037e62000532565b5b6200038d86828701620002dd565b925050604084015167ffffffffffffffff811115620003b157620003b062000532565b5b620003bf86828701620002dd565b9150509250925092565b6000620003d5620003e8565b9050620003e3828262000494565b919050565b6000604051905090565b600067ffffffffffffffff82111562000410576200040f620004f9565b5b6200041b826200053c565b9050602081019050919050565b60005b83811015620004485780820151818401526020810190506200042b565b8381111562000458576000848401525b50505050565b600060028204905060018216806200047757607f821691505b602082108114156200048e576200048d620004ca565b5b50919050565b6200049f826200053c565b810181811067ffffffffffffffff82111715620004c157620004c0620004f9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b614162806200055d6000396000f3fe6080604052600436106102505760003560e01c80637bb232ad11610139578063b67c25a3116100b6578063cb3cb5c41161007a578063cb3cb5c414610819578063d3d72d2a14610835578063d9563fd314610860578063e985e9c51461089d578063f01d5400146108da578063f2fde38b1461091757610250565b8063b67c25a314610732578063b88d4fde1461075d578063c31d4da214610786578063c566fc15146107b1578063c87b56dd146107dc57610250565b80638ed21d6a116100fd5780638ed21d6a1461066157806395d89b41146106785780639fecf62d146106a3578063a22cb465146106cc578063b3bf8a51146106f557610250565b80637bb232ad146105bc5780638456cb59146105e7578063893d298d146105fe5780638ba4cc3c1461061a5780638da5cb5b1461063657610250565b80633f4ba83a116101d257806357cae6471161019657806357cae647146104ac5780635c975abb146104d75780636352211e1461050257806364b094021461053f57806370a0823114610568578063715018a6146105a557610250565b80633f4ba83a146104015780634047638d1461041857806340ddf2581461042f57806342842e0e1461045a57806355f804b31461048357610250565b8063095ea7b311610219578063095ea7b31461033f57806318160ddd1461036857806323b872dd146103935780632fbba115146103bc57806339a7919f146103d857610250565b80621c2e6d1461025557806301ffc9a71461027e57806306fdde03146102bb578063081812fc146102e65780630864d0c914610323575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190613177565b610940565b005b34801561028a57600080fd5b506102a560048036038101906102a09190613087565b6109e5565b6040516102b29190613671565b60405180910390f35b3480156102c757600080fd5b506102d0610a77565b6040516102dd919061368c565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190613177565b610b09565b60405161031a919061360a565b60405180910390f35b61033d60048036038101906103389190613177565b610b88565b005b34801561034b57600080fd5b5061036660048036038101906103619190613047565b610dd3565b005b34801561037457600080fd5b5061037d610f17565b60405161038a91906138ee565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612f31565b610f2e565b005b6103d660048036038101906103d19190613177565b611253565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613177565b611302565b005b34801561040d57600080fd5b5061041661140b565b005b34801561042457600080fd5b5061042d61141d565b005b34801561043b57600080fd5b50610444611451565b60405161045191906138ee565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612f31565b611457565b005b34801561048f57600080fd5b506104aa60048036038101906104a591906130e1565b611477565b005b3480156104b857600080fd5b506104c1611495565b6040516104ce91906138ee565b60405180910390f35b3480156104e357600080fd5b506104ec61149b565b6040516104f99190613671565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613177565b6114b2565b604051610536919061360a565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612ec4565b6114c4565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612ec4565b611510565b60405161059c91906138ee565b60405180910390f35b3480156105b157600080fd5b506105ba6115c9565b005b3480156105c857600080fd5b506105d16115dd565b6040516105de91906138ee565b60405180910390f35b3480156105f357600080fd5b506105fc6115e3565b005b61061860048036038101906106139190613177565b6115f5565b005b610634600480360381019061062f9190613047565b611840565b005b34801561064257600080fd5b5061064b6118f0565b604051610658919061360a565b60405180910390f35b34801561066d57600080fd5b5061067661191a565b005b34801561068457600080fd5b5061068d61194e565b60405161069a919061368c565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613177565b6119e0565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613007565b611a85565b005b34801561070157600080fd5b5061071c60048036038101906107179190612ec4565b611bfd565b60405161072991906138ee565b60405180910390f35b34801561073e57600080fd5b50610747611c15565b6040516107549190613671565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612f84565b611c28565b005b34801561079257600080fd5b5061079b611c9b565b6040516107a891906138ee565b60405180910390f35b3480156107bd57600080fd5b506107c6611ca1565b6040516107d39190613671565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613177565b611cb4565b604051610810919061368c565b60405180910390f35b610833600480360381019061082e9190613177565b611ef5565b005b34801561084157600080fd5b5061084a6120fb565b604051610857919061360a565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190612ec4565b612121565b60405161089491906138ee565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190612ef1565b612139565b6040516108d19190613671565b60405180910390f35b3480156108e657600080fd5b5061090160048036038101906108fc9190612ec4565b6121cd565b60405161090e91906138ee565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190612ec4565b6121e5565b005b601460019054906101000a900460ff1661098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906136ae565b60405180910390fd5b610997612269565b60008110156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906138ce565b60405180910390fd5b8060128190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a8690613b59565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290613b59565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b5050505050905090565b6000610b14826122e7565b610b4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601460019054906101000a900460ff16610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906136ae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061382e565b60405180910390fd5b600e5481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9391906139e8565b1115610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061384e565b60405180910390fd5b601154341015610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d109061374e565b60405180910390fd5b60095481610d25610f17565b610d2f91906139e8565b1115610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d67906136ee565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbf91906139e8565b92505081905550610dd03382612346565b50565b6000610dde826114b2565b90508073ffffffffffffffffffffffffffffffffffffffff16610dff612364565b73ffffffffffffffffffffffffffffffffffffffff1614610e6257610e2b81610e26612364565b612139565b610e61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610f2161236c565b6001546000540303905090565b6000610f3982612375565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fac84612443565b91509150610fc28187610fbd612364565b61246a565b61100e57610fd786610fd2612364565b612139565b61100d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611075576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108286868660016124ae565b801561108d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061115b856111378888876124c8565b7c0200000000000000000000000000000000000000000000000000000000176124f0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156111e35760006001850190506000600460008381526020019081526020016000205414156111e15760005481146111e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461124b868686600161251b565b505050505050565b61125b612269565b6000811161129e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611295906137ae565b60405180910390fd5b600954816112aa610f17565b6112b491906139e8565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906136ee565b60405180910390fd5b6112ff3382612346565b50565b61130a612269565b6000811161134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061372e565b60405180910390fd5b600954611358610f17565b10611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906137ce565b60405180910390fd5b6113a0610f17565b816009546113ae9190613a6f565b10156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061386e565b60405180910390fd5b80600960008282546114019190613a6f565b9250508190555050565b611413612269565b61141b612521565b565b611425612269565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b600e5481565b61147283838360405180602001604052806000815250611c28565b505050565b61147f612269565b818160139190611490929190612c82565b505050565b600f5481565b6000600860149054906101000a900460ff16905090565b60006114bd82612375565b9050919050565b6114cc612269565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611578576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115d1612269565b6115db6000612584565b565b60095481565b6115eb612269565b6115f361264a565b565b601460019054906101000a900460ff16611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906136ae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061382e565b60405180910390fd5b600f5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461170091906139e8565b1115611741576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117389061388e565b60405180910390fd5b601254341015611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d9061374e565b60405180910390fd5b60095481611792610f17565b61179c91906139e8565b11156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d4906136ee565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182c91906139e8565b9250508190555061183d3382612346565b50565b611848612269565b6000811161188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906137ae565b60405180910390fd5b60095481611897610f17565b6118a191906139e8565b11156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906136ee565b60405180910390fd5b6118ec8282612346565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611922612269565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b60606003805461195d90613b59565b80601f016020809104026020016040519081016040528092919081815260200182805461198990613b59565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b5050505050905090565b601460019054906101000a900460ff16611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a26906136ae565b60405180910390fd5b611a37612269565b6000811015611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906138ce565b60405180910390fd5b8060128190555050565b611a8d612364565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611aff612364565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bac612364565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf19190613671565b60405180910390a35050565b600a6020528060005260406000206000915090505481565b601460019054906101000a900460ff1681565b611c33848484610f2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9557611c5e848484846126ad565b611c94576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b601460009054906101000a900460ff1681565b6060611cbf826122e7565b611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf59061378e565b60405180910390fd5b601460009054906101000a900460ff16611d6657604051602001611d21906135f5565b604051602081830303815290604052805190602001206013604051602001611d4991906135af565b604051602081830303815290604052805190602001201415611dba565b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df09061380e565b60405180910390fd5b601460009054906101000a900460ff16611e3d576013611e188361280d565b604051602001611e299291906135c6565b604051602081830303815290604052611eee565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a574cea4836040518263ffffffff1660e01b8152600401611e9891906138ee565b60006040518083038186803b158015611eb057600080fd5b505afa158015611ec4573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611eed919061312e565b5b9050919050565b601460019054906101000a900460ff16611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906136ae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa99061382e565b60405180910390fd5b600d5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461200091906139e8565b1115612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906138ae565b60405180910390fd5b6009548161204d610f17565b61205791906139e8565b1115612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906136ee565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e791906139e8565b925050819055506120f83382612346565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090505481565b6121ed612269565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122549061370e565b60405180910390fd5b61226681612584565b50565b61227161296e565b73ffffffffffffffffffffffffffffffffffffffff1661228f6118f0565b73ffffffffffffffffffffffffffffffffffffffff16146122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906137ee565b60405180910390fd5b565b6000816122f261236c565b11158015612301575060005482105b801561233f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b612360828260405180602001604052806000815250612976565b5050565b600033905090565b60006001905090565b6000808290508061238461236c565b1161240c5760005481101561240b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612409575b60008114156123ff5760046000836001900393508381526020019081526020016000205490506123d4565b809250505061243e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b6124b6612a13565b6124c284848484612a5d565b50505050565b60008060e883901c905060e86124df868684612a63565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612529612a6c565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61256d61296e565b60405161257a919061360a565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612652612a13565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861269661296e565b6040516126a3919061360a565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d3612364565b8786866040518563ffffffff1660e01b81526004016126f59493929190613625565b602060405180830381600087803b15801561270f57600080fd5b505af192505050801561274057506040513d601f19601f8201168201806040525081019061273d91906130b4565b60015b6127ba573d8060008114612770576040519150601f19603f3d011682016040523d82523d6000602084013e612775565b606091505b506000815114156127b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612855576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612969565b600082905060005b6000821461288757808061287090613bbc565b915050600a826128809190613a3e565b915061285d565b60008167ffffffffffffffff8111156128a3576128a2613cf2565b5b6040519080825280601f01601f1916602001820160405280156128d55781602001600182028036833780820191505090505b5090505b60008514612962576001826128ee9190613a6f565b9150600a856128fd9190613c05565b603061290991906139e8565b60f81b81838151811061291f5761291e613cc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295b9190613a3e565b94506128d9565b8093505050505b919050565b600033905090565b6129808383612ab5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a0e57600080549050600083820390505b6129c060008683806001019450866126ad565b6129f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129ad578160005414612a0b57600080fd5b50505b505050565b612a1b61149b565b15612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a529061376e565b60405180910390fd5b565b50505050565b60009392505050565b612a7461149b565b612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa906136ce565b60405180910390fd5b565b6000805490506000821415612af6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b0360008483856124ae565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b7a83612b6b60008660006124c8565b612b7485612c72565b176124f0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c1b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612be0565b506000821415612c57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c6d600084838561251b565b505050565b60006001821460e11b9050919050565b828054612c8e90613b59565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957803560ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578235825591602001919060010190612cdb565b5b509050612d049190612d08565b5090565b5b80821115612d21576000816000905550600101612d09565b5090565b6000612d38612d338461392e565b613909565b905082815260208101848484011115612d5457612d53613d30565b5b612d5f848285613b17565b509392505050565b6000612d7a612d758461395f565b613909565b905082815260208101848484011115612d9657612d95613d30565b5b612da1848285613b26565b509392505050565b600081359050612db8816140d0565b92915050565b600081359050612dcd816140e7565b92915050565b600081359050612de2816140fe565b92915050565b600081519050612df7816140fe565b92915050565b600082601f830112612e1257612e11613d26565b5b8135612e22848260208601612d25565b91505092915050565b60008083601f840112612e4157612e40613d26565b5b8235905067ffffffffffffffff811115612e5e57612e5d613d21565b5b602083019150836001820283011115612e7a57612e79613d2b565b5b9250929050565b600082601f830112612e9657612e95613d26565b5b8151612ea6848260208601612d67565b91505092915050565b600081359050612ebe81614115565b92915050565b600060208284031215612eda57612ed9613d3a565b5b6000612ee884828501612da9565b91505092915050565b60008060408385031215612f0857612f07613d3a565b5b6000612f1685828601612da9565b9250506020612f2785828601612da9565b9150509250929050565b600080600060608486031215612f4a57612f49613d3a565b5b6000612f5886828701612da9565b9350506020612f6986828701612da9565b9250506040612f7a86828701612eaf565b9150509250925092565b60008060008060808587031215612f9e57612f9d613d3a565b5b6000612fac87828801612da9565b9450506020612fbd87828801612da9565b9350506040612fce87828801612eaf565b925050606085013567ffffffffffffffff811115612fef57612fee613d35565b5b612ffb87828801612dfd565b91505092959194509250565b6000806040838503121561301e5761301d613d3a565b5b600061302c85828601612da9565b925050602061303d85828601612dbe565b9150509250929050565b6000806040838503121561305e5761305d613d3a565b5b600061306c85828601612da9565b925050602061307d85828601612eaf565b9150509250929050565b60006020828403121561309d5761309c613d3a565b5b60006130ab84828501612dd3565b91505092915050565b6000602082840312156130ca576130c9613d3a565b5b60006130d884828501612de8565b91505092915050565b600080602083850312156130f8576130f7613d3a565b5b600083013567ffffffffffffffff81111561311657613115613d35565b5b61312285828601612e2b565b92509250509250929050565b60006020828403121561314457613143613d3a565b5b600082015167ffffffffffffffff81111561316257613161613d35565b5b61316e84828501612e81565b91505092915050565b60006020828403121561318d5761318c613d3a565b5b600061319b84828501612eaf565b91505092915050565b6131ad81613aa3565b82525050565b6131bc81613ab5565b82525050565b60006131cd826139a5565b6131d781856139bb565b93506131e7818560208601613b26565b6131f081613d3f565b840191505092915050565b6000613206826139b0565b61321081856139cc565b9350613220818560208601613b26565b61322981613d3f565b840191505092915050565b600061323f826139b0565b61324981856139dd565b9350613259818560208601613b26565b80840191505092915050565b6000815461327281613b59565b61327c81866139dd565b9450600182166000811461329757600181146132a8576132db565b60ff198316865281860193506132db565b6132b185613990565b60005b838110156132d3578154818901526001820191506020810190506132b4565b838801955050505b50505092915050565b60006132f1601c836139cc565b91506132fc82613d50565b602082019050919050565b60006133146014836139cc565b915061331f82613d79565b602082019050919050565b6000613337600f836139cc565b915061334282613da2565b602082019050919050565b600061335a6026836139cc565b915061336582613dcb565b604082019050919050565b600061337d601d836139cc565b915061338882613e1a565b602082019050919050565b60006133a06012836139cc565b91506133ab82613e43565b602082019050919050565b60006133c36010836139cc565b91506133ce82613e6c565b602082019050919050565b60006133e66011836139cc565b91506133f182613e95565b602082019050919050565b60006134096010836139cc565b915061341482613ebe565b602082019050919050565b600061342c600d836139cc565b915061343782613ee7565b602082019050919050565b600061344f6005836139dd565b915061345a82613f10565b600582019050919050565b60006134726020836139cc565b915061347d82613f39565b602082019050919050565b60006134956021836139cc565b91506134a082613f62565b604082019050919050565b60006134b86012836139cc565b91506134c382613fb1565b602082019050919050565b60006134db6020836139cc565b91506134e682613fda565b602082019050919050565b60006134fe6013836139cc565b915061350982614003565b602082019050919050565b60006135216000836139dd565b915061352c8261402c565b600082019050919050565b60006135446021836139cc565b915061354f8261402f565b604082019050919050565b60006135676020836139cc565b91506135728261407e565b602082019050919050565b600061358a600d836139cc565b9150613595826140a7565b602082019050919050565b6135a981613b0d565b82525050565b60006135bb8284613265565b915081905092915050565b60006135d28285613265565b91506135de8284613234565b91506135e982613442565b91508190509392505050565b600061360082613514565b9150819050919050565b600060208201905061361f60008301846131a4565b92915050565b600060808201905061363a60008301876131a4565b61364760208301866131a4565b61365460408301856135a0565b818103606083015261366681846131c2565b905095945050505050565b600060208201905061368660008301846131b3565b92915050565b600060208201905081810360008301526136a681846131fb565b905092915050565b600060208201905081810360008301526136c7816132e4565b9050919050565b600060208201905081810360008301526136e781613307565b9050919050565b600060208201905081810360008301526137078161332a565b9050919050565b600060208201905081810360008301526137278161334d565b9050919050565b6000602082019050818103600083015261374781613370565b9050919050565b6000602082019050818103600083015261376781613393565b9050919050565b60006020820190508181036000830152613787816133b6565b9050919050565b600060208201905081810360008301526137a7816133d9565b9050919050565b600060208201905081810360008301526137c7816133fc565b9050919050565b600060208201905081810360008301526137e78161341f565b9050919050565b6000602082019050818103600083015261380781613465565b9050919050565b6000602082019050818103600083015261382781613488565b9050919050565b60006020820190508181036000830152613847816134ab565b9050919050565b60006020820190508181036000830152613867816134ce565b9050919050565b60006020820190508181036000830152613887816134f1565b9050919050565b600060208201905081810360008301526138a781613537565b9050919050565b600060208201905081810360008301526138c78161355a565b9050919050565b600060208201905081810360008301526138e78161357d565b9050919050565b600060208201905061390360008301846135a0565b92915050565b6000613913613924565b905061391f8282613b8b565b919050565b6000604051905090565b600067ffffffffffffffff82111561394957613948613cf2565b5b61395282613d3f565b9050602081019050919050565b600067ffffffffffffffff82111561397a57613979613cf2565b5b61398382613d3f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139f382613b0d565b91506139fe83613b0d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a3357613a32613c36565b5b828201905092915050565b6000613a4982613b0d565b9150613a5483613b0d565b925082613a6457613a63613c65565b5b828204905092915050565b6000613a7a82613b0d565b9150613a8583613b0d565b925082821015613a9857613a97613c36565b5b828203905092915050565b6000613aae82613aed565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b44578082015181840152602081019050613b29565b83811115613b53576000848401525b50505050565b60006002820490506001821680613b7157607f821691505b60208210811415613b8557613b84613c94565b5b50919050565b613b9482613d3f565b810181811067ffffffffffffffff82111715613bb357613bb2613cf2565b5b80604052505050565b6000613bc782613b0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bfa57613bf9613c36565b5b600182019050919050565b6000613c1082613b0d565b9150613c1b83613b0d565b925082613c2b57613c2a613c65565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c6963204d696e74696e67206973206e6f742061637469766500000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f4a75737420736f6c64206f757400000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d657461646174612070726f76696465722061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f557020746f2035206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b50565b7f557020746f203130206d696e747320616c6c6f776564207065722077616c6c6560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f557020746f2031206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b6140d981613aa3565b81146140e457600080fd5b50565b6140f081613ab5565b81146140fb57600080fd5b50565b61410781613ac1565b811461411257600080fd5b50565b61411e81613b0d565b811461412957600080fd5b5056fea264697066735822122032db43a3b7b3ece4d6d9d41251f535b4c08ef6779fb2177de2ffe09dde439e4d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000124e46546565734172654e6f74504650656573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e4f545046500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f73746f726167656170692e666c65656b2e636f2f35343637646635372d376636322d346565362d396637632d3236613238663164633735382d6275636b65742f6e6674736172656e6f74706670735f6d642f000000000000

Deployed Bytecode

0x6080604052600436106102505760003560e01c80637bb232ad11610139578063b67c25a3116100b6578063cb3cb5c41161007a578063cb3cb5c414610819578063d3d72d2a14610835578063d9563fd314610860578063e985e9c51461089d578063f01d5400146108da578063f2fde38b1461091757610250565b8063b67c25a314610732578063b88d4fde1461075d578063c31d4da214610786578063c566fc15146107b1578063c87b56dd146107dc57610250565b80638ed21d6a116100fd5780638ed21d6a1461066157806395d89b41146106785780639fecf62d146106a3578063a22cb465146106cc578063b3bf8a51146106f557610250565b80637bb232ad146105bc5780638456cb59146105e7578063893d298d146105fe5780638ba4cc3c1461061a5780638da5cb5b1461063657610250565b80633f4ba83a116101d257806357cae6471161019657806357cae647146104ac5780635c975abb146104d75780636352211e1461050257806364b094021461053f57806370a0823114610568578063715018a6146105a557610250565b80633f4ba83a146104015780634047638d1461041857806340ddf2581461042f57806342842e0e1461045a57806355f804b31461048357610250565b8063095ea7b311610219578063095ea7b31461033f57806318160ddd1461036857806323b872dd146103935780632fbba115146103bc57806339a7919f146103d857610250565b80621c2e6d1461025557806301ffc9a71461027e57806306fdde03146102bb578063081812fc146102e65780630864d0c914610323575b600080fd5b34801561026157600080fd5b5061027c60048036038101906102779190613177565b610940565b005b34801561028a57600080fd5b506102a560048036038101906102a09190613087565b6109e5565b6040516102b29190613671565b60405180910390f35b3480156102c757600080fd5b506102d0610a77565b6040516102dd919061368c565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190613177565b610b09565b60405161031a919061360a565b60405180910390f35b61033d60048036038101906103389190613177565b610b88565b005b34801561034b57600080fd5b5061036660048036038101906103619190613047565b610dd3565b005b34801561037457600080fd5b5061037d610f17565b60405161038a91906138ee565b60405180910390f35b34801561039f57600080fd5b506103ba60048036038101906103b59190612f31565b610f2e565b005b6103d660048036038101906103d19190613177565b611253565b005b3480156103e457600080fd5b506103ff60048036038101906103fa9190613177565b611302565b005b34801561040d57600080fd5b5061041661140b565b005b34801561042457600080fd5b5061042d61141d565b005b34801561043b57600080fd5b50610444611451565b60405161045191906138ee565b60405180910390f35b34801561046657600080fd5b50610481600480360381019061047c9190612f31565b611457565b005b34801561048f57600080fd5b506104aa60048036038101906104a591906130e1565b611477565b005b3480156104b857600080fd5b506104c1611495565b6040516104ce91906138ee565b60405180910390f35b3480156104e357600080fd5b506104ec61149b565b6040516104f99190613671565b60405180910390f35b34801561050e57600080fd5b5061052960048036038101906105249190613177565b6114b2565b604051610536919061360a565b60405180910390f35b34801561054b57600080fd5b5061056660048036038101906105619190612ec4565b6114c4565b005b34801561057457600080fd5b5061058f600480360381019061058a9190612ec4565b611510565b60405161059c91906138ee565b60405180910390f35b3480156105b157600080fd5b506105ba6115c9565b005b3480156105c857600080fd5b506105d16115dd565b6040516105de91906138ee565b60405180910390f35b3480156105f357600080fd5b506105fc6115e3565b005b61061860048036038101906106139190613177565b6115f5565b005b610634600480360381019061062f9190613047565b611840565b005b34801561064257600080fd5b5061064b6118f0565b604051610658919061360a565b60405180910390f35b34801561066d57600080fd5b5061067661191a565b005b34801561068457600080fd5b5061068d61194e565b60405161069a919061368c565b60405180910390f35b3480156106af57600080fd5b506106ca60048036038101906106c59190613177565b6119e0565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190613007565b611a85565b005b34801561070157600080fd5b5061071c60048036038101906107179190612ec4565b611bfd565b60405161072991906138ee565b60405180910390f35b34801561073e57600080fd5b50610747611c15565b6040516107549190613671565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190612f84565b611c28565b005b34801561079257600080fd5b5061079b611c9b565b6040516107a891906138ee565b60405180910390f35b3480156107bd57600080fd5b506107c6611ca1565b6040516107d39190613671565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190613177565b611cb4565b604051610810919061368c565b60405180910390f35b610833600480360381019061082e9190613177565b611ef5565b005b34801561084157600080fd5b5061084a6120fb565b604051610857919061360a565b60405180910390f35b34801561086c57600080fd5b5061088760048036038101906108829190612ec4565b612121565b60405161089491906138ee565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190612ef1565b612139565b6040516108d19190613671565b60405180910390f35b3480156108e657600080fd5b5061090160048036038101906108fc9190612ec4565b6121cd565b60405161090e91906138ee565b60405180910390f35b34801561092357600080fd5b5061093e60048036038101906109399190612ec4565b6121e5565b005b601460019054906101000a900460ff1661098f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610986906136ae565b60405180910390fd5b610997612269565b60008110156109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906138ce565b60405180910390fd5b8060128190555050565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a4057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a705750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610a8690613b59565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab290613b59565b8015610aff5780601f10610ad457610100808354040283529160200191610aff565b820191906000526020600020905b815481529060010190602001808311610ae257829003601f168201915b5050505050905090565b6000610b14826122e7565b610b4a576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b601460019054906101000a900460ff16610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce906136ae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3c9061382e565b60405180910390fd5b600e5481600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610c9391906139e8565b1115610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb9061384e565b60405180910390fd5b601154341015610d19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d109061374e565b60405180910390fd5b60095481610d25610f17565b610d2f91906139e8565b1115610d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d67906136ee565b60405180910390fd5b80600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610dbf91906139e8565b92505081905550610dd03382612346565b50565b6000610dde826114b2565b90508073ffffffffffffffffffffffffffffffffffffffff16610dff612364565b73ffffffffffffffffffffffffffffffffffffffff1614610e6257610e2b81610e26612364565b612139565b610e61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610f2161236c565b6001546000540303905090565b6000610f3982612375565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fa0576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fac84612443565b91509150610fc28187610fbd612364565b61246a565b61100e57610fd786610fd2612364565b612139565b61100d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611075576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61108286868660016124ae565b801561108d57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001019190508190555061115b856111378888876124c8565b7c0200000000000000000000000000000000000000000000000000000000176124f0565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156111e35760006001850190506000600460008381526020019081526020016000205414156111e15760005481146111e0578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461124b868686600161251b565b505050505050565b61125b612269565b6000811161129e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611295906137ae565b60405180910390fd5b600954816112aa610f17565b6112b491906139e8565b11156112f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ec906136ee565b60405180910390fd5b6112ff3382612346565b50565b61130a612269565b6000811161134d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113449061372e565b60405180910390fd5b600954611358610f17565b10611398576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138f906137ce565b60405180910390fd5b6113a0610f17565b816009546113ae9190613a6f565b10156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e69061386e565b60405180910390fd5b80600960008282546114019190613a6f565b9250508190555050565b611413612269565b61141b612521565b565b611425612269565b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b600e5481565b61147283838360405180602001604052806000815250611c28565b505050565b61147f612269565b818160139190611490929190612c82565b505050565b600f5481565b6000600860149054906101000a900460ff16905090565b60006114bd82612375565b9050919050565b6114cc612269565b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611578576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6115d1612269565b6115db6000612584565b565b60095481565b6115eb612269565b6115f361264a565b565b601460019054906101000a900460ff16611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906136ae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061382e565b60405180910390fd5b600f5481600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461170091906139e8565b1115611741576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117389061388e565b60405180910390fd5b601254341015611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d9061374e565b60405180910390fd5b60095481611792610f17565b61179c91906139e8565b11156117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d4906136ee565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461182c91906139e8565b9250508190555061183d3382612346565b50565b611848612269565b6000811161188b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611882906137ae565b60405180910390fd5b60095481611897610f17565b6118a191906139e8565b11156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906136ee565b60405180910390fd5b6118ec8282612346565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611922612269565b601460009054906101000a900460ff1615601460006101000a81548160ff021916908315150217905550565b60606003805461195d90613b59565b80601f016020809104026020016040519081016040528092919081815260200182805461198990613b59565b80156119d65780601f106119ab576101008083540402835291602001916119d6565b820191906000526020600020905b8154815290600101906020018083116119b957829003601f168201915b5050505050905090565b601460019054906101000a900460ff16611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a26906136ae565b60405180910390fd5b611a37612269565b6000811015611a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a72906138ce565b60405180910390fd5b8060128190555050565b611a8d612364565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611af2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611aff612364565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611bac612364565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bf19190613671565b60405180910390a35050565b600a6020528060005260406000206000915090505481565b601460019054906101000a900460ff1681565b611c33848484610f2e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611c9557611c5e848484846126ad565b611c94576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600d5481565b601460009054906101000a900460ff1681565b6060611cbf826122e7565b611cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf59061378e565b60405180910390fd5b601460009054906101000a900460ff16611d6657604051602001611d21906135f5565b604051602081830303815290604052805190602001206013604051602001611d4991906135af565b604051602081830303815290604052805190602001201415611dba565b600073ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b611df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df09061380e565b60405180910390fd5b601460009054906101000a900460ff16611e3d576013611e188361280d565b604051602001611e299291906135c6565b604051602081830303815290604052611eee565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a574cea4836040518263ffffffff1660e01b8152600401611e9891906138ee565b60006040518083038186803b158015611eb057600080fd5b505afa158015611ec4573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611eed919061312e565b5b9050919050565b601460019054906101000a900460ff16611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906136ae565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa99061382e565b60405180910390fd5b600d5481600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461200091906139e8565b1115612041576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612038906138ae565b60405180910390fd5b6009548161204d610f17565b61205791906139e8565b1115612098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208f906136ee565b60405180910390fd5b80600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e791906139e8565b925050819055506120f83382612346565b50565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915090505481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b6020528060005260406000206000915090505481565b6121ed612269565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561225d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122549061370e565b60405180910390fd5b61226681612584565b50565b61227161296e565b73ffffffffffffffffffffffffffffffffffffffff1661228f6118f0565b73ffffffffffffffffffffffffffffffffffffffff16146122e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122dc906137ee565b60405180910390fd5b565b6000816122f261236c565b11158015612301575060005482105b801561233f575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b612360828260405180602001604052806000815250612976565b5050565b600033905090565b60006001905090565b6000808290508061238461236c565b1161240c5760005481101561240b5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612409575b60008114156123ff5760046000836001900393508381526020019081526020016000205490506123d4565b809250505061243e565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b6124b6612a13565b6124c284848484612a5d565b50505050565b60008060e883901c905060e86124df868684612a63565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b612529612a6c565b6000600860146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61256d61296e565b60405161257a919061360a565b60405180910390a1565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612652612a13565b6001600860146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861269661296e565b6040516126a3919061360a565b60405180910390a1565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026126d3612364565b8786866040518563ffffffff1660e01b81526004016126f59493929190613625565b602060405180830381600087803b15801561270f57600080fd5b505af192505050801561274057506040513d601f19601f8201168201806040525081019061273d91906130b4565b60015b6127ba573d8060008114612770576040519150601f19603f3d011682016040523d82523d6000602084013e612775565b606091505b506000815114156127b2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612855576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612969565b600082905060005b6000821461288757808061287090613bbc565b915050600a826128809190613a3e565b915061285d565b60008167ffffffffffffffff8111156128a3576128a2613cf2565b5b6040519080825280601f01601f1916602001820160405280156128d55781602001600182028036833780820191505090505b5090505b60008514612962576001826128ee9190613a6f565b9150600a856128fd9190613c05565b603061290991906139e8565b60f81b81838151811061291f5761291e613cc3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561295b9190613a3e565b94506128d9565b8093505050505b919050565b600033905090565b6129808383612ab5565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612a0e57600080549050600083820390505b6129c060008683806001019450866126ad565b6129f6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106129ad578160005414612a0b57600080fd5b50505b505050565b612a1b61149b565b15612a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a529061376e565b60405180910390fd5b565b50505050565b60009392505050565b612a7461149b565b612ab3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aaa906136ce565b60405180910390fd5b565b6000805490506000821415612af6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b0360008483856124ae565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612b7a83612b6b60008660006124c8565b612b7485612c72565b176124f0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114612c1b57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612be0565b506000821415612c57576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050612c6d600084838561251b565b505050565b60006001821460e11b9050919050565b828054612c8e90613b59565b90600052602060002090601f016020900481019282612cb05760008555612cf7565b82601f10612cc957803560ff1916838001178555612cf7565b82800160010185558215612cf7579182015b82811115612cf6578235825591602001919060010190612cdb565b5b509050612d049190612d08565b5090565b5b80821115612d21576000816000905550600101612d09565b5090565b6000612d38612d338461392e565b613909565b905082815260208101848484011115612d5457612d53613d30565b5b612d5f848285613b17565b509392505050565b6000612d7a612d758461395f565b613909565b905082815260208101848484011115612d9657612d95613d30565b5b612da1848285613b26565b509392505050565b600081359050612db8816140d0565b92915050565b600081359050612dcd816140e7565b92915050565b600081359050612de2816140fe565b92915050565b600081519050612df7816140fe565b92915050565b600082601f830112612e1257612e11613d26565b5b8135612e22848260208601612d25565b91505092915050565b60008083601f840112612e4157612e40613d26565b5b8235905067ffffffffffffffff811115612e5e57612e5d613d21565b5b602083019150836001820283011115612e7a57612e79613d2b565b5b9250929050565b600082601f830112612e9657612e95613d26565b5b8151612ea6848260208601612d67565b91505092915050565b600081359050612ebe81614115565b92915050565b600060208284031215612eda57612ed9613d3a565b5b6000612ee884828501612da9565b91505092915050565b60008060408385031215612f0857612f07613d3a565b5b6000612f1685828601612da9565b9250506020612f2785828601612da9565b9150509250929050565b600080600060608486031215612f4a57612f49613d3a565b5b6000612f5886828701612da9565b9350506020612f6986828701612da9565b9250506040612f7a86828701612eaf565b9150509250925092565b60008060008060808587031215612f9e57612f9d613d3a565b5b6000612fac87828801612da9565b9450506020612fbd87828801612da9565b9350506040612fce87828801612eaf565b925050606085013567ffffffffffffffff811115612fef57612fee613d35565b5b612ffb87828801612dfd565b91505092959194509250565b6000806040838503121561301e5761301d613d3a565b5b600061302c85828601612da9565b925050602061303d85828601612dbe565b9150509250929050565b6000806040838503121561305e5761305d613d3a565b5b600061306c85828601612da9565b925050602061307d85828601612eaf565b9150509250929050565b60006020828403121561309d5761309c613d3a565b5b60006130ab84828501612dd3565b91505092915050565b6000602082840312156130ca576130c9613d3a565b5b60006130d884828501612de8565b91505092915050565b600080602083850312156130f8576130f7613d3a565b5b600083013567ffffffffffffffff81111561311657613115613d35565b5b61312285828601612e2b565b92509250509250929050565b60006020828403121561314457613143613d3a565b5b600082015167ffffffffffffffff81111561316257613161613d35565b5b61316e84828501612e81565b91505092915050565b60006020828403121561318d5761318c613d3a565b5b600061319b84828501612eaf565b91505092915050565b6131ad81613aa3565b82525050565b6131bc81613ab5565b82525050565b60006131cd826139a5565b6131d781856139bb565b93506131e7818560208601613b26565b6131f081613d3f565b840191505092915050565b6000613206826139b0565b61321081856139cc565b9350613220818560208601613b26565b61322981613d3f565b840191505092915050565b600061323f826139b0565b61324981856139dd565b9350613259818560208601613b26565b80840191505092915050565b6000815461327281613b59565b61327c81866139dd565b9450600182166000811461329757600181146132a8576132db565b60ff198316865281860193506132db565b6132b185613990565b60005b838110156132d3578154818901526001820191506020810190506132b4565b838801955050505b50505092915050565b60006132f1601c836139cc565b91506132fc82613d50565b602082019050919050565b60006133146014836139cc565b915061331f82613d79565b602082019050919050565b6000613337600f836139cc565b915061334282613da2565b602082019050919050565b600061335a6026836139cc565b915061336582613dcb565b604082019050919050565b600061337d601d836139cc565b915061338882613e1a565b602082019050919050565b60006133a06012836139cc565b91506133ab82613e43565b602082019050919050565b60006133c36010836139cc565b91506133ce82613e6c565b602082019050919050565b60006133e66011836139cc565b91506133f182613e95565b602082019050919050565b60006134096010836139cc565b915061341482613ebe565b602082019050919050565b600061342c600d836139cc565b915061343782613ee7565b602082019050919050565b600061344f6005836139dd565b915061345a82613f10565b600582019050919050565b60006134726020836139cc565b915061347d82613f39565b602082019050919050565b60006134956021836139cc565b91506134a082613f62565b604082019050919050565b60006134b86012836139cc565b91506134c382613fb1565b602082019050919050565b60006134db6020836139cc565b91506134e682613fda565b602082019050919050565b60006134fe6013836139cc565b915061350982614003565b602082019050919050565b60006135216000836139dd565b915061352c8261402c565b600082019050919050565b60006135446021836139cc565b915061354f8261402f565b604082019050919050565b60006135676020836139cc565b91506135728261407e565b602082019050919050565b600061358a600d836139cc565b9150613595826140a7565b602082019050919050565b6135a981613b0d565b82525050565b60006135bb8284613265565b915081905092915050565b60006135d28285613265565b91506135de8284613234565b91506135e982613442565b91508190509392505050565b600061360082613514565b9150819050919050565b600060208201905061361f60008301846131a4565b92915050565b600060808201905061363a60008301876131a4565b61364760208301866131a4565b61365460408301856135a0565b818103606083015261366681846131c2565b905095945050505050565b600060208201905061368660008301846131b3565b92915050565b600060208201905081810360008301526136a681846131fb565b905092915050565b600060208201905081810360008301526136c7816132e4565b9050919050565b600060208201905081810360008301526136e781613307565b9050919050565b600060208201905081810360008301526137078161332a565b9050919050565b600060208201905081810360008301526137278161334d565b9050919050565b6000602082019050818103600083015261374781613370565b9050919050565b6000602082019050818103600083015261376781613393565b9050919050565b60006020820190508181036000830152613787816133b6565b9050919050565b600060208201905081810360008301526137a7816133d9565b9050919050565b600060208201905081810360008301526137c7816133fc565b9050919050565b600060208201905081810360008301526137e78161341f565b9050919050565b6000602082019050818103600083015261380781613465565b9050919050565b6000602082019050818103600083015261382781613488565b9050919050565b60006020820190508181036000830152613847816134ab565b9050919050565b60006020820190508181036000830152613867816134ce565b9050919050565b60006020820190508181036000830152613887816134f1565b9050919050565b600060208201905081810360008301526138a781613537565b9050919050565b600060208201905081810360008301526138c78161355a565b9050919050565b600060208201905081810360008301526138e78161357d565b9050919050565b600060208201905061390360008301846135a0565b92915050565b6000613913613924565b905061391f8282613b8b565b919050565b6000604051905090565b600067ffffffffffffffff82111561394957613948613cf2565b5b61395282613d3f565b9050602081019050919050565b600067ffffffffffffffff82111561397a57613979613cf2565b5b61398382613d3f565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006139f382613b0d565b91506139fe83613b0d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a3357613a32613c36565b5b828201905092915050565b6000613a4982613b0d565b9150613a5483613b0d565b925082613a6457613a63613c65565b5b828204905092915050565b6000613a7a82613b0d565b9150613a8583613b0d565b925082821015613a9857613a97613c36565b5b828203905092915050565b6000613aae82613aed565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b44578082015181840152602081019050613b29565b83811115613b53576000848401525b50505050565b60006002820490506001821680613b7157607f821691505b60208210811415613b8557613b84613c94565b5b50919050565b613b9482613d3f565b810181811067ffffffffffffffff82111715613bb357613bb2613cf2565b5b80604052505050565b6000613bc782613b0d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613bfa57613bf9613c36565b5b600182019050919050565b6000613c1082613b0d565b9150613c1b83613b0d565b925082613c2b57613c2a613c65565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5075626c6963204d696e74696e67206973206e6f742061637469766500000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4558434545445f434f4c5f53495a450000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416d6f756e74206d7573742062652067726561746572207468616e2030000000600082015250565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f546f6b656e206e6f742065786973746564000000000000000000000000000000600082015250565b7f496e76616c6964207175616e7469747900000000000000000000000000000000600082015250565b7f4a75737420736f6c64206f757400000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f496e76616c6964206d657461646174612070726f76696465722061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c657220697320636f6e74726163740000000000000000000000000000600082015250565b7f557020746f2035206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b7f496e73756666696369656e7420616d6f756e7400000000000000000000000000600082015250565b50565b7f557020746f203130206d696e747320616c6c6f776564207065722077616c6c6560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f557020746f2031206d696e747320616c6c6f776564207065722077616c6c6574600082015250565b7f496e76616c696420707269636500000000000000000000000000000000000000600082015250565b6140d981613aa3565b81146140e457600080fd5b50565b6140f081613ab5565b81146140fb57600080fd5b50565b61410781613ac1565b811461411257600080fd5b50565b61411e81613b0d565b811461412957600080fd5b5056fea264697066735822122032db43a3b7b3ece4d6d9d41251f535b4c08ef6779fb2177de2ffe09dde439e4d64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000124e46546565734172654e6f74504650656573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064e4f545046500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f73746f726167656170692e666c65656b2e636f2f35343637646635372d376636322d346565362d396637632d3236613238663164633735382d6275636b65742f6e6674736172656e6f74706670735f6d642f000000000000

-----Decoded View---------------
Arg [0] : _name (string): NFTeesAreNotPFPees
Arg [1] : _symbol (string): NOTPFP
Arg [2] : _baseTokenURI (string): https://storageapi.fleek.co/5467df57-7f62-4ee6-9f7c-26a28f1dc758-bucket/nftsarenotpfps_md/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 4e46546565734172654e6f745046506565730000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 4e4f545046500000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [8] : 68747470733a2f2f73746f726167656170692e666c65656b2e636f2f35343637
Arg [9] : 646635372d376636322d346565362d396637632d323661323866316463373538
Arg [10] : 2d6275636b65742f6e6674736172656e6f74706670735f6d642f000000000000


Deployed Bytecode Sourcemap

62097:5739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;66588:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28258:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29160:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35643:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64727:496;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35084:400;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24911:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39350:2817;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65730:278;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67460:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67116:67;;;;;;;;;;;;;:::i;:::-;;66452:128;;;;;;;;;;;;;:::i;:::-;;62449:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42263:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64064:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62494:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6141:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30553:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63332:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26095:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9006:103;;;;;;;;;;;;;:::i;:::-;;62202:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67045:63;;;;;;;;;;;;;:::i;:::-;;65229:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66016:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8358:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66310:134;;;;;;;;;;;;;:::i;:::-;;29336:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;66817:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36201:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62243:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62836:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43046:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62404:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62801:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63470:576;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64298:423;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62539:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62351:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36666:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62297:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9264:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66588:221;63255:16;;;;;;;;;;;63247:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;8244:13:::1;:11;:13::i;:::-;66745:1:::2;66731:10;:15;;66723:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;66791:10;66775:13;:26;;;;66588:221:::0;:::o;28258:639::-;28343:4;28682:10;28667:25;;:11;:25;;;;:102;;;;28759:10;28744:25;;:11;:25;;;;28667:102;:179;;;;28836:10;28821:25;;:11;:25;;;;28667:179;28647:199;;28258:639;;;:::o;29160:100::-;29214:13;29247:5;29240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29160:100;:::o;35643:218::-;35719:7;35744:16;35752:7;35744;:16::i;:::-;35739:64;;35769:34;;;;;;;;;;;;;;35739:64;35823:15;:24;35839:7;35823:24;;;;;;;;;;;:30;;;;;;;;;;;;35816:37;;35643:218;;;:::o;64727:496::-;63255:16;;;;;;;;;;;63247:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;63143:10:::1;63130:23;;:9;:23;;;63122:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64920:19:::2;;64908:8;64881:12;:24;64894:10;64881:24;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:58;;64873:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;65008:14;;64995:9;:27;;64987:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;65092:12;;65080:8;65064:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;65056:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65165:8;65137:12;:24;65150:10;65137:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;65184:31;65194:10;65206:8;65184:9;:31::i;:::-;64727:496:::0;:::o;35084:400::-;35165:13;35181:16;35189:7;35181;:16::i;:::-;35165:32;;35237:5;35214:28;;:19;:17;:19::i;:::-;:28;;;35210:175;;35262:44;35279:5;35286:19;:17;:19::i;:::-;35262:16;:44::i;:::-;35257:128;;35334:35;;;;;;;;;;;;;;35257:128;35210:175;35430:2;35397:15;:24;35413:7;35397:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35468:7;35464:2;35448:28;;35457:5;35448:28;;;;;;;;;;;;35154:330;35084:400;;:::o;24911:323::-;24972:7;25200:15;:13;:15::i;:::-;25185:12;;25169:13;;:28;:46;25162:53;;24911:323;:::o;39350:2817::-;39484:27;39514;39533:7;39514:18;:27::i;:::-;39484:57;;39599:4;39558:45;;39574:19;39558:45;;;39554:86;;39612:28;;;;;;;;;;;;;;39554:86;39654:27;39683:23;39710:35;39737:7;39710:26;:35::i;:::-;39653:92;;;;39845:68;39870:15;39887:4;39893:19;:17;:19::i;:::-;39845:24;:68::i;:::-;39840:180;;39933:43;39950:4;39956:19;:17;:19::i;:::-;39933:16;:43::i;:::-;39928:92;;39985:35;;;;;;;;;;;;;;39928:92;39840:180;40051:1;40037:16;;:2;:16;;;40033:52;;;40062:23;;;;;;;;;;;;;;40033:52;40098:43;40120:4;40126:2;40130:7;40139:1;40098:21;:43::i;:::-;40234:15;40231:160;;;40374:1;40353:19;40346:30;40231:160;40771:18;:24;40790:4;40771:24;;;;;;;;;;;;;;;;40769:26;;;;;;;;;;;;40840:18;:22;40859:2;40840:22;;;;;;;;;;;;;;;;40838:24;;;;;;;;;;;41162:146;41199:2;41248:45;41263:4;41269:2;41273:19;41248:14;:45::i;:::-;21310:8;41220:73;41162:18;:146::i;:::-;41133:17;:26;41151:7;41133:26;;;;;;;;;;;:175;;;;41479:1;21310:8;41428:19;:47;:52;41424:627;;;41501:19;41533:1;41523:7;:11;41501:33;;41690:1;41656:17;:30;41674:11;41656:30;;;;;;;;;;;;:35;41652:384;;;41794:13;;41779:11;:28;41775:242;;41974:19;41941:17;:30;41959:11;41941:30;;;;;;;;;;;:52;;;;41775:242;41652:384;41482:569;41424:627;42098:7;42094:2;42079:27;;42088:4;42079:27;;;;;;;;;;;;42117:42;42138:4;42144:2;42148:7;42157:1;42117:20;:42::i;:::-;39473:2694;;;39350:2817;;;:::o;65730:278::-;8244:13;:11;:13::i;:::-;65855:1:::1;65844:8;:12;65836:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;65924:12;;65912:8;65896:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;65888:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65969:31;65979:10;65991:8;65969:9;:31::i;:::-;65730:278:::0;:::o;67460:371::-;8244:13;:11;:13::i;:::-;67589:1:::1;67571:15;:19;67563:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;67659:12;;67643:13;:11;:13::i;:::-;:28;67635:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;67743:13;:11;:13::i;:::-;67724:15;67709:12;;:30;;;;:::i;:::-;:47;;67701:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;67808:15;67792:12;;:31;;;;;;;:::i;:::-;;;;;;;;67460:371:::0;:::o;67116:67::-;8244:13;:11;:13::i;:::-;67165:10:::1;:8;:10::i;:::-;67116:67::o:0;66452:128::-;8244:13;:11;:13::i;:::-;66556:16:::1;;;;;;;;;;;66555:17;66536:16;;:36;;;;;;;;;;;;;;;;;;66452:128::o:0;62449:38::-;;;;:::o;42263:185::-;42401:39;42418:4;42424:2;42428:7;42401:39;;;;;;;;;;;;:16;:39::i;:::-;42263:185;;;:::o;64064:123::-;8244:13;:11;:13::i;:::-;64166::::1;;64151:12;:28;;;;;;;:::i;:::-;;64064:123:::0;;:::o;62494:38::-;;;;:::o;6141:86::-;6188:4;6212:7;;;;;;;;;;;6205:14;;6141:86;:::o;30553:152::-;30625:7;30668:27;30687:7;30668:18;:27::i;:::-;30645:52;;30553:152;;;:::o;63332:130::-;8244:13;:11;:13::i;:::-;63437:17:::1;63418:16;;:36;;;;;;;;;;;;;;;;;;63332:130:::0;:::o;26095:233::-;26167:7;26208:1;26191:19;;:5;:19;;;26187:60;;;26219:28;;;;;;;;;;;;;;26187:60;20254:13;26265:18;:25;26284:5;26265:25;;;;;;;;;;;;;;;;:55;26258:62;;26095:233;;;:::o;9006:103::-;8244:13;:11;:13::i;:::-;9071:30:::1;9098:1;9071:18;:30::i;:::-;9006:103::o:0;62202:34::-;;;;:::o;67045:63::-;8244:13;:11;:13::i;:::-;67092:8:::1;:6;:8::i;:::-;67045:63::o:0;65229:489::-;63255:16;;;;;;;;;;;63247:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;63143:10:::1;63130:23;;:9;:23;;;63122:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;65417:18:::2;;65405:8;65379:11;:23;65391:10;65379:23;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:56;;65371:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;65505:13;;65492:9;:26;;65484:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;65588:12;;65576:8;65560:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;65552:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;65660:8;65633:11;:23;65645:10;65633:23;;;;;;;;;;;;;;;;:35;;;;;;;:::i;:::-;;;;;;;;65679:31;65689:10;65701:8;65679:9;:31::i;:::-;65229:489:::0;:::o;66016:286::-;8244:13;:11;:13::i;:::-;66154:1:::1;66143:8;:12;66135:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;66223:12;;66211:8;66195:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;66187:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;66268:26;66278:5;66285:8;66268:9;:26::i;:::-;66016:286:::0;;:::o;8358:87::-;8404:7;8431:6;;;;;;;;;;;8424:13;;8358:87;:::o;66310:134::-;8244:13;:11;:13::i;:::-;66420:16:::1;;;;;;;;;;;66419:17;66400:16;;:36;;;;;;;;;;;;;;;;;;66310:134::o:0;29336:104::-;29392:13;29425:7;29418:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29336:104;:::o;66817:220::-;63255:16;;;;;;;;;;;63247:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;8244:13:::1;:11;:13::i;:::-;66973:1:::2;66959:10;:15;;66951:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;67019:10;67003:13;:26;;;;66817:220:::0;:::o;36201:308::-;36312:19;:17;:19::i;:::-;36300:31;;:8;:31;;;36296:61;;;36340:17;;;;;;;;;;;;;;36296:61;36422:8;36370:18;:39;36389:19;:17;:19::i;:::-;36370:39;;;;;;;;;;;;;;;:49;36410:8;36370:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;36482:8;36446:55;;36461:19;:17;:19::i;:::-;36446:55;;;36492:8;36446:55;;;;;;:::i;:::-;;;;;;;;36201:308;;:::o;62243:47::-;;;;;;;;;;;;;;;;;:::o;62836:28::-;;;;;;;;;;;;;:::o;43046:399::-;43213:31;43226:4;43232:2;43236:7;43213:12;:31::i;:::-;43277:1;43259:2;:14;;;:19;43255:183;;43298:56;43329:4;43335:2;43339:7;43348:5;43298:30;:56::i;:::-;43293:145;;43382:40;;;;;;;;;;;;;;43293:145;43255:183;43046:399;;;;:::o;62404:38::-;;;;:::o;62801:28::-;;;;;;;;;;;;;:::o;63470:576::-;63589:13;63628:17;63636:8;63628:7;:17::i;:::-;63620:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;63687:16;;;;;;;;;;;:136;;63800:20;;;;;;;:::i;:::-;;;;;;;;;;;;;63790:31;;;;;;63772:12;63755:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;63745:41;;;;;;:76;;63687:136;;;63736:1;63708:30;;:16;;;;;;;;;;;:30;;;;63687:136;63678:206;;;;;;;;;;;;:::i;:::-;;;;;;;;;63904:16;;;;;;;;;;;:134;;63995:12;64009:19;:8;:17;:19::i;:::-;63978:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63904:134;;;63929:16;;;;;;;;;;;63923:35;;;63959:8;63923:45;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;63904:134;63897:141;;63470:576;;;:::o;64298:423::-;63255:16;;;;;;;;;;;63247:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;63143:10:::1;63130:23;;:9;:23;;;63122:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;64487:19:::2;;64475:8;64448:12;:24;64461:10;64448:24;;;;;;;;;;;;;;;;:35;;;;:::i;:::-;:58;;64440:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;64590:12;;64578:8;64562:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:40;;64554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64663:8;64635:12;:24;64648:10;64635:24;;;;;;;;;;;;;;;;:36;;;;;;;:::i;:::-;;;;;;;;64682:31;64692:10;64704:8;64682:9;:31::i;:::-;64298:423:::0;:::o;62539:31::-;;;;;;;;;;;;;:::o;62351:46::-;;;;;;;;;;;;;;;;;:::o;36666:164::-;36763:4;36787:18;:25;36806:5;36787:25;;;;;;;;;;;;;;;:35;36813:8;36787:35;;;;;;;;;;;;;;;;;;;;;;;;;36780:42;;36666:164;;;;:::o;62297:47::-;;;;;;;;;;;;;;;;;:::o;9264:201::-;8244:13;:11;:13::i;:::-;9373:1:::1;9353:22;;:8;:22;;;;9345:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;9429:28;9448:8;9429:18;:28::i;:::-;9264:201:::0;:::o;8523:132::-;8598:12;:10;:12::i;:::-;8587:23;;:7;:5;:7::i;:::-;:23;;;8579:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8523:132::o;37088:282::-;37153:4;37209:7;37190:15;:13;:15::i;:::-;:26;;:66;;;;;37243:13;;37233:7;:23;37190:66;:153;;;;;37342:1;21030:8;37294:17;:26;37312:7;37294:26;;;;;;;;;;;;:44;:49;37190:153;37170:173;;37088:282;;;:::o;52686:112::-;52763:27;52773:2;52777:8;52763:27;;;;;;;;;;;;:9;:27::i;:::-;52686:112;;:::o;58854:105::-;58914:7;58941:10;58934:17;;58854:105;:::o;64197:93::-;64254:7;64281:1;64274:8;;64197:93;:::o;31708:1275::-;31775:7;31795:12;31810:7;31795:22;;31878:4;31859:15;:13;:15::i;:::-;:23;31855:1061;;31912:13;;31905:4;:20;31901:1015;;;31950:14;31967:17;:23;31985:4;31967:23;;;;;;;;;;;;31950:40;;32084:1;21030:8;32056:6;:24;:29;32052:845;;;32721:113;32738:1;32728:6;:11;32721:113;;;32781:17;:25;32799:6;;;;;;;32781:25;;;;;;;;;;;;32772:34;;32721:113;;;32867:6;32860:13;;;;;;32052:845;31927:989;31901:1015;31855:1061;32944:31;;;;;;;;;;;;;;31708:1275;;;;:::o;38251:479::-;38353:27;38382:23;38423:38;38464:15;:24;38480:7;38464:24;;;;;;;;;;;38423:65;;38635:18;38612:41;;38692:19;38686:26;38667:45;;38597:126;38251:479;;;:::o;37479:659::-;37628:11;37793:16;37786:5;37782:28;37773:37;;37953:16;37942:9;37938:32;37925:45;;38103:15;38092:9;38089:30;38081:5;38070:9;38067:20;38064:56;38054:66;;37479:659;;;;;:::o;67195:257::-;5746:19;:17;:19::i;:::-;67388:56:::1;67416:4;67422:2;67426:7;67435:8;67388:27;:56::i;:::-;67195:257:::0;;;;:::o;58163:311::-;58298:7;58318:16;21434:3;58344:19;:41;;58318:68;;21434:3;58412:31;58423:4;58429:2;58433:9;58412:10;:31::i;:::-;58404:40;;:62;;58397:69;;;58163:311;;;;;:::o;33531:450::-;33611:14;33779:16;33772:5;33768:28;33759:37;;33956:5;33942:11;33917:23;33913:41;33910:52;33903:5;33900:63;33890:73;;33531:450;;;;:::o;44931:158::-;;;;;:::o;6996:120::-;6005:16;:14;:16::i;:::-;7065:5:::1;7055:7;;:15;;;;;;;;;;;;;;;;;;7086:22;7095:12;:10;:12::i;:::-;7086:22;;;;;;:::i;:::-;;;;;;;;6996:120::o:0;9625:191::-;9699:16;9718:6;;;;;;;;;;;9699:25;;9744:8;9735:6;;:17;;;;;;;;;;;;;;;;;;9799:8;9768:40;;9789:8;9768:40;;;;;;;;;;;;9688:128;9625:191;:::o;6737:118::-;5746:19;:17;:19::i;:::-;6807:4:::1;6797:7;;:14;;;;;;;;;;;;;;;;;;6827:20;6834:12;:10;:12::i;:::-;6827:20;;;;;;:::i;:::-;;;;;;;;6737:118::o:0;45529:716::-;45692:4;45738:2;45713:45;;;45759:19;:17;:19::i;:::-;45780:4;45786:7;45795:5;45713:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45709:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46013:1;45996:6;:13;:18;45992:235;;;46042:40;;;;;;;;;;;;;;45992:235;46185:6;46179:13;46170:6;46166:2;46162:15;46155:38;45709:529;45882:54;;;45872:64;;;:6;:64;;;;45865:71;;;45529:716;;;;;;:::o;1508:723::-;1564:13;1794:1;1785:5;:10;1781:53;;;1812:10;;;;;;;;;;;;;;;;;;;;;1781:53;1844:12;1859:5;1844:20;;1875:14;1900:78;1915:1;1907:4;:9;1900:78;;1933:8;;;;;:::i;:::-;;;;1964:2;1956:10;;;;;:::i;:::-;;;1900:78;;;1988:19;2020:6;2010:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1988:39;;2038:154;2054:1;2045:5;:10;2038:154;;2082:1;2072:11;;;;;:::i;:::-;;;2149:2;2141:5;:10;;;;:::i;:::-;2128:2;:24;;;;:::i;:::-;2115:39;;2098:6;2105;2098:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2178:2;2169:11;;;;;:::i;:::-;;;2038:154;;;2216:6;2202:21;;;;;1508:723;;;;:::o;4254:98::-;4307:7;4334:10;4327:17;;4254:98;:::o;51913:689::-;52044:19;52050:2;52054:8;52044:5;:19::i;:::-;52123:1;52105:2;:14;;;:19;52101:483;;52145:11;52159:13;;52145:27;;52191:13;52213:8;52207:3;:14;52191:30;;52240:233;52271:62;52310:1;52314:2;52318:7;;;;;;52327:5;52271:30;:62::i;:::-;52266:167;;52369:40;;;;;;;;;;;;;;52266:167;52468:3;52460:5;:11;52240:233;;52555:3;52538:13;;:20;52534:34;;52560:8;;;52534:34;52126:458;;52101:483;51913:689;;;:::o;6300:108::-;6371:8;:6;:8::i;:::-;6370:9;6362:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;6300:108::o;44107:159::-;;;;;:::o;57864:147::-;58001:6;57864:147;;;;;:::o;6485:108::-;6552:8;:6;:8::i;:::-;6544:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;6485:108::o;46707:2454::-;46780:20;46803:13;;46780:36;;46843:1;46831:8;:13;46827:44;;;46853:18;;;;;;;;;;;;;;46827:44;46884:61;46914:1;46918:2;46922:12;46936:8;46884:21;:61::i;:::-;47428:1;20392:2;47398:1;:26;;47397:32;47385:8;:45;47359:18;:22;47378:2;47359:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;47707:139;47744:2;47798:33;47821:1;47825:2;47829:1;47798:14;:33::i;:::-;47765:30;47786:8;47765:20;:30::i;:::-;:66;47707:18;:139::i;:::-;47673:17;:31;47691:12;47673:31;;;;;;;;;;;:173;;;;47863:16;47894:11;47923:8;47908:12;:23;47894:37;;48178:16;48174:2;48170:25;48158:37;;48550:12;48510:8;48469:1;48407:25;48348:1;48287;48260:335;48675:1;48661:12;48657:20;48615:346;48716:3;48707:7;48704:16;48615:346;;48934:7;48924:8;48921:1;48894:25;48891:1;48888;48883:59;48769:1;48760:7;48756:15;48745:26;;48615:346;;;48619:77;49006:1;48994:8;:13;48990:45;;;49016:19;;;;;;;;;;;;;;48990:45;49068:3;49052:13;:19;;;;47133:1950;;49093:60;49122:1;49126:2;49130:12;49144:8;49093:20;:60::i;:::-;46769:2392;46707:2454;;:::o;34083:324::-;34153:14;34386:1;34376:8;34373:15;34347:24;34343:46;34333:56;;34083:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:421::-;512:5;537:66;553:49;595:6;553:49;:::i;:::-;537:66;:::i;:::-;528:75;;626:6;619:5;612:21;664:4;657:5;653:16;702:3;693:6;688:3;684:16;681:25;678:112;;;709:79;;:::i;:::-;678:112;799:39;831:6;826:3;821;799:39;:::i;:::-;518:326;423:421;;;;;:::o;850:139::-;896:5;934:6;921:20;912:29;;950:33;977:5;950:33;:::i;:::-;850:139;;;;:::o;995:133::-;1038:5;1076:6;1063:20;1054:29;;1092:30;1116:5;1092:30;:::i;:::-;995:133;;;;:::o;1134:137::-;1179:5;1217:6;1204:20;1195:29;;1233:32;1259:5;1233:32;:::i;:::-;1134:137;;;;:::o;1277:141::-;1333:5;1364:6;1358:13;1349:22;;1380:32;1406:5;1380:32;:::i;:::-;1277:141;;;;:::o;1437:338::-;1492:5;1541:3;1534:4;1526:6;1522:17;1518:27;1508:122;;1549:79;;:::i;:::-;1508:122;1666:6;1653:20;1691:78;1765:3;1757:6;1750:4;1742:6;1738:17;1691:78;:::i;:::-;1682:87;;1498:277;1437:338;;;;:::o;1795:553::-;1853:8;1863:6;1913:3;1906:4;1898:6;1894:17;1890:27;1880:122;;1921:79;;:::i;:::-;1880:122;2034:6;2021:20;2011:30;;2064:18;2056:6;2053:30;2050:117;;;2086:79;;:::i;:::-;2050:117;2200:4;2192:6;2188:17;2176:29;;2254:3;2246:4;2238:6;2234:17;2224:8;2220:32;2217:41;2214:128;;;2261:79;;:::i;:::-;2214:128;1795:553;;;;;:::o;2368:355::-;2435:5;2484:3;2477:4;2469:6;2465:17;2461:27;2451:122;;2492:79;;:::i;:::-;2451:122;2602:6;2596:13;2627:90;2713:3;2705:6;2698:4;2690:6;2686:17;2627:90;:::i;:::-;2618:99;;2441:282;2368:355;;;;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:329::-;2933:6;2982:2;2970:9;2961:7;2957:23;2953:32;2950:119;;;2988:79;;:::i;:::-;2950:119;3108:1;3133:53;3178:7;3169:6;3158:9;3154:22;3133:53;:::i;:::-;3123:63;;3079:117;2874:329;;;;:::o;3209:474::-;3277:6;3285;3334:2;3322:9;3313:7;3309:23;3305:32;3302:119;;;3340:79;;:::i;:::-;3302:119;3460:1;3485:53;3530:7;3521:6;3510:9;3506:22;3485:53;:::i;:::-;3475:63;;3431:117;3587:2;3613:53;3658:7;3649:6;3638:9;3634:22;3613:53;:::i;:::-;3603:63;;3558:118;3209:474;;;;;:::o;3689:619::-;3766:6;3774;3782;3831:2;3819:9;3810:7;3806:23;3802:32;3799:119;;;3837:79;;:::i;:::-;3799:119;3957:1;3982:53;4027:7;4018:6;4007:9;4003:22;3982:53;:::i;:::-;3972:63;;3928:117;4084:2;4110:53;4155:7;4146:6;4135:9;4131:22;4110:53;:::i;:::-;4100:63;;4055:118;4212:2;4238:53;4283:7;4274:6;4263:9;4259:22;4238:53;:::i;:::-;4228:63;;4183:118;3689:619;;;;;:::o;4314:943::-;4409:6;4417;4425;4433;4482:3;4470:9;4461:7;4457:23;4453:33;4450:120;;;4489:79;;:::i;:::-;4450:120;4609:1;4634:53;4679:7;4670:6;4659:9;4655:22;4634:53;:::i;:::-;4624:63;;4580:117;4736:2;4762:53;4807:7;4798:6;4787:9;4783:22;4762:53;:::i;:::-;4752:63;;4707:118;4864:2;4890:53;4935:7;4926:6;4915:9;4911:22;4890:53;:::i;:::-;4880:63;;4835:118;5020:2;5009:9;5005:18;4992:32;5051:18;5043:6;5040:30;5037:117;;;5073:79;;:::i;:::-;5037:117;5178:62;5232:7;5223:6;5212:9;5208:22;5178:62;:::i;:::-;5168:72;;4963:287;4314:943;;;;;;;:::o;5263:468::-;5328:6;5336;5385:2;5373:9;5364:7;5360:23;5356:32;5353:119;;;5391:79;;:::i;:::-;5353:119;5511:1;5536:53;5581:7;5572:6;5561:9;5557:22;5536:53;:::i;:::-;5526:63;;5482:117;5638:2;5664:50;5706:7;5697:6;5686:9;5682:22;5664:50;:::i;:::-;5654:60;;5609:115;5263:468;;;;;:::o;5737:474::-;5805:6;5813;5862:2;5850:9;5841:7;5837:23;5833:32;5830:119;;;5868:79;;:::i;:::-;5830:119;5988:1;6013:53;6058:7;6049:6;6038:9;6034:22;6013:53;:::i;:::-;6003:63;;5959:117;6115:2;6141:53;6186:7;6177:6;6166:9;6162:22;6141:53;:::i;:::-;6131:63;;6086:118;5737:474;;;;;:::o;6217:327::-;6275:6;6324:2;6312:9;6303:7;6299:23;6295:32;6292:119;;;6330:79;;:::i;:::-;6292:119;6450:1;6475:52;6519:7;6510:6;6499:9;6495:22;6475:52;:::i;:::-;6465:62;;6421:116;6217:327;;;;:::o;6550:349::-;6619:6;6668:2;6656:9;6647:7;6643:23;6639:32;6636:119;;;6674:79;;:::i;:::-;6636:119;6794:1;6819:63;6874:7;6865:6;6854:9;6850:22;6819:63;:::i;:::-;6809:73;;6765:127;6550:349;;;;:::o;6905:529::-;6976:6;6984;7033:2;7021:9;7012:7;7008:23;7004:32;7001:119;;;7039:79;;:::i;:::-;7001:119;7187:1;7176:9;7172:17;7159:31;7217:18;7209:6;7206:30;7203:117;;;7239:79;;:::i;:::-;7203:117;7352:65;7409:7;7400:6;7389:9;7385:22;7352:65;:::i;:::-;7334:83;;;;7130:297;6905:529;;;;;:::o;7440:524::-;7520:6;7569:2;7557:9;7548:7;7544:23;7540:32;7537:119;;;7575:79;;:::i;:::-;7537:119;7716:1;7705:9;7701:17;7695:24;7746:18;7738:6;7735:30;7732:117;;;7768:79;;:::i;:::-;7732:117;7873:74;7939:7;7930:6;7919:9;7915:22;7873:74;:::i;:::-;7863:84;;7666:291;7440:524;;;;:::o;7970:329::-;8029:6;8078:2;8066:9;8057:7;8053:23;8049:32;8046:119;;;8084:79;;:::i;:::-;8046:119;8204:1;8229:53;8274:7;8265:6;8254:9;8250:22;8229:53;:::i;:::-;8219:63;;8175:117;7970:329;;;;:::o;8305:118::-;8392:24;8410:5;8392:24;:::i;:::-;8387:3;8380:37;8305:118;;:::o;8429:109::-;8510:21;8525:5;8510:21;:::i;:::-;8505:3;8498:34;8429:109;;:::o;8544:360::-;8630:3;8658:38;8690:5;8658:38;:::i;:::-;8712:70;8775:6;8770:3;8712:70;:::i;:::-;8705:77;;8791:52;8836:6;8831:3;8824:4;8817:5;8813:16;8791:52;:::i;:::-;8868:29;8890:6;8868:29;:::i;:::-;8863:3;8859:39;8852:46;;8634:270;8544:360;;;;:::o;8910:364::-;8998:3;9026:39;9059:5;9026:39;:::i;:::-;9081:71;9145:6;9140:3;9081:71;:::i;:::-;9074:78;;9161:52;9206:6;9201:3;9194:4;9187:5;9183:16;9161:52;:::i;:::-;9238:29;9260:6;9238:29;:::i;:::-;9233:3;9229:39;9222:46;;9002:272;8910:364;;;;:::o;9280:377::-;9386:3;9414:39;9447:5;9414:39;:::i;:::-;9469:89;9551:6;9546:3;9469:89;:::i;:::-;9462:96;;9567:52;9612:6;9607:3;9600:4;9593:5;9589:16;9567:52;:::i;:::-;9644:6;9639:3;9635:16;9628:23;;9390:267;9280:377;;;;:::o;9687:845::-;9790:3;9827:5;9821:12;9856:36;9882:9;9856:36;:::i;:::-;9908:89;9990:6;9985:3;9908:89;:::i;:::-;9901:96;;10028:1;10017:9;10013:17;10044:1;10039:137;;;;10190:1;10185:341;;;;10006:520;;10039:137;10123:4;10119:9;10108;10104:25;10099:3;10092:38;10159:6;10154:3;10150:16;10143:23;;10039:137;;10185:341;10252:38;10284:5;10252:38;:::i;:::-;10312:1;10326:154;10340:6;10337:1;10334:13;10326:154;;;10414:7;10408:14;10404:1;10399:3;10395:11;10388:35;10464:1;10455:7;10451:15;10440:26;;10362:4;10359:1;10355:12;10350:17;;10326:154;;;10509:6;10504:3;10500:16;10493:23;;10192:334;;10006:520;;9794:738;;9687:845;;;;:::o;10538:366::-;10680:3;10701:67;10765:2;10760:3;10701:67;:::i;:::-;10694:74;;10777:93;10866:3;10777:93;:::i;:::-;10895:2;10890:3;10886:12;10879:19;;10538:366;;;:::o;10910:::-;11052:3;11073:67;11137:2;11132:3;11073:67;:::i;:::-;11066:74;;11149:93;11238:3;11149:93;:::i;:::-;11267:2;11262:3;11258:12;11251:19;;10910:366;;;:::o;11282:::-;11424:3;11445:67;11509:2;11504:3;11445:67;:::i;:::-;11438:74;;11521:93;11610:3;11521:93;:::i;:::-;11639:2;11634:3;11630:12;11623:19;;11282:366;;;:::o;11654:::-;11796:3;11817:67;11881:2;11876:3;11817:67;:::i;:::-;11810:74;;11893:93;11982:3;11893:93;:::i;:::-;12011:2;12006:3;12002:12;11995:19;;11654:366;;;:::o;12026:::-;12168:3;12189:67;12253:2;12248:3;12189:67;:::i;:::-;12182:74;;12265:93;12354:3;12265:93;:::i;:::-;12383:2;12378:3;12374:12;12367:19;;12026:366;;;:::o;12398:::-;12540:3;12561:67;12625:2;12620:3;12561:67;:::i;:::-;12554:74;;12637:93;12726:3;12637:93;:::i;:::-;12755:2;12750:3;12746:12;12739:19;;12398:366;;;:::o;12770:::-;12912:3;12933:67;12997:2;12992:3;12933:67;:::i;:::-;12926:74;;13009:93;13098:3;13009:93;:::i;:::-;13127:2;13122:3;13118:12;13111:19;;12770:366;;;:::o;13142:::-;13284:3;13305:67;13369:2;13364:3;13305:67;:::i;:::-;13298:74;;13381:93;13470:3;13381:93;:::i;:::-;13499:2;13494:3;13490:12;13483:19;;13142:366;;;:::o;13514:::-;13656:3;13677:67;13741:2;13736:3;13677:67;:::i;:::-;13670:74;;13753:93;13842:3;13753:93;:::i;:::-;13871:2;13866:3;13862:12;13855:19;;13514:366;;;:::o;13886:::-;14028:3;14049:67;14113:2;14108:3;14049:67;:::i;:::-;14042:74;;14125:93;14214:3;14125:93;:::i;:::-;14243:2;14238:3;14234:12;14227:19;;13886:366;;;:::o;14258:400::-;14418:3;14439:84;14521:1;14516:3;14439:84;:::i;:::-;14432:91;;14532:93;14621:3;14532:93;:::i;:::-;14650:1;14645:3;14641:11;14634:18;;14258:400;;;:::o;14664:366::-;14806:3;14827:67;14891:2;14886:3;14827:67;:::i;:::-;14820:74;;14903:93;14992:3;14903:93;:::i;:::-;15021:2;15016:3;15012:12;15005:19;;14664:366;;;:::o;15036:::-;15178:3;15199:67;15263:2;15258:3;15199:67;:::i;:::-;15192:74;;15275:93;15364:3;15275:93;:::i;:::-;15393:2;15388:3;15384:12;15377:19;;15036:366;;;:::o;15408:::-;15550:3;15571:67;15635:2;15630:3;15571:67;:::i;:::-;15564:74;;15647:93;15736:3;15647:93;:::i;:::-;15765:2;15760:3;15756:12;15749:19;;15408:366;;;:::o;15780:::-;15922:3;15943:67;16007:2;16002:3;15943:67;:::i;:::-;15936:74;;16019:93;16108:3;16019:93;:::i;:::-;16137:2;16132:3;16128:12;16121:19;;15780:366;;;:::o;16152:::-;16294:3;16315:67;16379:2;16374:3;16315:67;:::i;:::-;16308:74;;16391:93;16480:3;16391:93;:::i;:::-;16509:2;16504:3;16500:12;16493:19;;16152:366;;;:::o;16524:400::-;16684:3;16705:84;16787:1;16782:3;16705:84;:::i;:::-;16698:91;;16798:93;16887:3;16798:93;:::i;:::-;16916:1;16911:3;16907:11;16900:18;;16524:400;;;:::o;16930:366::-;17072:3;17093:67;17157:2;17152:3;17093:67;:::i;:::-;17086:74;;17169:93;17258:3;17169:93;:::i;:::-;17287:2;17282:3;17278:12;17271:19;;16930:366;;;:::o;17302:::-;17444:3;17465:67;17529:2;17524:3;17465:67;:::i;:::-;17458:74;;17541:93;17630:3;17541:93;:::i;:::-;17659:2;17654:3;17650:12;17643:19;;17302:366;;;:::o;17674:::-;17816:3;17837:67;17901:2;17896:3;17837:67;:::i;:::-;17830:74;;17913:93;18002:3;17913:93;:::i;:::-;18031:2;18026:3;18022:12;18015:19;;17674:366;;;:::o;18046:118::-;18133:24;18151:5;18133:24;:::i;:::-;18128:3;18121:37;18046:118;;:::o;18170:269::-;18299:3;18321:92;18409:3;18400:6;18321:92;:::i;:::-;18314:99;;18430:3;18423:10;;18170:269;;;;:::o;18445:695::-;18723:3;18745:92;18833:3;18824:6;18745:92;:::i;:::-;18738:99;;18854:95;18945:3;18936:6;18854:95;:::i;:::-;18847:102;;18966:148;19110:3;18966:148;:::i;:::-;18959:155;;19131:3;19124:10;;18445:695;;;;;:::o;19146:381::-;19331:3;19353:148;19497:3;19353:148;:::i;:::-;19346:155;;19518:3;19511:10;;19146:381;;;:::o;19533:222::-;19626:4;19664:2;19653:9;19649:18;19641:26;;19677:71;19745:1;19734:9;19730:17;19721:6;19677:71;:::i;:::-;19533:222;;;;:::o;19761:640::-;19956:4;19994:3;19983:9;19979:19;19971:27;;20008:71;20076:1;20065:9;20061:17;20052:6;20008:71;:::i;:::-;20089:72;20157:2;20146:9;20142:18;20133:6;20089:72;:::i;:::-;20171;20239:2;20228:9;20224:18;20215:6;20171:72;:::i;:::-;20290:9;20284:4;20280:20;20275:2;20264:9;20260:18;20253:48;20318:76;20389:4;20380:6;20318:76;:::i;:::-;20310:84;;19761:640;;;;;;;:::o;20407:210::-;20494:4;20532:2;20521:9;20517:18;20509:26;;20545:65;20607:1;20596:9;20592:17;20583:6;20545:65;:::i;:::-;20407:210;;;;:::o;20623:313::-;20736:4;20774:2;20763:9;20759:18;20751:26;;20823:9;20817:4;20813:20;20809:1;20798:9;20794:17;20787:47;20851:78;20924:4;20915:6;20851:78;:::i;:::-;20843:86;;20623:313;;;;:::o;20942:419::-;21108:4;21146:2;21135:9;21131:18;21123:26;;21195:9;21189:4;21185:20;21181:1;21170:9;21166:17;21159:47;21223:131;21349:4;21223:131;:::i;:::-;21215:139;;20942:419;;;:::o;21367:::-;21533:4;21571:2;21560:9;21556:18;21548:26;;21620:9;21614:4;21610:20;21606:1;21595:9;21591:17;21584:47;21648:131;21774:4;21648:131;:::i;:::-;21640:139;;21367:419;;;:::o;21792:::-;21958:4;21996:2;21985:9;21981:18;21973:26;;22045:9;22039:4;22035:20;22031:1;22020:9;22016:17;22009:47;22073:131;22199:4;22073:131;:::i;:::-;22065:139;;21792:419;;;:::o;22217:::-;22383:4;22421:2;22410:9;22406:18;22398:26;;22470:9;22464:4;22460:20;22456:1;22445:9;22441:17;22434:47;22498:131;22624:4;22498:131;:::i;:::-;22490:139;;22217:419;;;:::o;22642:::-;22808:4;22846:2;22835:9;22831:18;22823:26;;22895:9;22889:4;22885:20;22881:1;22870:9;22866:17;22859:47;22923:131;23049:4;22923:131;:::i;:::-;22915:139;;22642:419;;;:::o;23067:::-;23233:4;23271:2;23260:9;23256:18;23248:26;;23320:9;23314:4;23310:20;23306:1;23295:9;23291:17;23284:47;23348:131;23474:4;23348:131;:::i;:::-;23340:139;;23067:419;;;:::o;23492:::-;23658:4;23696:2;23685:9;23681:18;23673:26;;23745:9;23739:4;23735:20;23731:1;23720:9;23716:17;23709:47;23773:131;23899:4;23773:131;:::i;:::-;23765:139;;23492:419;;;:::o;23917:::-;24083:4;24121:2;24110:9;24106:18;24098:26;;24170:9;24164:4;24160:20;24156:1;24145:9;24141:17;24134:47;24198:131;24324:4;24198:131;:::i;:::-;24190:139;;23917:419;;;:::o;24342:::-;24508:4;24546:2;24535:9;24531:18;24523:26;;24595:9;24589:4;24585:20;24581:1;24570:9;24566:17;24559:47;24623:131;24749:4;24623:131;:::i;:::-;24615:139;;24342:419;;;:::o;24767:::-;24933:4;24971:2;24960:9;24956:18;24948:26;;25020:9;25014:4;25010:20;25006:1;24995:9;24991:17;24984:47;25048:131;25174:4;25048:131;:::i;:::-;25040:139;;24767:419;;;:::o;25192:::-;25358:4;25396:2;25385:9;25381:18;25373:26;;25445:9;25439:4;25435:20;25431:1;25420:9;25416:17;25409:47;25473:131;25599:4;25473:131;:::i;:::-;25465:139;;25192:419;;;:::o;25617:::-;25783:4;25821:2;25810:9;25806:18;25798:26;;25870:9;25864:4;25860:20;25856:1;25845:9;25841:17;25834:47;25898:131;26024:4;25898:131;:::i;:::-;25890:139;;25617:419;;;:::o;26042:::-;26208:4;26246:2;26235:9;26231:18;26223:26;;26295:9;26289:4;26285:20;26281:1;26270:9;26266:17;26259:47;26323:131;26449:4;26323:131;:::i;:::-;26315:139;;26042:419;;;:::o;26467:::-;26633:4;26671:2;26660:9;26656:18;26648:26;;26720:9;26714:4;26710:20;26706:1;26695:9;26691:17;26684:47;26748:131;26874:4;26748:131;:::i;:::-;26740:139;;26467:419;;;:::o;26892:::-;27058:4;27096:2;27085:9;27081:18;27073:26;;27145:9;27139:4;27135:20;27131:1;27120:9;27116:17;27109:47;27173:131;27299:4;27173:131;:::i;:::-;27165:139;;26892:419;;;:::o;27317:::-;27483:4;27521:2;27510:9;27506:18;27498:26;;27570:9;27564:4;27560:20;27556:1;27545:9;27541:17;27534:47;27598:131;27724:4;27598:131;:::i;:::-;27590:139;;27317:419;;;:::o;27742:::-;27908:4;27946:2;27935:9;27931:18;27923:26;;27995:9;27989:4;27985:20;27981:1;27970:9;27966:17;27959:47;28023:131;28149:4;28023:131;:::i;:::-;28015:139;;27742:419;;;:::o;28167:::-;28333:4;28371:2;28360:9;28356:18;28348:26;;28420:9;28414:4;28410:20;28406:1;28395:9;28391:17;28384:47;28448:131;28574:4;28448:131;:::i;:::-;28440:139;;28167:419;;;:::o;28592:222::-;28685:4;28723:2;28712:9;28708:18;28700:26;;28736:71;28804:1;28793:9;28789:17;28780:6;28736:71;:::i;:::-;28592:222;;;;:::o;28820:129::-;28854:6;28881:20;;:::i;:::-;28871:30;;28910:33;28938:4;28930:6;28910:33;:::i;:::-;28820:129;;;:::o;28955:75::-;28988:6;29021:2;29015:9;29005:19;;28955:75;:::o;29036:307::-;29097:4;29187:18;29179:6;29176:30;29173:56;;;29209:18;;:::i;:::-;29173:56;29247:29;29269:6;29247:29;:::i;:::-;29239:37;;29331:4;29325;29321:15;29313:23;;29036:307;;;:::o;29349:308::-;29411:4;29501:18;29493:6;29490:30;29487:56;;;29523:18;;:::i;:::-;29487:56;29561:29;29583:6;29561:29;:::i;:::-;29553:37;;29645:4;29639;29635:15;29627:23;;29349:308;;;:::o;29663:141::-;29712:4;29735:3;29727:11;;29758:3;29755:1;29748:14;29792:4;29789:1;29779:18;29771:26;;29663:141;;;:::o;29810:98::-;29861:6;29895:5;29889:12;29879:22;;29810:98;;;:::o;29914:99::-;29966:6;30000:5;29994:12;29984:22;;29914:99;;;:::o;30019:168::-;30102:11;30136:6;30131:3;30124:19;30176:4;30171:3;30167:14;30152:29;;30019:168;;;;:::o;30193:169::-;30277:11;30311:6;30306:3;30299:19;30351:4;30346:3;30342:14;30327:29;;30193:169;;;;:::o;30368:148::-;30470:11;30507:3;30492:18;;30368:148;;;;:::o;30522:305::-;30562:3;30581:20;30599:1;30581:20;:::i;:::-;30576:25;;30615:20;30633:1;30615:20;:::i;:::-;30610:25;;30769:1;30701:66;30697:74;30694:1;30691:81;30688:107;;;30775:18;;:::i;:::-;30688:107;30819:1;30816;30812:9;30805:16;;30522:305;;;;:::o;30833:185::-;30873:1;30890:20;30908:1;30890:20;:::i;:::-;30885:25;;30924:20;30942:1;30924:20;:::i;:::-;30919:25;;30963:1;30953:35;;30968:18;;:::i;:::-;30953:35;31010:1;31007;31003:9;30998:14;;30833:185;;;;:::o;31024:191::-;31064:4;31084:20;31102:1;31084:20;:::i;:::-;31079:25;;31118:20;31136:1;31118:20;:::i;:::-;31113:25;;31157:1;31154;31151:8;31148:34;;;31162:18;;:::i;:::-;31148:34;31207:1;31204;31200:9;31192:17;;31024:191;;;;:::o;31221:96::-;31258:7;31287:24;31305:5;31287:24;:::i;:::-;31276:35;;31221:96;;;:::o;31323:90::-;31357:7;31400:5;31393:13;31386:21;31375:32;;31323:90;;;:::o;31419:149::-;31455:7;31495:66;31488:5;31484:78;31473:89;;31419:149;;;:::o;31574:126::-;31611:7;31651:42;31644:5;31640:54;31629:65;;31574:126;;;:::o;31706:77::-;31743:7;31772:5;31761:16;;31706:77;;;:::o;31789:154::-;31873:6;31868:3;31863;31850:30;31935:1;31926:6;31921:3;31917:16;31910:27;31789:154;;;:::o;31949:307::-;32017:1;32027:113;32041:6;32038:1;32035:13;32027:113;;;32126:1;32121:3;32117:11;32111:18;32107:1;32102:3;32098:11;32091:39;32063:2;32060:1;32056:10;32051:15;;32027:113;;;32158:6;32155:1;32152:13;32149:101;;;32238:1;32229:6;32224:3;32220:16;32213:27;32149:101;31998:258;31949:307;;;:::o;32262:320::-;32306:6;32343:1;32337:4;32333:12;32323:22;;32390:1;32384:4;32380:12;32411:18;32401:81;;32467:4;32459:6;32455:17;32445:27;;32401:81;32529:2;32521:6;32518:14;32498:18;32495:38;32492:84;;;32548:18;;:::i;:::-;32492:84;32313:269;32262:320;;;:::o;32588:281::-;32671:27;32693:4;32671:27;:::i;:::-;32663:6;32659:40;32801:6;32789:10;32786:22;32765:18;32753:10;32750:34;32747:62;32744:88;;;32812:18;;:::i;:::-;32744:88;32852:10;32848:2;32841:22;32631:238;32588:281;;:::o;32875:233::-;32914:3;32937:24;32955:5;32937:24;:::i;:::-;32928:33;;32983:66;32976:5;32973:77;32970:103;;;33053:18;;:::i;:::-;32970:103;33100:1;33093:5;33089:13;33082:20;;32875:233;;;:::o;33114:176::-;33146:1;33163:20;33181:1;33163:20;:::i;:::-;33158:25;;33197:20;33215:1;33197:20;:::i;:::-;33192:25;;33236:1;33226:35;;33241:18;;:::i;:::-;33226:35;33282:1;33279;33275:9;33270:14;;33114:176;;;;:::o;33296:180::-;33344:77;33341:1;33334:88;33441:4;33438:1;33431:15;33465:4;33462:1;33455:15;33482:180;33530:77;33527:1;33520:88;33627:4;33624:1;33617:15;33651:4;33648:1;33641:15;33668:180;33716:77;33713:1;33706:88;33813:4;33810:1;33803:15;33837:4;33834:1;33827:15;33854:180;33902:77;33899:1;33892:88;33999:4;33996:1;33989:15;34023:4;34020:1;34013:15;34040:180;34088:77;34085:1;34078:88;34185:4;34182:1;34175:15;34209:4;34206:1;34199:15;34226:117;34335:1;34332;34325:12;34349:117;34458:1;34455;34448:12;34472:117;34581:1;34578;34571:12;34595:117;34704:1;34701;34694:12;34718:117;34827:1;34824;34817:12;34841:117;34950:1;34947;34940:12;34964:102;35005:6;35056:2;35052:7;35047:2;35040:5;35036:14;35032:28;35022:38;;34964:102;;;:::o;35072:178::-;35212:30;35208:1;35200:6;35196:14;35189:54;35072:178;:::o;35256:170::-;35396:22;35392:1;35384:6;35380:14;35373:46;35256:170;:::o;35432:165::-;35572:17;35568:1;35560:6;35556:14;35549:41;35432:165;:::o;35603:225::-;35743:34;35739:1;35731:6;35727:14;35720:58;35812:8;35807:2;35799:6;35795:15;35788:33;35603:225;:::o;35834:179::-;35974:31;35970:1;35962:6;35958:14;35951:55;35834:179;:::o;36019:168::-;36159:20;36155:1;36147:6;36143:14;36136:44;36019:168;:::o;36193:166::-;36333:18;36329:1;36321:6;36317:14;36310:42;36193:166;:::o;36365:167::-;36505:19;36501:1;36493:6;36489:14;36482:43;36365:167;:::o;36538:166::-;36678:18;36674:1;36666:6;36662:14;36655:42;36538:166;:::o;36710:163::-;36850:15;36846:1;36838:6;36834:14;36827:39;36710:163;:::o;36879:155::-;37019:7;37015:1;37007:6;37003:14;36996:31;36879:155;:::o;37040:182::-;37180:34;37176:1;37168:6;37164:14;37157:58;37040:182;:::o;37228:220::-;37368:34;37364:1;37356:6;37352:14;37345:58;37437:3;37432:2;37424:6;37420:15;37413:28;37228:220;:::o;37454:168::-;37594:20;37590:1;37582:6;37578:14;37571:44;37454:168;:::o;37628:182::-;37768:34;37764:1;37756:6;37752:14;37745:58;37628:182;:::o;37816:169::-;37956:21;37952:1;37944:6;37940:14;37933:45;37816:169;:::o;37991:114::-;;:::o;38111:220::-;38251:34;38247:1;38239:6;38235:14;38228:58;38320:3;38315:2;38307:6;38303:15;38296:28;38111:220;:::o;38337:182::-;38477:34;38473:1;38465:6;38461:14;38454:58;38337:182;:::o;38525:163::-;38665:15;38661:1;38653:6;38649:14;38642:39;38525:163;:::o;38694:122::-;38767:24;38785:5;38767:24;:::i;:::-;38760:5;38757:35;38747:63;;38806:1;38803;38796:12;38747:63;38694:122;:::o;38822:116::-;38892:21;38907:5;38892:21;:::i;:::-;38885:5;38882:32;38872:60;;38928:1;38925;38918:12;38872:60;38822:116;:::o;38944:120::-;39016:23;39033:5;39016:23;:::i;:::-;39009:5;39006:34;38996:62;;39054:1;39051;39044:12;38996:62;38944:120;:::o;39070:122::-;39143:24;39161:5;39143:24;:::i;:::-;39136:5;39133:35;39123:63;;39182:1;39179;39172:12;39123:63;39070:122;:::o

Swarm Source

ipfs://32db43a3b7b3ece4d6d9d41251f535b4c08ef6779fb2177de2ffe09dde439e4d
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.