ETH Price: $2,376.04 (-3.86%)

Token

DCDPass (DPASS)
 

Overview

Max Total Supply

101 DPASS

Holders

101

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
megumi6969.eth
Balance
1 DPASS
0xe5964fd10170c8291cf97552284d995a006e67ae
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:
DCDPass

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/IOperatorFilterRegistry.sol


pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/OperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(
                    operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
                        && operatorFilterRegistry.isOperatorAllowed(address(this), from)
                )
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

// File: https://github.com/ProjectOpenSea/operator-filter-registry/blob/main/src/DefaultOperatorFilterer.sol


pragma solidity ^0.8.13;


abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// 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();

    /**
     * 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 payable;

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

    /**
     * @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 payable;

    /**
     * @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 payable;

    /**
     * @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.3
// 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 {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    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 payable 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 {
        _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].value`.
        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 payable 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 payable 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 payable 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.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            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`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

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

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

// File: contracts/dpass2.sol


pragma solidity ^0.8.17;




contract DCDPass is ERC721A, DefaultOperatorFilterer, Ownable {
    /** 
      * @notice Maximum number of Diamond Passes that can be minted
      */
    uint256 public constant SUPPLY_MAX = 200;

    /** 
      * @notice The price of a Diamond Pass in wei
      */
    uint256 public constant PRICE = 0.25 ether;
    
    /** 
      * @notice Boolean whether the sale is active or not
      */
    bool public live;

    /** 
      * @notice The base URI for all tokens
      */
    string constant public baseURI = "ipfs://QmafWeRUFXChTSUHTNAVQW7W5FjV6ogmQKSKYBf8ck51Bh/";
 
    constructor() ERC721A("DCDPass", "DPASS") {}

    /** 
     * @notice Function to reserve NFTs for the team
     * @param to address of the receiver
     * @param quantity number of NFTs to reserve
     */
    function reserveTeamTokens(address to, uint256 quantity) external onlyOwner {
        require(totalSupply() + quantity <= SUPPLY_MAX, "Exceeds max supply");
        _safeMint(to, quantity);
    }

    /** 
     * @notice Function to purchase a Diamond Pass, requires payment of 0.25 ETH
     */
    function mint() external payable {
        require(live, "Sale is not live");
        require(msg.sender == tx.origin, "Only EOA wallets");
        require(_numberMinted(msg.sender) + 1 <= 1, "You can only mint one pass");
        require(totalSupply() + 1 <= SUPPLY_MAX, "Exceeds max supply");
        require(msg.value >= PRICE, "Insufficient funds");
        
        _safeMint(msg.sender, 1);
    }

    /** 
     * @notice Function to mint if whitelisted, requires payment of 0.25 ETH
     */
    function whitelistMint() external payable {
        require(msg.sender == tx.origin, "Only EOA wallets");
        require(_numberMinted(msg.sender) + 1 <= 1, "You can only mint one pass");
        require(totalSupply() + 1 <= SUPPLY_MAX, "Exceeds max supply");
        require(msg.value >= PRICE, "Insufficient funds");
        require(whitelist[msg.sender], "Your address isn't whitelisted");
        
        _safeMint(msg.sender, 1);
    }

    /** 
     * @notice Function to start the sale, only callable by the owner
     */
    function toggleSaleState() external onlyOwner {
        live = !live;
    }

    /** 
     * @notice Function to withdraw funds from the contract, only callable by the owner
     */
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /** 
     * @notice Function to return the metadata URI for a given token ID
     * @param tokenId the token ID to return the URI for
     */
    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return baseURI;
    }

    /** 
     * @notice Function to burn a pass, only callable by the owner
     */
    function burn(uint256 tokenId) external onlyOwner {
        _burn(tokenId, false);
    }

    mapping(address => bool) public whitelist;

    /**
     * @notice Add to whitelist, only callable by the owner
     */
    function addToWhitelist(address[] calldata toAddAddresses) external onlyOwner {
        for (uint i = 0; i < toAddAddresses.length; i++) {
            whitelist[toAddAddresses[i]] = true;
        }
    }

    /**
     * @notice Remove from whitelist, only callable by the owner
     */
    function removeFromWhitelist(address[] calldata toRemoveAddresses) external onlyOwner {
        for (uint i = 0; i < toRemoveAddresses.length; i++) {
            delete whitelist[toRemoveAddresses[i]];
        }
    }

    /**
     * Opensea operator filterer
     */
    function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
        public
        payable
        override
        onlyAllowedOperator(from)
    {
        super.safeTransferFrom(from, to, tokenId, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toAddAddresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"toRemoveAddresses","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTeamTokens","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600781526020017f44434450617373000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f44504153530000000000000000000000000000000000000000000000000000008152508160029081620000a691906200063b565b508060039081620000b891906200063b565b50620000c9620002ee60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002c65780156200018c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200015292919062000767565b600060405180830381600087803b1580156200016d57600080fd5b505af115801562000182573d6000803e3d6000fd5b50505050620002c5565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000246576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200020c92919062000767565b600060405180830381600087803b1580156200022757600080fd5b505af11580156200023c573d6000803e3d6000fd5b50505050620002c4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b81526004016200028f919062000794565b600060405180830381600087803b158015620002aa57600080fd5b505af1158015620002bf573d6000803e3d6000fd5b505050505b5b5b5050620002e8620002dc620002f360201b60201c565b620002fb60201b60201c565b620007b1565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200044357607f821691505b602082108103620004595762000458620003fb565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004c37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000484565b620004cf868362000484565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200051c620005166200051084620004e7565b620004f1565b620004e7565b9050919050565b6000819050919050565b6200053883620004fb565b62000550620005478262000523565b84845462000491565b825550505050565b600090565b6200056762000558565b620005748184846200052d565b505050565b5b818110156200059c57620005906000826200055d565b6001810190506200057a565b5050565b601f821115620005eb57620005b5816200045f565b620005c08462000474565b81016020851015620005d0578190505b620005e8620005df8562000474565b83018262000579565b50505b505050565b600082821c905092915050565b60006200061060001984600802620005f0565b1980831691505092915050565b60006200062b8383620005fd565b9150826002028217905092915050565b6200064682620003c1565b67ffffffffffffffff811115620006625762000661620003cc565b5b6200066e82546200042a565b6200067b828285620005a0565b600060209050601f831160018114620006b357600084156200069e578287015190505b620006aa85826200061d565b8655506200071a565b601f198416620006c3866200045f565b60005b82811015620006ed57848901518255600182019150602085019450602081019050620006c6565b868310156200070d578489015162000709601f891682620005fd565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200074f8262000722565b9050919050565b620007618162000742565b82525050565b60006040820190506200077e600083018562000756565b6200078d602083018462000756565b9392505050565b6000602082019050620007ab600083018462000756565b92915050565b6134da80620007c16000396000f3fe6080604052600436106101cd5760003560e01c80637f649783116100f75780639b19251a11610095578063daaeec8611610064578063daaeec86146105ee578063e71433d614610605578063e985e9c51461062e578063f2fde38b1461066b576101cd565b80639b19251a1461052f578063a22cb4651461056c578063b88d4fde14610595578063c87b56dd146105b1576101cd565b80638da5cb5b116100d15780638da5cb5b14610483578063957aa58c146104ae578063958f6ed6146104d957806395d89b4114610504576101cd565b80637f64978314610425578063804f43cd1461044e5780638d859f3e14610458576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103695780636c0360eb146103a657806370a08231146103d1578063715018a61461040e576101cd565b80633ccfd60b146102e457806342842e0e146102fb57806342966c6814610317578063548db17414610340576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631249c58b1461029357806318160ddd1461029d57806323b872dd146102c8576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906127d3565b610694565b604051610206919061281b565b60405180910390f35b34801561021b57600080fd5b50610224610726565b60405161023191906128c6565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061291e565b6107b8565b60405161026e919061298c565b60405180910390f35b610291600480360381019061028c91906129d3565b610837565b005b61029b61097b565b005b3480156102a957600080fd5b506102b2610b3e565b6040516102bf9190612a22565b60405180910390f35b6102e260048036038101906102dd9190612a3d565b610b55565b005b3480156102f057600080fd5b506102f9610d37565b005b61031560048036038101906103109190612a3d565b610d88565b005b34801561032357600080fd5b5061033e6004803603810190610339919061291e565b610f6a565b005b34801561034c57600080fd5b5061036760048036038101906103629190612af5565b610f80565b005b34801561037557600080fd5b50610390600480360381019061038b919061291e565b611024565b60405161039d919061298c565b60405180910390f35b3480156103b257600080fd5b506103bb611036565b6040516103c891906128c6565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612b42565b611052565b6040516104059190612a22565b60405180910390f35b34801561041a57600080fd5b5061042361110a565b005b34801561043157600080fd5b5061044c60048036038101906104479190612af5565b61111e565b005b6104566111cb565b005b34801561046457600080fd5b5061046d6113cb565b60405161047a9190612a22565b60405180910390f35b34801561048f57600080fd5b506104986113d7565b6040516104a5919061298c565b60405180910390f35b3480156104ba57600080fd5b506104c3611401565b6040516104d0919061281b565b60405180910390f35b3480156104e557600080fd5b506104ee611414565b6040516104fb9190612a22565b60405180910390f35b34801561051057600080fd5b50610519611419565b60405161052691906128c6565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612b42565b6114ab565b604051610563919061281b565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612b9b565b6114cb565b005b6105af60048036038101906105aa9190612d0b565b6115d6565b005b3480156105bd57600080fd5b506105d860048036038101906105d3919061291e565b6117bb565b6040516105e591906128c6565b60405180910390f35b3480156105fa57600080fd5b50610603611825565b005b34801561061157600080fd5b5061062c600480360381019061062791906129d3565b611859565b005b34801561063a57600080fd5b5061065560048036038101906106509190612d8e565b6118c5565b604051610662919061281b565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612b42565b611959565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ef57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073590612dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461076190612dfd565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c3826119dc565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282611024565b90508073ffffffffffffffffffffffffffffffffffffffff16610863611a3b565b73ffffffffffffffffffffffffffffffffffffffff16146108c65761088f8161088a611a3b565b6118c5565b6108c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860149054906101000a900460ff166109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190612e7a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90612ee6565b60405180910390fd5b600180610a4433611a43565b610a4e9190612f35565b1115610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612fb5565b60405180910390fd5b60c86001610a9b610b3e565b610aa59190612f35565b1115610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613021565b60405180910390fd5b6703782dace9d90000341015610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061308d565b60405180910390fd5b610b3c336001611a9a565b565b6000610b48611ab8565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d25573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bc757610bc2848484611abd565b610d31565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c109291906130ad565b602060405180830381865afa158015610c2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5191906130eb565b8015610ce357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ca19291906130ad565b602060405180830381865afa158015610cbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce291906130eb565b5b610d2457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d1b919061298c565b60405180910390fd5b5b610d30848484611abd565b5b50505050565b610d3f611ddf565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d85573d6000803e3d6000fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f58573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dfa57610df5848484611e5d565b610f64565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e439291906130ad565b602060405180830381865afa158015610e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8491906130eb565b8015610f1657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ed49291906130ad565b602060405180830381865afa158015610ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1591906130eb565b5b610f5757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f4e919061298c565b60405180910390fd5b5b610f63848484611e5d565b5b50505050565b610f72611ddf565b610f7d816000611e7d565b50565b610f88611ddf565b60005b8282905081101561101f5760096000848484818110610fad57610fac613118565b5b9050602002016020810190610fc29190612b42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff0219169055808061101790613147565b915050610f8b565b505050565b600061102f826120cf565b9050919050565b60405180606001604052806036815260200161346f6036913981565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611112611ddf565b61111c600061219b565b565b611126611ddf565b60005b828290508110156111c65760016009600085858581811061114d5761114c613118565b5b90506020020160208101906111629190612b42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111be90613147565b915050611129565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090612ee6565b60405180910390fd5b60018061124533611a43565b61124f9190612f35565b1115611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790612fb5565b60405180910390fd5b60c8600161129c610b3e565b6112a69190612f35565b11156112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90613021565b60405180910390fd5b6703782dace9d90000341015611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061308d565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906131db565b60405180910390fd5b6113c9336001611a9a565b565b6703782dace9d9000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b60c881565b60606003805461142890612dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461145490612dfd565b80156114a15780601f10611476576101008083540402835291602001916114a1565b820191906000526020600020905b81548152906001019060200180831161148457829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b80600760006114d8611a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611585611a3b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ca919061281b565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156117a7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116495761164485858585612261565b6117b4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116929291906130ad565b602060405180830381865afa1580156116af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d391906130eb565b801561176557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016117239291906130ad565b602060405180830381865afa158015611740573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176491906130eb565b5b6117a657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161179d919061298c565b60405180910390fd5b5b6117b385858585612261565b5b5050505050565b60606117c6826119dc565b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061326d565b60405180910390fd5b60405180606001604052806036815260200161346f603691399050919050565b61182d611ddf565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b611861611ddf565b60c88161186c610b3e565b6118769190612f35565b11156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613021565b60405180910390fd5b6118c18282611a9a565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611961611ddf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906132ff565b60405180910390fd5b6119d98161219b565b50565b6000816119e7611ab8565b111580156119f6575060005482105b8015611a34575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611ab48282604051806020016040528060008152506122d4565b5050565b600090565b6000611ac8826120cf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b3b84612371565b91509150611b518187611b4c611a3b565b612398565b611b9d57611b6686611b61611a3b565b6118c5565b611b9c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c1086868660016123dc565b8015611c1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ce985611cc58888876123e2565b7c02000000000000000000000000000000000000000000000000000000001761240a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611d6f5760006001850190506000600460008381526020019081526020016000205403611d6d576000548114611d6c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd78686866001612435565b505050505050565b611de761243b565b73ffffffffffffffffffffffffffffffffffffffff16611e056113d7565b73ffffffffffffffffffffffffffffffffffffffff1614611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e529061336b565b60405180910390fd5b565b611e78838383604051806020016040528060008152506115d6565b505050565b6000611e88836120cf565b90506000819050600080611e9b86612371565b915091508415611f0457611eb78184611eb2611a3b565b612398565b611f0357611ecc83611ec7611a3b565b6118c5565b611f02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f128360008860016123dc565b8015611f1d57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fc583611f82856000886123e2565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761240a565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361204b5760006001870190506000600460008381526020019081526020016000205403612049576000548114612048578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120b5836000886001612435565b600160008154809291906001019190505550505050505050565b600080829050806120de611ab8565b11612164576000548110156121635760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612161575b6000810361215757600460008360019003935083815260200190815260200160002054905061212d565b8092505050612196565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61226c848484610b55565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122ce5761229784848484612443565b6122cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6122de8383612593565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461236c57600080549050600083820390505b61231e6000868380600101945086612443565b612354576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061230b57816000541461236957600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123f986868461274e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612469611a3b565b8786866040518563ffffffff1660e01b815260040161248b94939291906133e0565b6020604051808303816000875af19250505080156124c757506040513d601f19601f820116820180604052508101906124c49190613441565b60015b612540573d80600081146124f7576040519150601f19603f3d011682016040523d82523d6000602084013e6124fc565b606091505b506000815103612538576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082036125d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e060008483856123dc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126578361264860008660006123e2565b61265185612757565b1761240a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126bd565b5060008203612733576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127496000848385612435565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127b08161277b565b81146127bb57600080fd5b50565b6000813590506127cd816127a7565b92915050565b6000602082840312156127e9576127e8612771565b5b60006127f7848285016127be565b91505092915050565b60008115159050919050565b61281581612800565b82525050565b6000602082019050612830600083018461280c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612870578082015181840152602081019050612855565b60008484015250505050565b6000601f19601f8301169050919050565b600061289882612836565b6128a28185612841565b93506128b2818560208601612852565b6128bb8161287c565b840191505092915050565b600060208201905081810360008301526128e0818461288d565b905092915050565b6000819050919050565b6128fb816128e8565b811461290657600080fd5b50565b600081359050612918816128f2565b92915050565b60006020828403121561293457612933612771565b5b600061294284828501612909565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129768261294b565b9050919050565b6129868161296b565b82525050565b60006020820190506129a1600083018461297d565b92915050565b6129b08161296b565b81146129bb57600080fd5b50565b6000813590506129cd816129a7565b92915050565b600080604083850312156129ea576129e9612771565b5b60006129f8858286016129be565b9250506020612a0985828601612909565b9150509250929050565b612a1c816128e8565b82525050565b6000602082019050612a376000830184612a13565b92915050565b600080600060608486031215612a5657612a55612771565b5b6000612a64868287016129be565b9350506020612a75868287016129be565b9250506040612a8686828701612909565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612ab557612ab4612a90565b5b8235905067ffffffffffffffff811115612ad257612ad1612a95565b5b602083019150836020820283011115612aee57612aed612a9a565b5b9250929050565b60008060208385031215612b0c57612b0b612771565b5b600083013567ffffffffffffffff811115612b2a57612b29612776565b5b612b3685828601612a9f565b92509250509250929050565b600060208284031215612b5857612b57612771565b5b6000612b66848285016129be565b91505092915050565b612b7881612800565b8114612b8357600080fd5b50565b600081359050612b9581612b6f565b92915050565b60008060408385031215612bb257612bb1612771565b5b6000612bc0858286016129be565b9250506020612bd185828601612b86565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c188261287c565b810181811067ffffffffffffffff82111715612c3757612c36612be0565b5b80604052505050565b6000612c4a612767565b9050612c568282612c0f565b919050565b600067ffffffffffffffff821115612c7657612c75612be0565b5b612c7f8261287c565b9050602081019050919050565b82818337600083830152505050565b6000612cae612ca984612c5b565b612c40565b905082815260208101848484011115612cca57612cc9612bdb565b5b612cd5848285612c8c565b509392505050565b600082601f830112612cf257612cf1612a90565b5b8135612d02848260208601612c9b565b91505092915050565b60008060008060808587031215612d2557612d24612771565b5b6000612d33878288016129be565b9450506020612d44878288016129be565b9350506040612d5587828801612909565b925050606085013567ffffffffffffffff811115612d7657612d75612776565b5b612d8287828801612cdd565b91505092959194509250565b60008060408385031215612da557612da4612771565b5b6000612db3858286016129be565b9250506020612dc4858286016129be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e1557607f821691505b602082108103612e2857612e27612dce565b5b50919050565b7f53616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b6000612e64601083612841565b9150612e6f82612e2e565b602082019050919050565b60006020820190508181036000830152612e9381612e57565b9050919050565b7f4f6e6c7920454f412077616c6c65747300000000000000000000000000000000600082015250565b6000612ed0601083612841565b9150612edb82612e9a565b602082019050919050565b60006020820190508181036000830152612eff81612ec3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f40826128e8565b9150612f4b836128e8565b9250828201905080821115612f6357612f62612f06565b5b92915050565b7f596f752063616e206f6e6c79206d696e74206f6e652070617373000000000000600082015250565b6000612f9f601a83612841565b9150612faa82612f69565b602082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061300b601283612841565b915061301682612fd5565b602082019050919050565b6000602082019050818103600083015261303a81612ffe565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613077601283612841565b915061308282613041565b602082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b60006040820190506130c2600083018561297d565b6130cf602083018461297d565b9392505050565b6000815190506130e581612b6f565b92915050565b60006020828403121561310157613100612771565b5b600061310f848285016130d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613152826128e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361318457613183612f06565b5b600182019050919050565b7f596f757220616464726573732069736e27742077686974656c69737465640000600082015250565b60006131c5601e83612841565b91506131d08261318f565b602082019050919050565b600060208201905081810360008301526131f4816131b8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613257602f83612841565b9150613262826131fb565b604082019050919050565b600060208201905081810360008301526132868161324a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132e9602683612841565b91506132f48261328d565b604082019050919050565b60006020820190508181036000830152613318816132dc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613355602083612841565b91506133608261331f565b602082019050919050565b6000602082019050818103600083015261338481613348565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133b28261338b565b6133bc8185613396565b93506133cc818560208601612852565b6133d58161287c565b840191505092915050565b60006080820190506133f5600083018761297d565b613402602083018661297d565b61340f6040830185612a13565b818103606083015261342181846133a7565b905095945050505050565b60008151905061343b816127a7565b92915050565b60006020828403121561345757613456612771565b5b60006134658482850161342c565b9150509291505056fe697066733a2f2f516d6166576552554658436854535548544e41565157375735466a56366f676d514b534b59426638636b353142682fa26469706673582212200c5b4ffa92e7d32972ec1bfb4b6828e593c384e22c26e23e4ddd7d40589946a864736f6c63430008110033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80637f649783116100f75780639b19251a11610095578063daaeec8611610064578063daaeec86146105ee578063e71433d614610605578063e985e9c51461062e578063f2fde38b1461066b576101cd565b80639b19251a1461052f578063a22cb4651461056c578063b88d4fde14610595578063c87b56dd146105b1576101cd565b80638da5cb5b116100d15780638da5cb5b14610483578063957aa58c146104ae578063958f6ed6146104d957806395d89b4114610504576101cd565b80637f64978314610425578063804f43cd1461044e5780638d859f3e14610458576101cd565b80633ccfd60b1161016f5780636352211e1161013e5780636352211e146103695780636c0360eb146103a657806370a08231146103d1578063715018a61461040e576101cd565b80633ccfd60b146102e457806342842e0e146102fb57806342966c6814610317578063548db17414610340576101cd565b8063095ea7b3116101ab578063095ea7b3146102775780631249c58b1461029357806318160ddd1461029d57806323b872dd146102c8576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f491906127d3565b610694565b604051610206919061281b565b60405180910390f35b34801561021b57600080fd5b50610224610726565b60405161023191906128c6565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c919061291e565b6107b8565b60405161026e919061298c565b60405180910390f35b610291600480360381019061028c91906129d3565b610837565b005b61029b61097b565b005b3480156102a957600080fd5b506102b2610b3e565b6040516102bf9190612a22565b60405180910390f35b6102e260048036038101906102dd9190612a3d565b610b55565b005b3480156102f057600080fd5b506102f9610d37565b005b61031560048036038101906103109190612a3d565b610d88565b005b34801561032357600080fd5b5061033e6004803603810190610339919061291e565b610f6a565b005b34801561034c57600080fd5b5061036760048036038101906103629190612af5565b610f80565b005b34801561037557600080fd5b50610390600480360381019061038b919061291e565b611024565b60405161039d919061298c565b60405180910390f35b3480156103b257600080fd5b506103bb611036565b6040516103c891906128c6565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612b42565b611052565b6040516104059190612a22565b60405180910390f35b34801561041a57600080fd5b5061042361110a565b005b34801561043157600080fd5b5061044c60048036038101906104479190612af5565b61111e565b005b6104566111cb565b005b34801561046457600080fd5b5061046d6113cb565b60405161047a9190612a22565b60405180910390f35b34801561048f57600080fd5b506104986113d7565b6040516104a5919061298c565b60405180910390f35b3480156104ba57600080fd5b506104c3611401565b6040516104d0919061281b565b60405180910390f35b3480156104e557600080fd5b506104ee611414565b6040516104fb9190612a22565b60405180910390f35b34801561051057600080fd5b50610519611419565b60405161052691906128c6565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612b42565b6114ab565b604051610563919061281b565b60405180910390f35b34801561057857600080fd5b50610593600480360381019061058e9190612b9b565b6114cb565b005b6105af60048036038101906105aa9190612d0b565b6115d6565b005b3480156105bd57600080fd5b506105d860048036038101906105d3919061291e565b6117bb565b6040516105e591906128c6565b60405180910390f35b3480156105fa57600080fd5b50610603611825565b005b34801561061157600080fd5b5061062c600480360381019061062791906129d3565b611859565b005b34801561063a57600080fd5b5061065560048036038101906106509190612d8e565b6118c5565b604051610662919061281b565b60405180910390f35b34801561067757600080fd5b50610692600480360381019061068d9190612b42565b611959565b005b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ef57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073590612dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461076190612dfd565b80156107ae5780601f10610783576101008083540402835291602001916107ae565b820191906000526020600020905b81548152906001019060200180831161079157829003601f168201915b5050505050905090565b60006107c3826119dc565b6107f9576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061084282611024565b90508073ffffffffffffffffffffffffffffffffffffffff16610863611a3b565b73ffffffffffffffffffffffffffffffffffffffff16146108c65761088f8161088a611a3b565b6118c5565b6108c5576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600860149054906101000a900460ff166109ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c190612e7a565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2f90612ee6565b60405180910390fd5b600180610a4433611a43565b610a4e9190612f35565b1115610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8690612fb5565b60405180910390fd5b60c86001610a9b610b3e565b610aa59190612f35565b1115610ae6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610add90613021565b60405180910390fd5b6703782dace9d90000341015610b31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b289061308d565b60405180910390fd5b610b3c336001611a9a565b565b6000610b48611ab8565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d25573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bc757610bc2848484611abd565b610d31565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610c109291906130ad565b602060405180830381865afa158015610c2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c5191906130eb565b8015610ce357506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ca19291906130ad565b602060405180830381865afa158015610cbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce291906130eb565b5b610d2457336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d1b919061298c565b60405180910390fd5b5b610d30848484611abd565b5b50505050565b610d3f611ddf565b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d85573d6000803e3d6000fd5b50565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f58573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610dfa57610df5848484611e5d565b610f64565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610e439291906130ad565b602060405180830381865afa158015610e60573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e8491906130eb565b8015610f1657506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610ed49291906130ad565b602060405180830381865afa158015610ef1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1591906130eb565b5b610f5757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f4e919061298c565b60405180910390fd5b5b610f63848484611e5d565b5b50505050565b610f72611ddf565b610f7d816000611e7d565b50565b610f88611ddf565b60005b8282905081101561101f5760096000848484818110610fad57610fac613118565b5b9050602002016020810190610fc29190612b42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff0219169055808061101790613147565b915050610f8b565b505050565b600061102f826120cf565b9050919050565b60405180606001604052806036815260200161346f6036913981565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110b9576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611112611ddf565b61111c600061219b565b565b611126611ddf565b60005b828290508110156111c65760016009600085858581811061114d5761114c613118565b5b90506020020160208101906111629190612b42565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806111be90613147565b915050611129565b505050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611239576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123090612ee6565b60405180910390fd5b60018061124533611a43565b61124f9190612f35565b1115611290576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128790612fb5565b60405180910390fd5b60c8600161129c610b3e565b6112a69190612f35565b11156112e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112de90613021565b60405180910390fd5b6703782dace9d90000341015611332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113299061308d565b60405180910390fd5b600960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166113be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b5906131db565b60405180910390fd5b6113c9336001611a9a565b565b6703782dace9d9000081565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860149054906101000a900460ff1681565b60c881565b60606003805461142890612dfd565b80601f016020809104026020016040519081016040528092919081815260200182805461145490612dfd565b80156114a15780601f10611476576101008083540402835291602001916114a1565b820191906000526020600020905b81548152906001019060200180831161148457829003601f168201915b5050505050905090565b60096020528060005260406000206000915054906101000a900460ff1681565b80600760006114d8611a3b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611585611a3b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ca919061281b565b60405180910390a35050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156117a7573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036116495761164485858585612261565b6117b4565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016116929291906130ad565b602060405180830381865afa1580156116af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116d391906130eb565b801561176557506daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016117239291906130ad565b602060405180830381865afa158015611740573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061176491906130eb565b5b6117a657336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161179d919061298c565b60405180910390fd5b5b6117b385858585612261565b5b5050505050565b60606117c6826119dc565b611805576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fc9061326d565b60405180910390fd5b60405180606001604052806036815260200161346f603691399050919050565b61182d611ddf565b600860149054906101000a900460ff1615600860146101000a81548160ff021916908315150217905550565b611861611ddf565b60c88161186c610b3e565b6118769190612f35565b11156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae90613021565b60405180910390fd5b6118c18282611a9a565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611961611ddf565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036119d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c7906132ff565b60405180910390fd5b6119d98161219b565b50565b6000816119e7611ab8565b111580156119f6575060005482105b8015611a34575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b611ab48282604051806020016040528060008152506122d4565b5050565b600090565b6000611ac8826120cf565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611b2f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611b3b84612371565b91509150611b518187611b4c611a3b565b612398565b611b9d57611b6686611b61611a3b565b6118c5565b611b9c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611c03576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611c1086868660016123dc565b8015611c1b57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611ce985611cc58888876123e2565b7c02000000000000000000000000000000000000000000000000000000001761240a565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603611d6f5760006001850190506000600460008381526020019081526020016000205403611d6d576000548114611d6c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611dd78686866001612435565b505050505050565b611de761243b565b73ffffffffffffffffffffffffffffffffffffffff16611e056113d7565b73ffffffffffffffffffffffffffffffffffffffff1614611e5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e529061336b565b60405180910390fd5b565b611e78838383604051806020016040528060008152506115d6565b505050565b6000611e88836120cf565b90506000819050600080611e9b86612371565b915091508415611f0457611eb78184611eb2611a3b565b612398565b611f0357611ecc83611ec7611a3b565b6118c5565b611f02576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b5b611f128360008860016123dc565b8015611f1d57600082555b600160806001901b03600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611fc583611f82856000886123e2565b7c02000000000000000000000000000000000000000000000000000000007c0100000000000000000000000000000000000000000000000000000000171761240a565b600460008881526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000085160361204b5760006001870190506000600460008381526020019081526020016000205403612049576000548114612048578460046000838152602001908152602001600020819055505b5b505b85600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120b5836000886001612435565b600160008154809291906001019190505550505050505050565b600080829050806120de611ab8565b11612164576000548110156121635760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612161575b6000810361215757600460008360019003935083815260200190815260200160002054905061212d565b8092505050612196565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61226c848484610b55565b60008373ffffffffffffffffffffffffffffffffffffffff163b146122ce5761229784848484612443565b6122cd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6122de8383612593565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461236c57600080549050600083820390505b61231e6000868380600101945086612443565b612354576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061230b57816000541461236957600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123f986868461274e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612469611a3b565b8786866040518563ffffffff1660e01b815260040161248b94939291906133e0565b6020604051808303816000875af19250505080156124c757506040513d601f19601f820116820180604052508101906124c49190613441565b60015b612540573d80600081146124f7576040519150601f19603f3d011682016040523d82523d6000602084013e6124fc565b606091505b506000815103612538576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b600080549050600082036125d3576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125e060008483856123dc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126578361264860008660006123e2565b61265185612757565b1761240a565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146126f857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506126bd565b5060008203612733576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127496000848385612435565b505050565b60009392505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6127b08161277b565b81146127bb57600080fd5b50565b6000813590506127cd816127a7565b92915050565b6000602082840312156127e9576127e8612771565b5b60006127f7848285016127be565b91505092915050565b60008115159050919050565b61281581612800565b82525050565b6000602082019050612830600083018461280c565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612870578082015181840152602081019050612855565b60008484015250505050565b6000601f19601f8301169050919050565b600061289882612836565b6128a28185612841565b93506128b2818560208601612852565b6128bb8161287c565b840191505092915050565b600060208201905081810360008301526128e0818461288d565b905092915050565b6000819050919050565b6128fb816128e8565b811461290657600080fd5b50565b600081359050612918816128f2565b92915050565b60006020828403121561293457612933612771565b5b600061294284828501612909565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006129768261294b565b9050919050565b6129868161296b565b82525050565b60006020820190506129a1600083018461297d565b92915050565b6129b08161296b565b81146129bb57600080fd5b50565b6000813590506129cd816129a7565b92915050565b600080604083850312156129ea576129e9612771565b5b60006129f8858286016129be565b9250506020612a0985828601612909565b9150509250929050565b612a1c816128e8565b82525050565b6000602082019050612a376000830184612a13565b92915050565b600080600060608486031215612a5657612a55612771565b5b6000612a64868287016129be565b9350506020612a75868287016129be565b9250506040612a8686828701612909565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f840112612ab557612ab4612a90565b5b8235905067ffffffffffffffff811115612ad257612ad1612a95565b5b602083019150836020820283011115612aee57612aed612a9a565b5b9250929050565b60008060208385031215612b0c57612b0b612771565b5b600083013567ffffffffffffffff811115612b2a57612b29612776565b5b612b3685828601612a9f565b92509250509250929050565b600060208284031215612b5857612b57612771565b5b6000612b66848285016129be565b91505092915050565b612b7881612800565b8114612b8357600080fd5b50565b600081359050612b9581612b6f565b92915050565b60008060408385031215612bb257612bb1612771565b5b6000612bc0858286016129be565b9250506020612bd185828601612b86565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612c188261287c565b810181811067ffffffffffffffff82111715612c3757612c36612be0565b5b80604052505050565b6000612c4a612767565b9050612c568282612c0f565b919050565b600067ffffffffffffffff821115612c7657612c75612be0565b5b612c7f8261287c565b9050602081019050919050565b82818337600083830152505050565b6000612cae612ca984612c5b565b612c40565b905082815260208101848484011115612cca57612cc9612bdb565b5b612cd5848285612c8c565b509392505050565b600082601f830112612cf257612cf1612a90565b5b8135612d02848260208601612c9b565b91505092915050565b60008060008060808587031215612d2557612d24612771565b5b6000612d33878288016129be565b9450506020612d44878288016129be565b9350506040612d5587828801612909565b925050606085013567ffffffffffffffff811115612d7657612d75612776565b5b612d8287828801612cdd565b91505092959194509250565b60008060408385031215612da557612da4612771565b5b6000612db3858286016129be565b9250506020612dc4858286016129be565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612e1557607f821691505b602082108103612e2857612e27612dce565b5b50919050565b7f53616c65206973206e6f74206c69766500000000000000000000000000000000600082015250565b6000612e64601083612841565b9150612e6f82612e2e565b602082019050919050565b60006020820190508181036000830152612e9381612e57565b9050919050565b7f4f6e6c7920454f412077616c6c65747300000000000000000000000000000000600082015250565b6000612ed0601083612841565b9150612edb82612e9a565b602082019050919050565b60006020820190508181036000830152612eff81612ec3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612f40826128e8565b9150612f4b836128e8565b9250828201905080821115612f6357612f62612f06565b5b92915050565b7f596f752063616e206f6e6c79206d696e74206f6e652070617373000000000000600082015250565b6000612f9f601a83612841565b9150612faa82612f69565b602082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b7f45786365656473206d617820737570706c790000000000000000000000000000600082015250565b600061300b601283612841565b915061301682612fd5565b602082019050919050565b6000602082019050818103600083015261303a81612ffe565b9050919050565b7f496e73756666696369656e742066756e64730000000000000000000000000000600082015250565b6000613077601283612841565b915061308282613041565b602082019050919050565b600060208201905081810360008301526130a68161306a565b9050919050565b60006040820190506130c2600083018561297d565b6130cf602083018461297d565b9392505050565b6000815190506130e581612b6f565b92915050565b60006020828403121561310157613100612771565b5b600061310f848285016130d6565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000613152826128e8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361318457613183612f06565b5b600182019050919050565b7f596f757220616464726573732069736e27742077686974656c69737465640000600082015250565b60006131c5601e83612841565b91506131d08261318f565b602082019050919050565b600060208201905081810360008301526131f4816131b8565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613257602f83612841565b9150613262826131fb565b604082019050919050565b600060208201905081810360008301526132868161324a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006132e9602683612841565b91506132f48261328d565b604082019050919050565b60006020820190508181036000830152613318816132dc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613355602083612841565b91506133608261331f565b602082019050919050565b6000602082019050818103600083015261338481613348565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006133b28261338b565b6133bc8185613396565b93506133cc818560208601612852565b6133d58161287c565b840191505092915050565b60006080820190506133f5600083018761297d565b613402602083018661297d565b61340f6040830185612a13565b818103606083015261342181846133a7565b905095945050505050565b60008151905061343b816127a7565b92915050565b60006020828403121561345757613456612771565b5b60006134658482850161342c565b9150509291505056fe697066733a2f2f516d6166576552554658436854535548544e41565157375735466a56366f676d514b534b59426638636b353142682fa26469706673582212200c5b4ffa92e7d32972ec1bfb4b6828e593c384e22c26e23e4ddd7d40589946a864736f6c63430008110033

Deployed Bytecode Sourcemap

59872:4365:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26772:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27674:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34165:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33598:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60998:410;;;:::i;:::-;;23425:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63623:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62254:109;;;;;;;;;;;;;:::i;:::-;;63802:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62816:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63342:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29067:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60375:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24609:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7551:103;;;;;;;;;;;;;:::i;:::-;;63043:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61513:450;;;:::i;:::-;;60151:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6903:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60285:16;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60030:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27850:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62914:41;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34723:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63989:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62521:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62061:77;;;;;;;;;;;;;:::i;:::-;;60691:198;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35114:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7809:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26772:639;26857:4;27196:10;27181:25;;:11;:25;;;;:102;;;;27273:10;27258:25;;:11;:25;;;;27181:102;:179;;;;27350:10;27335:25;;:11;:25;;;;27181:179;27161:199;;26772:639;;;:::o;27674:100::-;27728:13;27761:5;27754:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27674:100;:::o;34165:218::-;34241:7;34266:16;34274:7;34266;:16::i;:::-;34261:64;;34291:34;;;;;;;;;;;;;;34261:64;34345:15;:24;34361:7;34345:24;;;;;;;;;;;:30;;;;;;;;;;;;34338:37;;34165:218;;;:::o;33598:408::-;33687:13;33703:16;33711:7;33703;:16::i;:::-;33687:32;;33759:5;33736:28;;:19;:17;:19::i;:::-;:28;;;33732:175;;33784:44;33801:5;33808:19;:17;:19::i;:::-;33784:16;:44::i;:::-;33779:128;;33856:35;;;;;;;;;;;;;;33779:128;33732:175;33952:2;33919:15;:24;33935:7;33919:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33990:7;33986:2;33970:28;;33979:5;33970:28;;;;;;;;;;;;33676:330;33598:408;;:::o;60998:410::-;61050:4;;;;;;;;;;;61042:33;;;;;;;;;;;;:::i;:::-;;;;;;;;;61108:9;61094:23;;:10;:23;;;61086:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;61190:1;61185;61157:25;61171:10;61157:13;:25::i;:::-;:29;;;;:::i;:::-;:34;;61149:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;60067:3;61257:1;61241:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;61233:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60183:10;61314:9;:18;;61306:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;61376:24;61386:10;61398:1;61376:9;:24::i;:::-;60998:410::o;23425:323::-;23486:7;23714:15;:13;:15::i;:::-;23699:12;;23683:13;;:28;:46;23676:53;;23425:323;:::o;63623:171::-;63732:4;3718:1;2532:42;3672:43;;;:47;3668:699;;;3959:10;3951:18;;:4;:18;;;3947:85;;63749:37:::1;63768:4;63774:2;63778:7;63749:18;:37::i;:::-;4010:7:::0;;3947:85;2532:42;4092:40;;;4141:4;4148:10;4092:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2532:42;4188:40;;;4237:4;4244;4188:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4092:157;4046:310;;4329:10;4310:30;;;;;;;;;;;:::i;:::-;;;;;;;;4046:310;3668:699;63749:37:::1;63768:4;63774:2;63778:7;63749:18;:37::i;:::-;63623:171:::0;;;;;:::o;62254:109::-;6789:13;:11;:13::i;:::-;62312:10:::1;62304:28;;:51;62333:21;62304:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;62254:109::o:0;63802:179::-;63915:4;3718:1;2532:42;3672:43;;;:47;3668:699;;;3959:10;3951:18;;:4;:18;;;3947:85;;63932:41:::1;63955:4;63961:2;63965:7;63932:22;:41::i;:::-;4010:7:::0;;3947:85;2532:42;4092:40;;;4141:4;4148:10;4092:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2532:42;4188:40;;;4237:4;4244;4188:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4092:157;4046:310;;4329:10;4310:30;;;;;;;;;;;:::i;:::-;;;;;;;;4046:310;3668:699;63932:41:::1;63955:4;63961:2;63965:7;63932:22;:41::i;:::-;63802:179:::0;;;;;:::o;62816:90::-;6789:13;:11;:13::i;:::-;62877:21:::1;62883:7;62892:5;62877;:21::i;:::-;62816:90:::0;:::o;63342:221::-;6789:13;:11;:13::i;:::-;63444:6:::1;63439:117;63460:17;;:24;;63456:1;:28;63439:117;;;63513:9;:31;63523:17;;63541:1;63523:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63513:31;;;;;;;;;;;;;;;;63506:38;;;;;;;;;;;63486:3;;;;;:::i;:::-;;;;63439:117;;;;63342:221:::0;;:::o;29067:152::-;29139:7;29182:27;29201:7;29182:18;:27::i;:::-;29159:52;;29067:152;;;:::o;60375:89::-;;;;;;;;;;;;;;;;;;;:::o;24609:233::-;24681:7;24722:1;24705:19;;:5;:19;;;24701:60;;24733:28;;;;;;;;;;;;;;24701:60;18768:13;24779:18;:25;24798:5;24779:25;;;;;;;;;;;;;;;;:55;24772:62;;24609:233;;;:::o;7551:103::-;6789:13;:11;:13::i;:::-;7616:30:::1;7643:1;7616:18;:30::i;:::-;7551:103::o:0;63043:207::-;6789:13;:11;:13::i;:::-;63137:6:::1;63132:111;63153:14;;:21;;63149:1;:25;63132:111;;;63227:4;63196:9;:28;63206:14;;63221:1;63206:17;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63196:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;63176:3;;;;;:::i;:::-;;;;63132:111;;;;63043:207:::0;;:::o;61513:450::-;61588:9;61574:23;;:10;:23;;;61566:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;61670:1;61665;61637:25;61651:10;61637:13;:25::i;:::-;:29;;;;:::i;:::-;:34;;61629:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;60067:3;61737:1;61721:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:31;;61713:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;60183:10;61794:9;:18;;61786:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;61854:9;:21;61864:10;61854:21;;;;;;;;;;;;;;;;;;;;;;;;;61846:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;61931:24;61941:10;61953:1;61931:9;:24::i;:::-;61513:450::o;60151:42::-;60183:10;60151:42;:::o;6903:87::-;6949:7;6976:6;;;;;;;;;;;6969:13;;6903:87;:::o;60285:16::-;;;;;;;;;;;;;:::o;60030:40::-;60067:3;60030:40;:::o;27850:104::-;27906:13;27939:7;27932:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27850:104;:::o;62914:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;34723:234::-;34870:8;34818:18;:39;34837:19;:17;:19::i;:::-;34818:39;;;;;;;;;;;;;;;:49;34858:8;34818:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;34930:8;34894:55;;34909:19;:17;:19::i;:::-;34894:55;;;34940:8;34894:55;;;;;;:::i;:::-;;;;;;;;34723:234;;:::o;63989:245::-;64157:4;3718:1;2532:42;3672:43;;;:47;3668:699;;;3959:10;3951:18;;:4;:18;;;3947:85;;64179:47:::1;64202:4;64208:2;64212:7;64221:4;64179:22;:47::i;:::-;4010:7:::0;;3947:85;2532:42;4092:40;;;4141:4;4148:10;4092:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:157;;;;;2532:42;4188:40;;;4237:4;4244;4188:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;4092:157;4046:310;;4329:10;4310:30;;;;;;;;;;;:::i;:::-;;;;;;;;4046:310;3668:699;64179:47:::1;64202:4;64208:2;64212:7;64221:4;64179:22;:47::i;:::-;63989:245:::0;;;;;;:::o;62521:200::-;62586:13;62620:16;62628:7;62620;:16::i;:::-;62612:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;62706:7;;;;;;;;;;;;;;;;;62699:14;;62521:200;;;:::o;62061:77::-;6789:13;:11;:13::i;:::-;62126:4:::1;;;;;;;;;;;62125:5;62118:4;;:12;;;;;;;;;;;;;;;;;;62061:77::o:0;60691:198::-;6789:13;:11;:13::i;:::-;60067:3:::1;60802:8;60786:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;60778:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;60858:23;60868:2;60872:8;60858:9;:23::i;:::-;60691:198:::0;;:::o;35114:164::-;35211:4;35235:18;:25;35254:5;35235:25;;;;;;;;;;;;;;;:35;35261:8;35235:35;;;;;;;;;;;;;;;;;;;;;;;;;35228:42;;35114:164;;;;:::o;7809:201::-;6789:13;:11;:13::i;:::-;7918:1:::1;7898:22;;:8;:22;;::::0;7890:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7974:28;7993:8;7974:18;:28::i;:::-;7809:201:::0;:::o;35536:282::-;35601:4;35657:7;35638:15;:13;:15::i;:::-;:26;;:66;;;;;35691:13;;35681:7;:23;35638:66;:153;;;;;35790:1;19544:8;35742:17;:26;35760:7;35742:26;;;;;;;;;;;;:44;:49;35638:153;35618:173;;35536:282;;;:::o;57844:105::-;57904:7;57931:10;57924:17;;57844:105;:::o;24924:178::-;24985:7;18768:13;18906:2;25013:18;:25;25032:5;25013:25;;;;;;;;;;;;;;;;:50;;25012:82;25005:89;;24924:178;;;:::o;51676:112::-;51753:27;51763:2;51767:8;51753:27;;;;;;;;;;;;:9;:27::i;:::-;51676:112;;:::o;22941:92::-;22997:7;22941:92;:::o;37804:2825::-;37946:27;37976;37995:7;37976:18;:27::i;:::-;37946:57;;38061:4;38020:45;;38036:19;38020:45;;;38016:86;;38074:28;;;;;;;;;;;;;;38016:86;38116:27;38145:23;38172:35;38199:7;38172:26;:35::i;:::-;38115:92;;;;38307:68;38332:15;38349:4;38355:19;:17;:19::i;:::-;38307:24;:68::i;:::-;38302:180;;38395:43;38412:4;38418:19;:17;:19::i;:::-;38395:16;:43::i;:::-;38390:92;;38447:35;;;;;;;;;;;;;;38390:92;38302:180;38513:1;38499:16;;:2;:16;;;38495:52;;38524:23;;;;;;;;;;;;;;38495:52;38560:43;38582:4;38588:2;38592:7;38601:1;38560:21;:43::i;:::-;38696:15;38693:160;;;38836:1;38815:19;38808:30;38693:160;39233:18;:24;39252:4;39233:24;;;;;;;;;;;;;;;;39231:26;;;;;;;;;;;;39302:18;:22;39321:2;39302:22;;;;;;;;;;;;;;;;39300:24;;;;;;;;;;;39624:146;39661:2;39710:45;39725:4;39731:2;39735:19;39710:14;:45::i;:::-;19824:8;39682:73;39624:18;:146::i;:::-;39595:17;:26;39613:7;39595:26;;;;;;;;;;;:175;;;;39941:1;19824:8;39890:19;:47;:52;39886:627;;39963:19;39995:1;39985:7;:11;39963:33;;40152:1;40118:17;:30;40136:11;40118:30;;;;;;;;;;;;:35;40114:384;;40256:13;;40241:11;:28;40237:242;;40436:19;40403:17;:30;40421:11;40403:30;;;;;;;;;;;:52;;;;40237:242;40114:384;39944:569;39886:627;40560:7;40556:2;40541:27;;40550:4;40541:27;;;;;;;;;;;;40579:42;40600:4;40606:2;40610:7;40619:1;40579:20;:42::i;:::-;37935:2694;;;37804:2825;;;:::o;7068:132::-;7143:12;:10;:12::i;:::-;7132:23;;:7;:5;:7::i;:::-;:23;;;7124:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7068:132::o;40725:193::-;40871:39;40888:4;40894:2;40898:7;40871:39;;;;;;;;;;;;:16;:39::i;:::-;40725:193;;;:::o;52373:3081::-;52453:27;52483;52502:7;52483:18;:27::i;:::-;52453:57;;52523:12;52554:19;52523:52;;52589:27;52618:23;52645:35;52672:7;52645:26;:35::i;:::-;52588:92;;;;52697:13;52693:316;;;52818:68;52843:15;52860:4;52866:19;:17;:19::i;:::-;52818:24;:68::i;:::-;52813:184;;52910:43;52927:4;52933:19;:17;:19::i;:::-;52910:16;:43::i;:::-;52905:92;;52962:35;;;;;;;;;;;;;;52905:92;52813:184;52693:316;53021:51;53043:4;53057:1;53061:7;53070:1;53021:21;:51::i;:::-;53165:15;53162:160;;;53305:1;53284:19;53277:30;53162:160;53983:1;19033:3;53953:1;:26;;53952:32;53924:18;:24;53943:4;53924:24;;;;;;;;;;;;;;;;:60;;;;;;;;;;;54251:176;54288:4;54359:53;54374:4;54388:1;54392:19;54359:14;:53::i;:::-;19824:8;19544;54312:43;54311:101;54251:18;:176::i;:::-;54222:17;:26;54240:7;54222:26;;;;;;;;;;;:205;;;;54598:1;19824:8;54547:19;:47;:52;54543:627;;54620:19;54652:1;54642:7;:11;54620:33;;54809:1;54775:17;:30;54793:11;54775:30;;;;;;;;;;;;:35;54771:384;;54913:13;;54898:11;:28;54894:242;;55093:19;55060:17;:30;55078:11;55060:30;;;;;;;;;;;:52;;;;54894:242;54771:384;54601:569;54543:627;55225:7;55221:1;55198:35;;55207:4;55198:35;;;;;;;;;;;;55244:50;55265:4;55279:1;55283:7;55292:1;55244:20;:50::i;:::-;55421:12;;:14;;;;;;;;;;;;;52442:3012;;;;52373:3081;;:::o;30222:1275::-;30289:7;30309:12;30324:7;30309:22;;30392:4;30373:15;:13;:15::i;:::-;:23;30369:1061;;30426:13;;30419:4;:20;30415:1015;;;30464:14;30481:17;:23;30499:4;30481:23;;;;;;;;;;;;30464:40;;30598:1;19544:8;30570:6;:24;:29;30566:845;;31235:113;31252:1;31242:6;:11;31235:113;;31295:17;:25;31313:6;;;;;;;31295:25;;;;;;;;;;;;31286:34;;31235:113;;;31381:6;31374:13;;;;;;30566:845;30441:989;30415:1015;30369:1061;31458:31;;;;;;;;;;;;;;30222:1275;;;;:::o;8170:191::-;8244:16;8263:6;;;;;;;;;;;8244:25;;8289:8;8280:6;;:17;;;;;;;;;;;;;;;;;;8344:8;8313:40;;8334:8;8313:40;;;;;;;;;;;;8233:128;8170:191;:::o;41516:407::-;41691:31;41704:4;41710:2;41714:7;41691:12;:31::i;:::-;41755:1;41737:2;:14;;;:19;41733:183;;41776:56;41807:4;41813:2;41817:7;41826:5;41776:30;:56::i;:::-;41771:145;;41860:40;;;;;;;;;;;;;;41771:145;41733:183;41516:407;;;;:::o;50903:689::-;51034:19;51040:2;51044:8;51034:5;:19::i;:::-;51113:1;51095:2;:14;;;:19;51091:483;;51135:11;51149:13;;51135:27;;51181:13;51203:8;51197:3;:14;51181:30;;51230:233;51261:62;51300:1;51304:2;51308:7;;;;;;51317:5;51261:30;:62::i;:::-;51256:167;;51359:40;;;;;;;;;;;;;;51256:167;51458:3;51450:5;:11;51230:233;;51545:3;51528:13;;:20;51524:34;;51550:8;;;51524:34;51116:458;;51091:483;50903:689;;;:::o;36699:485::-;36801:27;36830:23;36871:38;36912:15;:24;36928:7;36912:24;;;;;;;;;;;36871:65;;37089:18;37066:41;;37146:19;37140:26;37121:45;;37051:126;36699:485;;;:::o;35927:659::-;36076:11;36241:16;36234:5;36230:28;36221:37;;36401:16;36390:9;36386:32;36373:45;;36551:15;36540:9;36537:30;36529:5;36518:9;36515:20;36512:56;36502:66;;35927:659;;;;;:::o;42585:159::-;;;;;:::o;57153:311::-;57288:7;57308:16;19948:3;57334:19;:41;;57308:68;;19948:3;57402:31;57413:4;57419:2;57423:9;57402:10;:31::i;:::-;57394:40;;:62;;57387:69;;;57153:311;;;;;:::o;32045:450::-;32125:14;32293:16;32286:5;32282:28;32273:37;;32470:5;32456:11;32431:23;32427:41;32424:52;32417:5;32414:63;32404:73;;32045:450;;;;:::o;43409:158::-;;;;;:::o;5454:98::-;5507:7;5534:10;5527:17;;5454:98;:::o;44007:716::-;44170:4;44216:2;44191:45;;;44237:19;:17;:19::i;:::-;44258:4;44264:7;44273:5;44191:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44187:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44491:1;44474:6;:13;:18;44470:235;;44520:40;;;;;;;;;;;;;;44470:235;44663:6;44657:13;44648:6;44644:2;44640:15;44633:38;44187:529;44360:54;;;44350:64;;;:6;:64;;;;44343:71;;;44007:716;;;;;;:::o;45185:2966::-;45258:20;45281:13;;45258:36;;45321:1;45309:8;:13;45305:44;;45331:18;;;;;;;;;;;;;;45305:44;45362:61;45392:1;45396:2;45400:12;45414:8;45362:21;:61::i;:::-;45906:1;18906:2;45876:1;:26;;45875:32;45863:8;:45;45837:18;:22;45856:2;45837:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;46185:139;46222:2;46276:33;46299:1;46303:2;46307:1;46276:14;:33::i;:::-;46243:30;46264:8;46243:20;:30::i;:::-;:66;46185:18;:139::i;:::-;46151:17;:31;46169:12;46151:31;;;;;;;;;;;:173;;;;46341:16;46372:11;46401:8;46386:12;:23;46372:37;;46922:16;46918:2;46914:25;46902:37;;47294:12;47254:8;47213:1;47151:25;47092:1;47031;47004:335;47665:1;47651:12;47647:20;47605:346;47706:3;47697:7;47694:16;47605:346;;47924:7;47914:8;47911:1;47884:25;47881:1;47878;47873:59;47759:1;47750:7;47746:15;47735:26;;47605:346;;;47609:77;47996:1;47984:8;:13;47980:45;;48006:19;;;;;;;;;;;;;;47980:45;48058:3;48042:13;:19;;;;45611:2462;;48083:60;48112:1;48116:2;48120:12;48134:8;48083:20;:60::i;:::-;45247:2904;45185:2966;;:::o;56854:147::-;56991:6;56854:147;;;;;:::o;32597:324::-;32667:14;32900:1;32890:8;32887:15;32861:24;32857:46;32847:56;;32597:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6253:568;6326:8;6336:6;6386:3;6379:4;6371:6;6367:17;6363:27;6353:122;;6394:79;;:::i;:::-;6353:122;6507:6;6494:20;6484:30;;6537:18;6529:6;6526:30;6523:117;;;6559:79;;:::i;:::-;6523:117;6673:4;6665:6;6661:17;6649:29;;6727:3;6719:4;6711:6;6707:17;6697:8;6693:32;6690:41;6687:128;;;6734:79;;:::i;:::-;6687:128;6253:568;;;;;:::o;6827:559::-;6913:6;6921;6970:2;6958:9;6949:7;6945:23;6941:32;6938:119;;;6976:79;;:::i;:::-;6938:119;7124:1;7113:9;7109:17;7096:31;7154:18;7146:6;7143:30;7140:117;;;7176:79;;:::i;:::-;7140:117;7289:80;7361:7;7352:6;7341:9;7337:22;7289:80;:::i;:::-;7271:98;;;;7067:312;6827:559;;;;;:::o;7392:329::-;7451:6;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7392:329;;;;:::o;7727:116::-;7797:21;7812:5;7797:21;:::i;:::-;7790:5;7787:32;7777:60;;7833:1;7830;7823:12;7777:60;7727:116;:::o;7849:133::-;7892:5;7930:6;7917:20;7908:29;;7946:30;7970:5;7946:30;:::i;:::-;7849:133;;;;:::o;7988:468::-;8053:6;8061;8110:2;8098:9;8089:7;8085:23;8081:32;8078:119;;;8116:79;;:::i;:::-;8078:119;8236:1;8261:53;8306:7;8297:6;8286:9;8282:22;8261:53;:::i;:::-;8251:63;;8207:117;8363:2;8389:50;8431:7;8422:6;8411:9;8407:22;8389:50;:::i;:::-;8379:60;;8334:115;7988:468;;;;;:::o;8462:117::-;8571:1;8568;8561:12;8585:180;8633:77;8630:1;8623:88;8730:4;8727:1;8720:15;8754:4;8751:1;8744:15;8771:281;8854:27;8876:4;8854:27;:::i;:::-;8846:6;8842:40;8984:6;8972:10;8969:22;8948:18;8936:10;8933:34;8930:62;8927:88;;;8995:18;;:::i;:::-;8927:88;9035:10;9031:2;9024:22;8814:238;8771:281;;:::o;9058:129::-;9092:6;9119:20;;:::i;:::-;9109:30;;9148:33;9176:4;9168:6;9148:33;:::i;:::-;9058:129;;;:::o;9193:307::-;9254:4;9344:18;9336:6;9333:30;9330:56;;;9366:18;;:::i;:::-;9330:56;9404:29;9426:6;9404:29;:::i;:::-;9396:37;;9488:4;9482;9478:15;9470:23;;9193:307;;;:::o;9506:146::-;9603:6;9598:3;9593;9580:30;9644:1;9635:6;9630:3;9626:16;9619:27;9506:146;;;:::o;9658:423::-;9735:5;9760:65;9776:48;9817:6;9776:48;:::i;:::-;9760:65;:::i;:::-;9751:74;;9848:6;9841:5;9834:21;9886:4;9879:5;9875:16;9924:3;9915:6;9910:3;9906:16;9903:25;9900:112;;;9931:79;;:::i;:::-;9900:112;10021:54;10068:6;10063:3;10058;10021:54;:::i;:::-;9741:340;9658:423;;;;;:::o;10100:338::-;10155:5;10204:3;10197:4;10189:6;10185:17;10181:27;10171:122;;10212:79;;:::i;:::-;10171:122;10329:6;10316:20;10354:78;10428:3;10420:6;10413:4;10405:6;10401:17;10354:78;:::i;:::-;10345:87;;10161:277;10100:338;;;;:::o;10444:943::-;10539:6;10547;10555;10563;10612:3;10600:9;10591:7;10587:23;10583:33;10580:120;;;10619:79;;:::i;:::-;10580:120;10739:1;10764:53;10809:7;10800:6;10789:9;10785:22;10764:53;:::i;:::-;10754:63;;10710:117;10866:2;10892:53;10937:7;10928:6;10917:9;10913:22;10892:53;:::i;:::-;10882:63;;10837:118;10994:2;11020:53;11065:7;11056:6;11045:9;11041:22;11020:53;:::i;:::-;11010:63;;10965:118;11150:2;11139:9;11135:18;11122:32;11181:18;11173:6;11170:30;11167:117;;;11203:79;;:::i;:::-;11167:117;11308:62;11362:7;11353:6;11342:9;11338:22;11308:62;:::i;:::-;11298:72;;11093:287;10444:943;;;;;;;:::o;11393:474::-;11461:6;11469;11518:2;11506:9;11497:7;11493:23;11489:32;11486:119;;;11524:79;;:::i;:::-;11486:119;11644:1;11669:53;11714:7;11705:6;11694:9;11690:22;11669:53;:::i;:::-;11659:63;;11615:117;11771:2;11797:53;11842:7;11833:6;11822:9;11818:22;11797:53;:::i;:::-;11787:63;;11742:118;11393:474;;;;;:::o;11873:180::-;11921:77;11918:1;11911:88;12018:4;12015:1;12008:15;12042:4;12039:1;12032:15;12059:320;12103:6;12140:1;12134:4;12130:12;12120:22;;12187:1;12181:4;12177:12;12208:18;12198:81;;12264:4;12256:6;12252:17;12242:27;;12198:81;12326:2;12318:6;12315:14;12295:18;12292:38;12289:84;;12345:18;;:::i;:::-;12289:84;12110:269;12059:320;;;:::o;12385:166::-;12525:18;12521:1;12513:6;12509:14;12502:42;12385:166;:::o;12557:366::-;12699:3;12720:67;12784:2;12779:3;12720:67;:::i;:::-;12713:74;;12796:93;12885:3;12796:93;:::i;:::-;12914:2;12909:3;12905:12;12898:19;;12557:366;;;:::o;12929:419::-;13095:4;13133:2;13122:9;13118:18;13110:26;;13182:9;13176:4;13172:20;13168:1;13157:9;13153:17;13146:47;13210:131;13336:4;13210:131;:::i;:::-;13202:139;;12929:419;;;:::o;13354:166::-;13494:18;13490:1;13482:6;13478:14;13471:42;13354:166;:::o;13526:366::-;13668:3;13689:67;13753:2;13748:3;13689:67;:::i;:::-;13682:74;;13765:93;13854:3;13765:93;:::i;:::-;13883:2;13878:3;13874:12;13867:19;;13526:366;;;:::o;13898:419::-;14064:4;14102:2;14091:9;14087:18;14079:26;;14151:9;14145:4;14141:20;14137:1;14126:9;14122:17;14115:47;14179:131;14305:4;14179:131;:::i;:::-;14171:139;;13898:419;;;:::o;14323:180::-;14371:77;14368:1;14361:88;14468:4;14465:1;14458:15;14492:4;14489:1;14482:15;14509:191;14549:3;14568:20;14586:1;14568:20;:::i;:::-;14563:25;;14602:20;14620:1;14602:20;:::i;:::-;14597:25;;14645:1;14642;14638:9;14631:16;;14666:3;14663:1;14660:10;14657:36;;;14673:18;;:::i;:::-;14657:36;14509:191;;;;:::o;14706:176::-;14846:28;14842:1;14834:6;14830:14;14823:52;14706:176;:::o;14888:366::-;15030:3;15051:67;15115:2;15110:3;15051:67;:::i;:::-;15044:74;;15127:93;15216:3;15127:93;:::i;:::-;15245:2;15240:3;15236:12;15229:19;;14888:366;;;:::o;15260:419::-;15426:4;15464:2;15453:9;15449:18;15441:26;;15513:9;15507:4;15503:20;15499:1;15488:9;15484:17;15477:47;15541:131;15667:4;15541:131;:::i;:::-;15533:139;;15260:419;;;:::o;15685:168::-;15825:20;15821:1;15813:6;15809:14;15802:44;15685:168;:::o;15859:366::-;16001:3;16022:67;16086:2;16081:3;16022:67;:::i;:::-;16015:74;;16098:93;16187:3;16098:93;:::i;:::-;16216:2;16211:3;16207:12;16200:19;;15859:366;;;:::o;16231:419::-;16397:4;16435:2;16424:9;16420:18;16412:26;;16484:9;16478:4;16474:20;16470:1;16459:9;16455:17;16448:47;16512:131;16638:4;16512:131;:::i;:::-;16504:139;;16231:419;;;:::o;16656:168::-;16796:20;16792:1;16784:6;16780:14;16773:44;16656:168;:::o;16830:366::-;16972:3;16993:67;17057:2;17052:3;16993:67;:::i;:::-;16986:74;;17069:93;17158:3;17069:93;:::i;:::-;17187:2;17182:3;17178:12;17171:19;;16830:366;;;:::o;17202:419::-;17368:4;17406:2;17395:9;17391:18;17383:26;;17455:9;17449:4;17445:20;17441:1;17430:9;17426:17;17419:47;17483:131;17609:4;17483:131;:::i;:::-;17475:139;;17202:419;;;:::o;17627:332::-;17748:4;17786:2;17775:9;17771:18;17763:26;;17799:71;17867:1;17856:9;17852:17;17843:6;17799:71;:::i;:::-;17880:72;17948:2;17937:9;17933:18;17924:6;17880:72;:::i;:::-;17627:332;;;;;:::o;17965:137::-;18019:5;18050:6;18044:13;18035:22;;18066:30;18090:5;18066:30;:::i;:::-;17965:137;;;;:::o;18108:345::-;18175:6;18224:2;18212:9;18203:7;18199:23;18195:32;18192:119;;;18230:79;;:::i;:::-;18192:119;18350:1;18375:61;18428:7;18419:6;18408:9;18404:22;18375:61;:::i;:::-;18365:71;;18321:125;18108:345;;;;:::o;18459:180::-;18507:77;18504:1;18497:88;18604:4;18601:1;18594:15;18628:4;18625:1;18618:15;18645:233;18684:3;18707:24;18725:5;18707:24;:::i;:::-;18698:33;;18753:66;18746:5;18743:77;18740:103;;18823:18;;:::i;:::-;18740:103;18870:1;18863:5;18859:13;18852:20;;18645:233;;;:::o;18884:180::-;19024:32;19020:1;19012:6;19008:14;19001:56;18884:180;:::o;19070:366::-;19212:3;19233:67;19297:2;19292:3;19233:67;:::i;:::-;19226:74;;19309:93;19398:3;19309:93;:::i;:::-;19427:2;19422:3;19418:12;19411:19;;19070:366;;;:::o;19442:419::-;19608:4;19646:2;19635:9;19631:18;19623:26;;19695:9;19689:4;19685:20;19681:1;19670:9;19666:17;19659:47;19723:131;19849:4;19723:131;:::i;:::-;19715:139;;19442:419;;;:::o;19867:234::-;20007:34;20003:1;19995:6;19991:14;19984:58;20076:17;20071:2;20063:6;20059:15;20052:42;19867:234;:::o;20107:366::-;20249:3;20270:67;20334:2;20329:3;20270:67;:::i;:::-;20263:74;;20346:93;20435:3;20346:93;:::i;:::-;20464:2;20459:3;20455:12;20448:19;;20107:366;;;:::o;20479:419::-;20645:4;20683:2;20672:9;20668:18;20660:26;;20732:9;20726:4;20722:20;20718:1;20707:9;20703:17;20696:47;20760:131;20886:4;20760:131;:::i;:::-;20752:139;;20479:419;;;:::o;20904:225::-;21044:34;21040:1;21032:6;21028:14;21021:58;21113:8;21108:2;21100:6;21096:15;21089:33;20904:225;:::o;21135:366::-;21277:3;21298:67;21362:2;21357:3;21298:67;:::i;:::-;21291:74;;21374:93;21463:3;21374:93;:::i;:::-;21492:2;21487:3;21483:12;21476:19;;21135:366;;;:::o;21507:419::-;21673:4;21711:2;21700:9;21696:18;21688:26;;21760:9;21754:4;21750:20;21746:1;21735:9;21731:17;21724:47;21788:131;21914:4;21788:131;:::i;:::-;21780:139;;21507:419;;;:::o;21932:182::-;22072:34;22068:1;22060:6;22056:14;22049:58;21932:182;:::o;22120:366::-;22262:3;22283:67;22347:2;22342:3;22283:67;:::i;:::-;22276:74;;22359:93;22448:3;22359:93;:::i;:::-;22477:2;22472:3;22468:12;22461:19;;22120:366;;;:::o;22492:419::-;22658:4;22696:2;22685:9;22681:18;22673:26;;22745:9;22739:4;22735:20;22731:1;22720:9;22716:17;22709:47;22773:131;22899:4;22773:131;:::i;:::-;22765:139;;22492:419;;;:::o;22917:98::-;22968:6;23002:5;22996:12;22986:22;;22917:98;;;:::o;23021:168::-;23104:11;23138:6;23133:3;23126:19;23178:4;23173:3;23169:14;23154:29;;23021:168;;;;:::o;23195:373::-;23281:3;23309:38;23341:5;23309:38;:::i;:::-;23363:70;23426:6;23421:3;23363:70;:::i;:::-;23356:77;;23442:65;23500:6;23495:3;23488:4;23481:5;23477:16;23442:65;:::i;:::-;23532:29;23554:6;23532:29;:::i;:::-;23527:3;23523:39;23516:46;;23285:283;23195:373;;;;:::o;23574:640::-;23769:4;23807:3;23796:9;23792:19;23784:27;;23821:71;23889:1;23878:9;23874:17;23865:6;23821:71;:::i;:::-;23902:72;23970:2;23959:9;23955:18;23946:6;23902:72;:::i;:::-;23984;24052:2;24041:9;24037:18;24028:6;23984:72;:::i;:::-;24103:9;24097:4;24093:20;24088:2;24077:9;24073:18;24066:48;24131:76;24202:4;24193:6;24131:76;:::i;:::-;24123:84;;23574:640;;;;;;;:::o;24220:141::-;24276:5;24307:6;24301:13;24292:22;;24323:32;24349:5;24323:32;:::i;:::-;24220:141;;;;:::o;24367:349::-;24436:6;24485:2;24473:9;24464:7;24460:23;24456:32;24453:119;;;24491:79;;:::i;:::-;24453:119;24611:1;24636:63;24691:7;24682:6;24671:9;24667:22;24636:63;:::i;:::-;24626:73;;24582:127;24367:349;;;;:::o

Swarm Source

ipfs://0c5b4ffa92e7d32972ec1bfb4b6828e593c384e22c26e23e4ddd7d40589946a8
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.