ETH Price: $3,393.11 (-1.26%)
Gas: 2 Gwei

Token

The legend of Duck (TLOD)
 

Overview

Max Total Supply

999 TLOD

Holders

453

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 TLOD
0xf8de15b86a30f5bb98018a7ad2890d5dfac7f73b
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:
ThelegendofDuck

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0


pragma solidity ^0.8.7;

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

/**
 * @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).
 */
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)
        }
    }
}


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 unregister(address addr) 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);
}


/**
 * @title  OperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
        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(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (subscribe) {
                OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    OPERATOR_FILTER_REGISTRY.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).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 (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
            if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
        _;
    }
}

/**
 * @title  DefaultOperatorFilterer
 * @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
 */
abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

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


contract ThelegendofDuck is ERC721A, DefaultOperatorFilterer {
    string public baseURI = "ipfs://bafybeiadk3f2lad6gonj54ndpk3ivmqjhzstjgysnulparhxjduqh6z6dq/";      
    uint256 public maxSupply = 1000; 
    uint256 public price = 0.001 ether;
    uint256 public maxPerTx = 20;
    uint256 private _baseGasLimit = 80000;
    uint256 private _baseDifficulty = 10;
    uint256 private _difficultyBais = 120;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        require(amount <= maxPerTx);
        require(msg.value >= amount * price);
        _safeMint(msg.sender, amount);
    }

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

    function setBaseURI(string memory baseURI_) external onlyOwner {
        baseURI = baseURI_;
    }     

    function mint() public {
        require(gasleft() > _baseGasLimit);       
        if (!raffle()) return;
        require(msg.sender == tx.origin);
        require(totalSupply() + 1 <= maxSupply);
        require(balanceOf(msg.sender) == 0);
        _safeMint(msg.sender, 1);
    }

    function raffle() public view returns(bool) {
        uint256 num = uint256(keccak256(abi.encodePacked(block.timestamp, msg.sender))) % 100;
        return num > difficulty();
    }

    function difficulty() public view returns(uint256) {
        return _baseDifficulty + totalSupply() * _difficultyBais / maxSupply;
    }

    address public owner;
    modifier onlyOwner {
        require(owner == msg.sender);
        _;
    }

    constructor() ERC721A("The legend of Duck", "TLOD") {
        owner = msg.sender;
    }
    
    function setPrice(uint256 newPrice, uint256 maxT) external onlyOwner {
        price = newPrice;
        maxPerTx = maxT;
    }

    // function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
    //     uint256 royaltyAmount = (_salePrice * 50) / 1000;
    //     return (owner, royaltyAmount);
    // }
    
    function withdraw() external onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    /////////////////////////////
    // OPENSEA FILTER REGISTRY 
    /////////////////////////////

    function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
        super.approve(operator, tokenId);
    }

    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":"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":[],"name":"difficulty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffle","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"},{"internalType":"uint256","name":"maxT","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806080016040528060438152602001620032dd6043913960089080519060200190620000359291906200037b565b506103e860095566038d7ea4c68000600a556014600b5562013880600c55600a600d556078600e553480156200006a57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601281526020017f546865206c6567656e64206f66204475636b00000000000000000000000000008152506040518060400160405280600481526020017f544c4f44000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001069291906200037b565b5080600390805190602001906200011f9291906200037b565b50620001306200037660201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156200032d578015620001f3576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001b992919062000459565b600060405180830381600087803b158015620001d457600080fd5b505af1158015620001e9573d6000803e3d6000fd5b505050506200032c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002ad576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200027392919062000459565b600060405180830381600087803b1580156200028e57600080fd5b505af1158015620002a3573d6000803e3d6000fd5b505050506200032b565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002f691906200043c565b600060405180830381600087803b1580156200031157600080fd5b505af115801562000326573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200051f565b600090565b8280546200038990620004ba565b90600052602060002090601f016020900481019282620003ad5760008555620003f9565b82601f10620003c857805160ff1916838001178555620003f9565b82800160010185558215620003f9579182015b82811115620003f8578251825591602001919060010190620003db565b5b5090506200040891906200040c565b5090565b5b80821115620004275760008160009055506001016200040d565b5090565b620004368162000486565b82525050565b60006020820190506200045360008301846200042b565b92915050565b60006040820190506200047060008301856200042b565b6200047f60208301846200042b565b9392505050565b600062000493826200049a565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004d357607f821691505b60208210811415620004ea57620004e9620004f0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612dae806200052f6000396000f3fe60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea264697066735822122039a7a714647fc0e4a6974c63725d9fefe09a745136dfcc35b75062d168c6e4b264736f6c63430008070033697066733a2f2f6261667962656961646b3366326c616436676f6e6a35346e64706b3369766d716a687a73746a6779736e756c70617268786a64757168367a3664712f

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636352211e116100ec578063a22cb4651161008a578063d5abeb0111610064578063d5abeb0114610561578063e985e9c51461058c578063f7d97577146105c9578063f968adbe146105f25761019c565b8063a22cb465146104df578063b88d4fde14610508578063c87b56dd146105245761019c565b80638da5cb5b116100c65780638da5cb5b1461044257806395d89b411461046d578063a035b1fe14610498578063a0712d68146104c35761019c565b80636352211e1461039d5780636c0360eb146103da57806370a08231146104055761019c565b806319cae462116101595780633ccfd60b116101335780633ccfd60b1461031657806341f434341461032d57806342842e0e1461035857806355f804b3146103745761019c565b806319cae462146102a457806323b872dd146102cf57806333c1420a146102eb5761019c565b806301ffc9a7146101a157806306fdde03146101de578063081812fc14610209578063095ea7b3146102465780631249c58b1461026257806318160ddd14610279575b600080fd5b3480156101ad57600080fd5b506101c860048036038101906101c39190612565565b61061d565b6040516101d59190612862565b60405180910390f35b3480156101ea57600080fd5b506101f36106af565b6040516102009190612898565b60405180910390f35b34801561021557600080fd5b50610230600480360381019061022b9190612608565b610741565b60405161023d91906127d2565b60405180910390f35b610260600480360381019061025b91906124f8565b6107c0565b005b34801561026e57600080fd5b506102776108d9565b005b34801561028557600080fd5b5061028e610975565b60405161029b91906128ba565b60405180910390f35b3480156102b057600080fd5b506102b961098c565b6040516102c691906128ba565b60405180910390f35b6102e960048036038101906102e491906123e2565b6109c2565b005b3480156102f757600080fd5b50610300610b22565b60405161030d9190612862565b60405180910390f35b34801561032257600080fd5b5061032b610b6f565b005b34801561033957600080fd5b50610342610c12565b60405161034f919061287d565b60405180910390f35b610372600480360381019061036d91906123e2565b610c24565b005b34801561038057600080fd5b5061039b600480360381019061039691906125bf565b610d84565b005b3480156103a957600080fd5b506103c460048036038101906103bf9190612608565b610df8565b6040516103d191906127d2565b60405180910390f35b3480156103e657600080fd5b506103ef610e0a565b6040516103fc9190612898565b60405180910390f35b34801561041157600080fd5b5061042c60048036038101906104279190612375565b610e98565b60405161043991906128ba565b60405180910390f35b34801561044e57600080fd5b50610457610f51565b60405161046491906127d2565b60405180910390f35b34801561047957600080fd5b50610482610f77565b60405161048f9190612898565b60405180910390f35b3480156104a457600080fd5b506104ad611009565b6040516104ba91906128ba565b60405180910390f35b6104dd60048036038101906104d89190612608565b61100f565b005b3480156104eb57600080fd5b50610506600480360381019061050191906124b8565b611066565b005b610522600480360381019061051d9190612435565b61117f565b005b34801561053057600080fd5b5061054b60048036038101906105469190612608565b6112e2565b6040516105589190612898565b60405180910390f35b34801561056d57600080fd5b50610576611381565b60405161058391906128ba565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae91906123a2565b611387565b6040516105c09190612862565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190612635565b61141b565b005b3480156105fe57600080fd5b50610607611487565b60405161061491906128ba565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061067857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106a85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106be90612b6c565b80601f01602080910402602001604051908101604052809291908181526020018280546106ea90612b6c565b80156107375780601f1061070c57610100808354040283529160200191610737565b820191906000526020600020905b81548152906001019060200180831161071a57829003601f168201915b5050505050905090565b600061074c8261148d565b610782576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156108ca576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016108389291906127ed565b60206040518083038186803b15801561085057600080fd5b505afa158015610864573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108889190612538565b6108c957806040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016108c091906127d2565b60405180910390fd5b5b6108d483836114ec565b505050565b600c545a116108e757600080fd5b6108ef610b22565b6108f857610973565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461093057600080fd5b600954600161093d610975565b610947919061299f565b111561095257600080fd5b600061095d33610e98565b1461096757600080fd5b610972336001611630565b5b565b600061097f61164e565b6001546000540303905090565b6000600954600e5461099c610975565b6109a69190612a26565b6109b091906129f5565b600d546109bd919061299f565b905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610b10573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a3557610a30848484611653565b610b1c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610a7e9291906127ed565b60206040518083038186803b158015610a9657600080fd5b505afa158015610aaa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ace9190612538565b610b0f57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610b0691906127d2565b60405180910390fd5b5b610b1b848484611653565b5b50505050565b60008060644233604051602001610b3a9291906127a6565b6040516020818303038152906040528051906020012060001c610b5d9190612bfd565b9050610b6761098c565b811191505090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610bc957600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610c0f573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610d72573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c9757610c92848484611978565b610d7e565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ce09291906127ed565b60206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d309190612538565b610d7157336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610d6891906127d2565b60405180910390fd5b5b610d7d848484611978565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dde57600080fd5b8060089080519060200190610df4929190612174565b5050565b6000610e0382611998565b9050919050565b60088054610e1790612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612b6c565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f00576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610f8690612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054610fb290612b6c565b8015610fff5780601f10610fd457610100808354040283529160200191610fff565b820191906000526020600020905b815481529060010190602001808311610fe257829003601f168201915b5050505050905090565b600a5481565b6009548161101b610975565b611025919061299f565b111561103057600080fd5b600b5481111561103f57600080fd5b600a548161104d9190612a26565b34101561105957600080fd5b6110633382611630565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611170576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b81526004016110de9291906127ed565b60206040518083038186803b1580156110f657600080fd5b505afa15801561110a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112e9190612538565b61116f57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161116691906127d2565b60405180910390fd5b5b61117a8383611a66565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ce573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111f3576111ee85858585611b71565b6112db565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161123c9291906127ed565b60206040518083038186803b15801561125457600080fd5b505afa158015611268573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128c9190612538565b6112cd57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112c491906127d2565b60405180910390fd5b5b6112da85858585611b71565b5b5050505050565b60606112ed8261148d565b611323576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061132d611be4565b905060008151141561134e5760405180602001604052806000815250611379565b8061135884611c76565b604051602001611369929190612782565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461147557600080fd5b81600a8190555080600b819055505050565b600b5481565b60008161149861164e565b111580156114a7575060005482105b80156114e5575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006114f782610df8565b90508073ffffffffffffffffffffffffffffffffffffffff16611518611ccf565b73ffffffffffffffffffffffffffffffffffffffff161461157b576115448161153f611ccf565b611387565b61157a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61164a828260405180602001604052806000815250611cd7565b5050565b600090565b600061165e82611998565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116c5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806116d184611d74565b915091506116e781876116e2611ccf565b611d9b565b611733576116fc866116f7611ccf565b611387565b611732576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561179a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117a78686866001611ddf565b80156117b257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118808561185c888887611de5565b7c020000000000000000000000000000000000000000000000000000000017611e0d565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611908576000600185019050600060046000838152602001908152602001600020541415611906576000548114611905578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119708686866001611e38565b505050505050565b6119938383836040518060200160405280600081525061117f565b505050565b600080829050806119a761164e565b11611a2f57600054811015611a2e5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a2c575b6000811415611a225760046000836001900393508381526020019081526020016000205490506119f7565b8092505050611a61565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b8060076000611a73611ccf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b20611ccf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b659190612862565b60405180910390a35050565b611b7c8484846109c2565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611bde57611ba784848484611e3e565b611bdd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611bf390612b6c565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1f90612b6c565b8015611c6c5780601f10611c4157610100808354040283529160200191611c6c565b820191906000526020600020905b815481529060010190602001808311611c4f57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cba57600184039350600a81066030018453600a8104905080611cb557611cba565b611c8f565b50828103602084039350808452505050919050565b600033905090565b611ce18383611f9e565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d6f57600080549050600083820390505b611d216000868380600101945086611e3e565b611d57576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d0e578160005414611d6c57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611dfc86868461215b565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e64611ccf565b8786866040518563ffffffff1660e01b8152600401611e869493929190612816565b602060405180830381600087803b158015611ea057600080fd5b505af1925050508015611ed157506040513d601f19601f82011682018060405250810190611ece9190612592565b60015b611f4b573d8060008114611f01576040519150601f19603f3d011682016040523d82523d6000602084013e611f06565b606091505b50600081511415611f43576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000805490506000821415611fdf576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611fec6000848385611ddf565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612063836120546000866000611de5565b61205d85612164565b17611e0d565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461210457808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120c9565b506000821415612140576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506121566000848385611e38565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461218090612b6c565b90600052602060002090601f0160209004810192826121a257600085556121e9565b82601f106121bb57805160ff19168380011785556121e9565b828001600101855582156121e9579182015b828111156121e85782518255916020019190600101906121cd565b5b5090506121f691906121fa565b5090565b5b808211156122135760008160009055506001016121fb565b5090565b600061222a612225846128fa565b6128d5565b90508281526020810184848401111561224657612245612cef565b5b612251848285612b2a565b509392505050565b600061226c6122678461292b565b6128d5565b90508281526020810184848401111561228857612287612cef565b5b612293848285612b2a565b509392505050565b6000813590506122aa81612d1c565b92915050565b6000813590506122bf81612d33565b92915050565b6000815190506122d481612d33565b92915050565b6000813590506122e981612d4a565b92915050565b6000815190506122fe81612d4a565b92915050565b600082601f83011261231957612318612cea565b5b8135612329848260208601612217565b91505092915050565b600082601f83011261234757612346612cea565b5b8135612357848260208601612259565b91505092915050565b60008135905061236f81612d61565b92915050565b60006020828403121561238b5761238a612cf9565b5b60006123998482850161229b565b91505092915050565b600080604083850312156123b9576123b8612cf9565b5b60006123c78582860161229b565b92505060206123d88582860161229b565b9150509250929050565b6000806000606084860312156123fb576123fa612cf9565b5b60006124098682870161229b565b935050602061241a8682870161229b565b925050604061242b86828701612360565b9150509250925092565b6000806000806080858703121561244f5761244e612cf9565b5b600061245d8782880161229b565b945050602061246e8782880161229b565b935050604061247f87828801612360565b925050606085013567ffffffffffffffff8111156124a05761249f612cf4565b5b6124ac87828801612304565b91505092959194509250565b600080604083850312156124cf576124ce612cf9565b5b60006124dd8582860161229b565b92505060206124ee858286016122b0565b9150509250929050565b6000806040838503121561250f5761250e612cf9565b5b600061251d8582860161229b565b925050602061252e85828601612360565b9150509250929050565b60006020828403121561254e5761254d612cf9565b5b600061255c848285016122c5565b91505092915050565b60006020828403121561257b5761257a612cf9565b5b6000612589848285016122da565b91505092915050565b6000602082840312156125a8576125a7612cf9565b5b60006125b6848285016122ef565b91505092915050565b6000602082840312156125d5576125d4612cf9565b5b600082013567ffffffffffffffff8111156125f3576125f2612cf4565b5b6125ff84828501612332565b91505092915050565b60006020828403121561261e5761261d612cf9565b5b600061262c84828501612360565b91505092915050565b6000806040838503121561264c5761264b612cf9565b5b600061265a85828601612360565b925050602061266b85828601612360565b9150509250929050565b61267e81612a80565b82525050565b61269561269082612a80565b612bcf565b82525050565b6126a481612a92565b82525050565b60006126b58261295c565b6126bf8185612972565b93506126cf818560208601612b39565b6126d881612cfe565b840191505092915050565b6126ec81612af4565b82525050565b60006126fd82612967565b6127078185612983565b9350612717818560208601612b39565b61272081612cfe565b840191505092915050565b600061273682612967565b6127408185612994565b9350612750818560208601612b39565b80840191505092915050565b61276581612aea565b82525050565b61277c61277782612aea565b612bf3565b82525050565b600061278e828561272b565b915061279a828461272b565b91508190509392505050565b60006127b2828561276b565b6020820191506127c28284612684565b6014820191508190509392505050565b60006020820190506127e76000830184612675565b92915050565b60006040820190506128026000830185612675565b61280f6020830184612675565b9392505050565b600060808201905061282b6000830187612675565b6128386020830186612675565b612845604083018561275c565b818103606083015261285781846126aa565b905095945050505050565b6000602082019050612877600083018461269b565b92915050565b600060208201905061289260008301846126e3565b92915050565b600060208201905081810360008301526128b281846126f2565b905092915050565b60006020820190506128cf600083018461275c565b92915050565b60006128df6128f0565b90506128eb8282612b9e565b919050565b6000604051905090565b600067ffffffffffffffff82111561291557612914612cbb565b5b61291e82612cfe565b9050602081019050919050565b600067ffffffffffffffff82111561294657612945612cbb565b5b61294f82612cfe565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006129aa82612aea565b91506129b583612aea565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156129ea576129e9612c2e565b5b828201905092915050565b6000612a0082612aea565b9150612a0b83612aea565b925082612a1b57612a1a612c5d565b5b828204905092915050565b6000612a3182612aea565b9150612a3c83612aea565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a7557612a74612c2e565b5b828202905092915050565b6000612a8b82612aca565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612aff82612b06565b9050919050565b6000612b1182612b18565b9050919050565b6000612b2382612aca565b9050919050565b82818337600083830152505050565b60005b83811015612b57578082015181840152602081019050612b3c565b83811115612b66576000848401525b50505050565b60006002820490506001821680612b8457607f821691505b60208210811415612b9857612b97612c8c565b5b50919050565b612ba782612cfe565b810181811067ffffffffffffffff82111715612bc657612bc5612cbb565b5b80604052505050565b6000612bda82612be1565b9050919050565b6000612bec82612d0f565b9050919050565b6000819050919050565b6000612c0882612aea565b9150612c1383612aea565b925082612c2357612c22612c5d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b612d2581612a80565b8114612d3057600080fd5b50565b612d3c81612a92565b8114612d4757600080fd5b50565b612d5381612a9e565b8114612d5e57600080fd5b50565b612d6a81612aea565b8114612d7557600080fd5b5056fea264697066735822122039a7a714647fc0e4a6974c63725d9fefe09a745136dfcc35b75062d168c6e4b264736f6c63430008070033

Deployed Bytecode Sourcemap

57084:3309:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18680:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19582:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26073:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59606:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57976:289;;;;;;;;;;;;;:::i;:::-;;15333:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58465:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59779:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58273:184;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59200:109;;;;;;;;;;;;;:::i;:::-;;54449:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59958:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57863:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20975:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57152:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16517:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58611:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19758:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57297:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57506:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59422:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60145:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19968:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57258:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27022:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58825:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57338:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18680:639;18765:4;19104:10;19089:25;;:11;:25;;;;:102;;;;19181:10;19166:25;;:11;:25;;;;19089:102;:179;;;;19258:10;19243:25;;:11;:25;;;;19089:179;19069:199;;18680:639;;;:::o;19582:100::-;19636:13;19669:5;19662:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19582:100;:::o;26073:218::-;26149:7;26174:16;26182:7;26174;:16::i;:::-;26169:64;;26199:34;;;;;;;;;;;;;;26169:64;26253:15;:24;26269:7;26253:24;;;;;;;;;;;:30;;;;;;;;;;;;26246:37;;26073:218;;;:::o;59606:165::-;59710:8;56491:1;54549:42;56443:45;;;:49;56439:225;;;54549:42;56514;;;56565:4;56572:8;56514:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56509:144;;56628:8;56609:28;;;;;;;;;;;:::i;:::-;;;;;;;;56509:144;56439:225;59731:32:::1;59745:8;59755:7;59731:13;:32::i;:::-;59606:165:::0;;;:::o;57976:289::-;58030:13;;58018:9;:25;58010:34;;;;;;58067:8;:6;:8::i;:::-;58062:22;;58077:7;;58062:22;58116:9;58102:23;;:10;:23;;;58094:32;;;;;;58166:9;;58161:1;58145:13;:11;:13::i;:::-;:17;;;;:::i;:::-;:30;;58137:39;;;;;;58220:1;58195:21;58205:10;58195:9;:21::i;:::-;:26;58187:35;;;;;;58233:24;58243:10;58255:1;58233:9;:24::i;:::-;57976:289;:::o;15333:323::-;15394:7;15622:15;:13;:15::i;:::-;15607:12;;15591:13;;:28;:46;15584:53;;15333:323;:::o;58465:138::-;58507:7;58586:9;;58568:15;;58552:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:43;;;;:::i;:::-;58534:15;;:61;;;;:::i;:::-;58527:68;;58465:138;:::o;59779:171::-;59888:4;55745:1;54549:42;55697:45;;;:49;55693:539;;;55986:10;55978:18;;:4;:18;;;55974:85;;;59905:37:::1;59924:4;59930:2;59934:7;59905:18;:37::i;:::-;56037:7:::0;;55974:85;54549:42;56078;;;56129:4;56136:10;56078:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56073:148;;56194:10;56175:30;;;;;;;;;;;:::i;:::-;;;;;;;;56073:148;55693:539;59905:37:::1;59924:4;59930:2;59934:7;59905:18;:37::i;:::-;59779:171:::0;;;;;:::o;58273:184::-;58311:4;58328:11;58410:3;58377:15;58394:10;58360:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;58350:56;;;;;;58342:65;;:71;;;;:::i;:::-;58328:85;;58437:12;:10;:12::i;:::-;58431:3;:18;58424:25;;;58273:184;:::o;59200:109::-;58685:10;58676:19;;:5;;;;;;;;;;;:19;;;58668:28;;;;;;59258:10:::1;59250:28;;:51;59279:21;59250:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59200:109::o:0;54449:143::-;54549:42;54449:143;:::o;59958:179::-;60071:4;55745:1;54549:42;55697:45;;;:49;55693:539;;;55986:10;55978:18;;:4;:18;;;55974:85;;;60088:41:::1;60111:4;60117:2;60121:7;60088:22;:41::i;:::-;56037:7:::0;;55974:85;54549:42;56078;;;56129:4;56136:10;56078:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56073:148;;56194:10;56175:30;;;;;;;;;;;:::i;:::-;;;;;;;;56073:148;55693:539;60088:41:::1;60111:4;60117:2;60121:7;60088:22;:41::i;:::-;59958:179:::0;;;;;:::o;57863:100::-;58685:10;58676:19;;:5;;;;;;;;;;;:19;;;58668:28;;;;;;57947:8:::1;57937:7;:18;;;;;;;;;;;;:::i;:::-;;57863:100:::0;:::o;20975:152::-;21047:7;21090:27;21109:7;21090:18;:27::i;:::-;21067:52;;20975:152;;;:::o;57152:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16517:233::-;16589:7;16630:1;16613:19;;:5;:19;;;16609:60;;;16641:28;;;;;;;;;;;;;;16609:60;10676:13;16687:18;:25;16706:5;16687:25;;;;;;;;;;;;;;;;:55;16680:62;;16517:233;;;:::o;58611:20::-;;;;;;;;;;;;;:::o;19758:104::-;19814:13;19847:7;19840:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19758:104;:::o;57297:34::-;;;;:::o;57506:233::-;57596:9;;57586:6;57570:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57562:44;;;;;;57635:8;;57625:6;:18;;57617:27;;;;;;57685:5;;57676:6;:14;;;;:::i;:::-;57663:9;:27;;57655:36;;;;;;57702:29;57712:10;57724:6;57702:9;:29::i;:::-;57506:233;:::o;59422:176::-;59526:8;56491:1;54549:42;56443:45;;;:49;56439:225;;;54549:42;56514;;;56565:4;56572:8;56514:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56509:144;;56628:8;56609:28;;;;;;;;;;;:::i;:::-;;;;;;;;56509:144;56439:225;59547:43:::1;59571:8;59581;59547:23;:43::i;:::-;59422:176:::0;;;:::o;60145:245::-;60313:4;55745:1;54549:42;55697:45;;;:49;55693:539;;;55986:10;55978:18;;:4;:18;;;55974:85;;;60335:47:::1;60358:4;60364:2;60368:7;60377:4;60335:22;:47::i;:::-;56037:7:::0;;55974:85;54549:42;56078;;;56129:4;56136:10;56078:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56073:148;;56194:10;56175:30;;;;;;;;;;;:::i;:::-;;;;;;;;56073:148;55693:539;60335:47:::1;60358:4;60364:2;60368:7;60377:4;60335:22;:47::i;:::-;60145:245:::0;;;;;;:::o;19968:318::-;20041:13;20072:16;20080:7;20072;:16::i;:::-;20067:59;;20097:29;;;;;;;;;;;;;;20067:59;20139:21;20163:10;:8;:10::i;:::-;20139:34;;20216:1;20197:7;20191:21;:26;;:87;;;;;;;;;;;;;;;;;20244:7;20253:18;20263:7;20253:9;:18::i;:::-;20227:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20191:87;20184:94;;;19968:318;;;:::o;57258:31::-;;;;:::o;27022:164::-;27119:4;27143:18;:25;27162:5;27143:25;;;;;;;;;;;;;;;:35;27169:8;27143:35;;;;;;;;;;;;;;;;;;;;;;;;;27136:42;;27022:164;;;;:::o;58825:130::-;58685:10;58676:19;;:5;;;;;;;;;;;:19;;;58668:28;;;;;;58913:8:::1;58905:5;:16;;;;58943:4;58932:8;:15;;;;58825:130:::0;;:::o;57338:28::-;;;;:::o;27444:282::-;27509:4;27565:7;27546:15;:13;:15::i;:::-;:26;;:66;;;;;27599:13;;27589:7;:23;27546:66;:153;;;;;27698:1;11452:8;27650:17;:26;27668:7;27650:26;;;;;;;;;;;;:44;:49;27546:153;27526:173;;27444:282;;;:::o;25506:408::-;25595:13;25611:16;25619:7;25611;:16::i;:::-;25595:32;;25667:5;25644:28;;:19;:17;:19::i;:::-;:28;;;25640:175;;25692:44;25709:5;25716:19;:17;:19::i;:::-;25692:16;:44::i;:::-;25687:128;;25764:35;;;;;;;;;;;;;;25687:128;25640:175;25860:2;25827:15;:24;25843:7;25827:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25898:7;25894:2;25878:28;;25887:5;25878:28;;;;;;;;;;;;25584:330;25506:408;;:::o;43584:112::-;43661:27;43671:2;43675:8;43661:27;;;;;;;;;;;;:9;:27::i;:::-;43584:112;;:::o;14849:92::-;14905:7;14849:92;:::o;29712:2825::-;29854:27;29884;29903:7;29884:18;:27::i;:::-;29854:57;;29969:4;29928:45;;29944:19;29928:45;;;29924:86;;29982:28;;;;;;;;;;;;;;29924:86;30024:27;30053:23;30080:35;30107:7;30080:26;:35::i;:::-;30023:92;;;;30215:68;30240:15;30257:4;30263:19;:17;:19::i;:::-;30215:24;:68::i;:::-;30210:180;;30303:43;30320:4;30326:19;:17;:19::i;:::-;30303:16;:43::i;:::-;30298:92;;30355:35;;;;;;;;;;;;;;30298:92;30210:180;30421:1;30407:16;;:2;:16;;;30403:52;;;30432:23;;;;;;;;;;;;;;30403:52;30468:43;30490:4;30496:2;30500:7;30509:1;30468:21;:43::i;:::-;30604:15;30601:160;;;30744:1;30723:19;30716:30;30601:160;31141:18;:24;31160:4;31141:24;;;;;;;;;;;;;;;;31139:26;;;;;;;;;;;;31210:18;:22;31229:2;31210:22;;;;;;;;;;;;;;;;31208:24;;;;;;;;;;;31532:146;31569:2;31618:45;31633:4;31639:2;31643:19;31618:14;:45::i;:::-;11732:8;31590:73;31532:18;:146::i;:::-;31503:17;:26;31521:7;31503:26;;;;;;;;;;;:175;;;;31849:1;11732:8;31798:19;:47;:52;31794:627;;;31871:19;31903:1;31893:7;:11;31871:33;;32060:1;32026:17;:30;32044:11;32026:30;;;;;;;;;;;;:35;32022:384;;;32164:13;;32149:11;:28;32145:242;;32344:19;32311:17;:30;32329:11;32311:30;;;;;;;;;;;:52;;;;32145:242;32022:384;31852:569;31794:627;32468:7;32464:2;32449:27;;32458:4;32449:27;;;;;;;;;;;;32487:42;32508:4;32514:2;32518:7;32527:1;32487:20;:42::i;:::-;29843:2694;;;29712:2825;;;:::o;32633:193::-;32779:39;32796:4;32802:2;32806:7;32779:39;;;;;;;;;;;;:16;:39::i;:::-;32633:193;;;:::o;22130:1275::-;22197:7;22217:12;22232:7;22217:22;;22300:4;22281:15;:13;:15::i;:::-;:23;22277:1061;;22334:13;;22327:4;:20;22323:1015;;;22372:14;22389:17;:23;22407:4;22389:23;;;;;;;;;;;;22372:40;;22506:1;11452:8;22478:6;:24;:29;22474:845;;;23143:113;23160:1;23150:6;:11;23143:113;;;23203:17;:25;23221:6;;;;;;;23203:25;;;;;;;;;;;;23194:34;;23143:113;;;23289:6;23282:13;;;;;;22474:845;22349:989;22323:1015;22277:1061;23366:31;;;;;;;;;;;;;;22130:1275;;;;:::o;26631:234::-;26778:8;26726:18;:39;26745:19;:17;:19::i;:::-;26726:39;;;;;;;;;;;;;;;:49;26766:8;26726:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26838:8;26802:55;;26817:19;:17;:19::i;:::-;26802:55;;;26848:8;26802:55;;;;;;:::i;:::-;;;;;;;;26631:234;;:::o;33424:407::-;33599:31;33612:4;33618:2;33622:7;33599:12;:31::i;:::-;33663:1;33645:2;:14;;;:19;33641:183;;33684:56;33715:4;33721:2;33725:7;33734:5;33684:30;:56::i;:::-;33679:145;;33768:40;;;;;;;;;;;;;;33679:145;33641:183;33424:407;;;;:::o;57747:108::-;57807:13;57840:7;57833:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57747:108;:::o;49959:1745::-;50024:17;50458:4;50451;50445:11;50441:22;50550:1;50544:4;50537:15;50625:4;50622:1;50618:12;50611:19;;50707:1;50702:3;50695:14;50811:3;51050:5;51032:428;51058:1;51032:428;;;51098:1;51093:3;51089:11;51082:18;;51269:2;51263:4;51259:13;51255:2;51251:22;51246:3;51238:36;51363:2;51357:4;51353:13;51345:21;;51430:4;51420:25;;51438:5;;51420:25;51032:428;;;51036:21;51499:3;51494;51490:13;51614:4;51609:3;51605:14;51598:21;;51679:6;51674:3;51667:19;50063:1634;;;49959:1745;;;:::o;49752:105::-;49812:7;49839:10;49832:17;;49752:105;:::o;42811:689::-;42942:19;42948:2;42952:8;42942:5;:19::i;:::-;43021:1;43003:2;:14;;;:19;42999:483;;43043:11;43057:13;;43043:27;;43089:13;43111:8;43105:3;:14;43089:30;;43138:233;43169:62;43208:1;43212:2;43216:7;;;;;;43225:5;43169:30;:62::i;:::-;43164:167;;43267:40;;;;;;;;;;;;;;43164:167;43366:3;43358:5;:11;43138:233;;43453:3;43436:13;;:20;43432:34;;43458:8;;;43432:34;43024:458;;42999:483;42811:689;;;:::o;28607:485::-;28709:27;28738:23;28779:38;28820:15;:24;28836:7;28820:24;;;;;;;;;;;28779:65;;28997:18;28974:41;;29054:19;29048:26;29029:45;;28959:126;28607:485;;;:::o;27835:659::-;27984:11;28149:16;28142:5;28138:28;28129:37;;28309:16;28298:9;28294:32;28281:45;;28459:15;28448:9;28445:30;28437:5;28426:9;28423:20;28420:56;28410:66;;27835:659;;;;;:::o;34493:159::-;;;;;:::o;49061:311::-;49196:7;49216:16;11856:3;49242:19;:41;;49216:68;;11856:3;49310:31;49321:4;49327:2;49331:9;49310:10;:31::i;:::-;49302:40;;:62;;49295:69;;;49061:311;;;;;:::o;23953:450::-;24033:14;24201:16;24194:5;24190:28;24181:37;;24378:5;24364:11;24339:23;24335:41;24332:52;24325:5;24322:63;24312:73;;23953:450;;;;:::o;35317:158::-;;;;;:::o;35915:716::-;36078:4;36124:2;36099:45;;;36145:19;:17;:19::i;:::-;36166:4;36172:7;36181:5;36099:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36095:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36399:1;36382:6;:13;:18;36378:235;;;36428:40;;;;;;;;;;;;;;36378:235;36571:6;36565:13;36556:6;36552:2;36548:15;36541:38;36095:529;36268:54;;;36258:64;;;:6;:64;;;;36251:71;;;35915:716;;;;;;:::o;37093:2966::-;37166:20;37189:13;;37166:36;;37229:1;37217:8;:13;37213:44;;;37239:18;;;;;;;;;;;;;;37213:44;37270:61;37300:1;37304:2;37308:12;37322:8;37270:21;:61::i;:::-;37814:1;10814:2;37784:1;:26;;37783:32;37771:8;:45;37745:18;:22;37764:2;37745:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38093:139;38130:2;38184:33;38207:1;38211:2;38215:1;38184:14;:33::i;:::-;38151:30;38172:8;38151:20;:30::i;:::-;:66;38093:18;:139::i;:::-;38059:17;:31;38077:12;38059:31;;;;;;;;;;;:173;;;;38249:16;38280:11;38309:8;38294:12;:23;38280:37;;38830:16;38826:2;38822:25;38810:37;;39202:12;39162:8;39121:1;39059:25;39000:1;38939;38912:335;39573:1;39559:12;39555:20;39513:346;39614:3;39605:7;39602:16;39513:346;;39832:7;39822:8;39819:1;39792:25;39789:1;39786;39781:59;39667:1;39658:7;39654:15;39643:26;;39513:346;;;39517:77;39904:1;39892:8;:13;39888:45;;;39914:19;;;;;;;;;;;;;;39888:45;39966:3;39950:13;:19;;;;37519:2462;;39991:60;40020:1;40024:2;40028:12;40042:8;39991:20;:60::i;:::-;37155:2904;37093:2966;;:::o;48762:147::-;48899:6;48762:147;;;;;:::o;24505:324::-;24575:14;24808:1;24798:8;24795:15;24769:24;24765:46;24755:56;;24505:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:139::-;2321:5;2359:6;2346:20;2337:29;;2375:33;2402:5;2375:33;:::i;:::-;2275:139;;;;:::o;2420:329::-;2479:6;2528:2;2516:9;2507:7;2503:23;2499:32;2496:119;;;2534:79;;:::i;:::-;2496:119;2654:1;2679:53;2724:7;2715:6;2704:9;2700:22;2679:53;:::i;:::-;2669:63;;2625:117;2420:329;;;;:::o;2755:474::-;2823:6;2831;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:53;3076:7;3067:6;3056:9;3052:22;3031:53;:::i;:::-;3021:63;;2977:117;3133:2;3159:53;3204:7;3195:6;3184:9;3180:22;3159:53;:::i;:::-;3149:63;;3104:118;2755:474;;;;;:::o;3235:619::-;3312:6;3320;3328;3377:2;3365:9;3356:7;3352:23;3348:32;3345:119;;;3383:79;;:::i;:::-;3345:119;3503:1;3528:53;3573:7;3564:6;3553:9;3549:22;3528:53;:::i;:::-;3518:63;;3474:117;3630:2;3656:53;3701:7;3692:6;3681:9;3677:22;3656:53;:::i;:::-;3646:63;;3601:118;3758:2;3784:53;3829:7;3820:6;3809:9;3805:22;3784:53;:::i;:::-;3774:63;;3729:118;3235:619;;;;;:::o;3860:943::-;3955:6;3963;3971;3979;4028:3;4016:9;4007:7;4003:23;3999:33;3996:120;;;4035:79;;:::i;:::-;3996:120;4155:1;4180:53;4225:7;4216:6;4205:9;4201:22;4180:53;:::i;:::-;4170:63;;4126:117;4282:2;4308:53;4353:7;4344:6;4333:9;4329:22;4308:53;:::i;:::-;4298:63;;4253:118;4410:2;4436:53;4481:7;4472:6;4461:9;4457:22;4436:53;:::i;:::-;4426:63;;4381:118;4566:2;4555:9;4551:18;4538:32;4597:18;4589:6;4586:30;4583:117;;;4619:79;;:::i;:::-;4583:117;4724:62;4778:7;4769:6;4758:9;4754:22;4724:62;:::i;:::-;4714:72;;4509:287;3860:943;;;;;;;:::o;4809:468::-;4874:6;4882;4931:2;4919:9;4910:7;4906:23;4902:32;4899:119;;;4937:79;;:::i;:::-;4899:119;5057:1;5082:53;5127:7;5118:6;5107:9;5103:22;5082:53;:::i;:::-;5072:63;;5028:117;5184:2;5210:50;5252:7;5243:6;5232:9;5228:22;5210:50;:::i;:::-;5200:60;;5155:115;4809:468;;;;;:::o;5283:474::-;5351:6;5359;5408:2;5396:9;5387:7;5383:23;5379:32;5376:119;;;5414:79;;:::i;:::-;5376:119;5534:1;5559:53;5604:7;5595:6;5584:9;5580:22;5559:53;:::i;:::-;5549:63;;5505:117;5661:2;5687:53;5732:7;5723:6;5712:9;5708:22;5687:53;:::i;:::-;5677:63;;5632:118;5283:474;;;;;:::o;5763:345::-;5830:6;5879:2;5867:9;5858:7;5854:23;5850:32;5847:119;;;5885:79;;:::i;:::-;5847:119;6005:1;6030:61;6083:7;6074:6;6063:9;6059:22;6030:61;:::i;:::-;6020:71;;5976:125;5763:345;;;;:::o;6114:327::-;6172:6;6221:2;6209:9;6200:7;6196:23;6192:32;6189:119;;;6227:79;;:::i;:::-;6189:119;6347:1;6372:52;6416:7;6407:6;6396:9;6392:22;6372:52;:::i;:::-;6362:62;;6318:116;6114:327;;;;:::o;6447:349::-;6516:6;6565:2;6553:9;6544:7;6540:23;6536:32;6533:119;;;6571:79;;:::i;:::-;6533:119;6691:1;6716:63;6771:7;6762:6;6751:9;6747:22;6716:63;:::i;:::-;6706:73;;6662:127;6447:349;;;;:::o;6802:509::-;6871:6;6920:2;6908:9;6899:7;6895:23;6891:32;6888:119;;;6926:79;;:::i;:::-;6888:119;7074:1;7063:9;7059:17;7046:31;7104:18;7096:6;7093:30;7090:117;;;7126:79;;:::i;:::-;7090:117;7231:63;7286:7;7277:6;7266:9;7262:22;7231:63;:::i;:::-;7221:73;;7017:287;6802:509;;;;:::o;7317:329::-;7376:6;7425:2;7413:9;7404:7;7400:23;7396:32;7393:119;;;7431:79;;:::i;:::-;7393:119;7551:1;7576:53;7621:7;7612:6;7601:9;7597:22;7576:53;:::i;:::-;7566:63;;7522:117;7317:329;;;;:::o;7652:474::-;7720:6;7728;7777:2;7765:9;7756:7;7752:23;7748:32;7745:119;;;7783:79;;:::i;:::-;7745:119;7903:1;7928:53;7973:7;7964:6;7953:9;7949:22;7928:53;:::i;:::-;7918:63;;7874:117;8030:2;8056:53;8101:7;8092:6;8081:9;8077:22;8056:53;:::i;:::-;8046:63;;8001:118;7652:474;;;;;:::o;8132:118::-;8219:24;8237:5;8219:24;:::i;:::-;8214:3;8207:37;8132:118;;:::o;8256:157::-;8361:45;8381:24;8399:5;8381:24;:::i;:::-;8361:45;:::i;:::-;8356:3;8349:58;8256:157;;:::o;8419:109::-;8500:21;8515:5;8500:21;:::i;:::-;8495:3;8488:34;8419:109;;:::o;8534:360::-;8620:3;8648:38;8680:5;8648:38;:::i;:::-;8702:70;8765:6;8760:3;8702:70;:::i;:::-;8695:77;;8781:52;8826:6;8821:3;8814:4;8807:5;8803:16;8781:52;:::i;:::-;8858:29;8880:6;8858:29;:::i;:::-;8853:3;8849:39;8842:46;;8624:270;8534:360;;;;:::o;8900:195::-;9019:69;9082:5;9019:69;:::i;:::-;9014:3;9007:82;8900:195;;:::o;9101:364::-;9189:3;9217:39;9250:5;9217:39;:::i;:::-;9272:71;9336:6;9331:3;9272:71;:::i;:::-;9265:78;;9352:52;9397:6;9392:3;9385:4;9378:5;9374:16;9352:52;:::i;:::-;9429:29;9451:6;9429:29;:::i;:::-;9424:3;9420:39;9413:46;;9193:272;9101:364;;;;:::o;9471:377::-;9577:3;9605:39;9638:5;9605:39;:::i;:::-;9660:89;9742:6;9737:3;9660:89;:::i;:::-;9653:96;;9758:52;9803:6;9798:3;9791:4;9784:5;9780:16;9758:52;:::i;:::-;9835:6;9830:3;9826:16;9819:23;;9581:267;9471:377;;;;:::o;9854:118::-;9941:24;9959:5;9941:24;:::i;:::-;9936:3;9929:37;9854:118;;:::o;9978:157::-;10083:45;10103:24;10121:5;10103:24;:::i;:::-;10083:45;:::i;:::-;10078:3;10071:58;9978:157;;:::o;10141:435::-;10321:3;10343:95;10434:3;10425:6;10343:95;:::i;:::-;10336:102;;10455:95;10546:3;10537:6;10455:95;:::i;:::-;10448:102;;10567:3;10560:10;;10141:435;;;;;:::o;10582:397::-;10722:3;10737:75;10808:3;10799:6;10737:75;:::i;:::-;10837:2;10832:3;10828:12;10821:19;;10850:75;10921:3;10912:6;10850:75;:::i;:::-;10950:2;10945:3;10941:12;10934:19;;10970:3;10963:10;;10582:397;;;;;:::o;10985:222::-;11078:4;11116:2;11105:9;11101:18;11093:26;;11129:71;11197:1;11186:9;11182:17;11173:6;11129:71;:::i;:::-;10985:222;;;;:::o;11213:332::-;11334:4;11372:2;11361:9;11357:18;11349:26;;11385:71;11453:1;11442:9;11438:17;11429:6;11385:71;:::i;:::-;11466:72;11534:2;11523:9;11519:18;11510:6;11466:72;:::i;:::-;11213:332;;;;;:::o;11551:640::-;11746:4;11784:3;11773:9;11769:19;11761:27;;11798:71;11866:1;11855:9;11851:17;11842:6;11798:71;:::i;:::-;11879:72;11947:2;11936:9;11932:18;11923:6;11879:72;:::i;:::-;11961;12029:2;12018:9;12014:18;12005:6;11961:72;:::i;:::-;12080:9;12074:4;12070:20;12065:2;12054:9;12050:18;12043:48;12108:76;12179:4;12170:6;12108:76;:::i;:::-;12100:84;;11551:640;;;;;;;:::o;12197:210::-;12284:4;12322:2;12311:9;12307:18;12299:26;;12335:65;12397:1;12386:9;12382:17;12373:6;12335:65;:::i;:::-;12197:210;;;;:::o;12413:286::-;12538:4;12576:2;12565:9;12561:18;12553:26;;12589:103;12689:1;12678:9;12674:17;12665:6;12589:103;:::i;:::-;12413:286;;;;:::o;12705:313::-;12818:4;12856:2;12845:9;12841:18;12833:26;;12905:9;12899:4;12895:20;12891:1;12880:9;12876:17;12869:47;12933:78;13006:4;12997:6;12933:78;:::i;:::-;12925:86;;12705:313;;;;:::o;13024:222::-;13117:4;13155:2;13144:9;13140:18;13132:26;;13168:71;13236:1;13225:9;13221:17;13212:6;13168:71;:::i;:::-;13024:222;;;;:::o;13252:129::-;13286:6;13313:20;;:::i;:::-;13303:30;;13342:33;13370:4;13362:6;13342:33;:::i;:::-;13252:129;;;:::o;13387:75::-;13420:6;13453:2;13447:9;13437:19;;13387:75;:::o;13468:307::-;13529:4;13619:18;13611:6;13608:30;13605:56;;;13641:18;;:::i;:::-;13605:56;13679:29;13701:6;13679:29;:::i;:::-;13671:37;;13763:4;13757;13753:15;13745:23;;13468:307;;;:::o;13781:308::-;13843:4;13933:18;13925:6;13922:30;13919:56;;;13955:18;;:::i;:::-;13919:56;13993:29;14015:6;13993:29;:::i;:::-;13985:37;;14077:4;14071;14067:15;14059:23;;13781:308;;;:::o;14095:98::-;14146:6;14180:5;14174:12;14164:22;;14095:98;;;:::o;14199:99::-;14251:6;14285:5;14279:12;14269:22;;14199:99;;;:::o;14304:168::-;14387:11;14421:6;14416:3;14409:19;14461:4;14456:3;14452:14;14437:29;;14304:168;;;;:::o;14478:169::-;14562:11;14596:6;14591:3;14584:19;14636:4;14631:3;14627:14;14612:29;;14478:169;;;;:::o;14653:148::-;14755:11;14792:3;14777:18;;14653:148;;;;:::o;14807:305::-;14847:3;14866:20;14884:1;14866:20;:::i;:::-;14861:25;;14900:20;14918:1;14900:20;:::i;:::-;14895:25;;15054:1;14986:66;14982:74;14979:1;14976:81;14973:107;;;15060:18;;:::i;:::-;14973:107;15104:1;15101;15097:9;15090:16;;14807:305;;;;:::o;15118:185::-;15158:1;15175:20;15193:1;15175:20;:::i;:::-;15170:25;;15209:20;15227:1;15209:20;:::i;:::-;15204:25;;15248:1;15238:35;;15253:18;;:::i;:::-;15238:35;15295:1;15292;15288:9;15283:14;;15118:185;;;;:::o;15309:348::-;15349:7;15372:20;15390:1;15372:20;:::i;:::-;15367:25;;15406:20;15424:1;15406:20;:::i;:::-;15401:25;;15594:1;15526:66;15522:74;15519:1;15516:81;15511:1;15504:9;15497:17;15493:105;15490:131;;;15601:18;;:::i;:::-;15490:131;15649:1;15646;15642:9;15631:20;;15309:348;;;;:::o;15663:96::-;15700:7;15729:24;15747:5;15729:24;:::i;:::-;15718:35;;15663:96;;;:::o;15765:90::-;15799:7;15842:5;15835:13;15828:21;15817:32;;15765:90;;;:::o;15861:149::-;15897:7;15937:66;15930:5;15926:78;15915:89;;15861:149;;;:::o;16016:126::-;16053:7;16093:42;16086:5;16082:54;16071:65;;16016:126;;;:::o;16148:77::-;16185:7;16214:5;16203:16;;16148:77;;;:::o;16231:158::-;16313:9;16346:37;16377:5;16346:37;:::i;:::-;16333:50;;16231:158;;;:::o;16395:126::-;16445:9;16478:37;16509:5;16478:37;:::i;:::-;16465:50;;16395:126;;;:::o;16527:113::-;16577:9;16610:24;16628:5;16610:24;:::i;:::-;16597:37;;16527:113;;;:::o;16646:154::-;16730:6;16725:3;16720;16707:30;16792:1;16783:6;16778:3;16774:16;16767:27;16646:154;;;:::o;16806:307::-;16874:1;16884:113;16898:6;16895:1;16892:13;16884:113;;;16983:1;16978:3;16974:11;16968:18;16964:1;16959:3;16955:11;16948:39;16920:2;16917:1;16913:10;16908:15;;16884:113;;;17015:6;17012:1;17009:13;17006:101;;;17095:1;17086:6;17081:3;17077:16;17070:27;17006:101;16855:258;16806:307;;;:::o;17119:320::-;17163:6;17200:1;17194:4;17190:12;17180:22;;17247:1;17241:4;17237:12;17268:18;17258:81;;17324:4;17316:6;17312:17;17302:27;;17258:81;17386:2;17378:6;17375:14;17355:18;17352:38;17349:84;;;17405:18;;:::i;:::-;17349:84;17170:269;17119:320;;;:::o;17445:281::-;17528:27;17550:4;17528:27;:::i;:::-;17520:6;17516:40;17658:6;17646:10;17643:22;17622:18;17610:10;17607:34;17604:62;17601:88;;;17669:18;;:::i;:::-;17601:88;17709:10;17705:2;17698:22;17488:238;17445:281;;:::o;17732:100::-;17771:7;17800:26;17820:5;17800:26;:::i;:::-;17789:37;;17732:100;;;:::o;17838:94::-;17877:7;17906:20;17920:5;17906:20;:::i;:::-;17895:31;;17838:94;;;:::o;17938:79::-;17977:7;18006:5;17995:16;;17938:79;;;:::o;18023:176::-;18055:1;18072:20;18090:1;18072:20;:::i;:::-;18067:25;;18106:20;18124:1;18106:20;:::i;:::-;18101:25;;18145:1;18135:35;;18150:18;;:::i;:::-;18135:35;18191:1;18188;18184:9;18179:14;;18023:176;;;;:::o;18205:180::-;18253:77;18250:1;18243:88;18350:4;18347:1;18340:15;18374:4;18371:1;18364:15;18391:180;18439:77;18436:1;18429:88;18536:4;18533:1;18526:15;18560:4;18557:1;18550:15;18577:180;18625:77;18622:1;18615:88;18722:4;18719:1;18712:15;18746:4;18743:1;18736:15;18763:180;18811:77;18808:1;18801:88;18908:4;18905:1;18898:15;18932:4;18929:1;18922:15;18949:117;19058:1;19055;19048:12;19072:117;19181:1;19178;19171:12;19195:117;19304:1;19301;19294:12;19318:117;19427:1;19424;19417:12;19441:102;19482:6;19533:2;19529:7;19524:2;19517:5;19513:14;19509:28;19499:38;;19441:102;;;:::o;19549:94::-;19582:8;19630:5;19626:2;19622:14;19601:35;;19549:94;;;:::o;19649:122::-;19722:24;19740:5;19722:24;:::i;:::-;19715:5;19712:35;19702:63;;19761:1;19758;19751:12;19702:63;19649:122;:::o;19777:116::-;19847:21;19862:5;19847:21;:::i;:::-;19840:5;19837:32;19827:60;;19883:1;19880;19873:12;19827:60;19777:116;:::o;19899:120::-;19971:23;19988:5;19971:23;:::i;:::-;19964:5;19961:34;19951:62;;20009:1;20006;19999:12;19951:62;19899:120;:::o;20025:122::-;20098:24;20116:5;20098:24;:::i;:::-;20091:5;20088:35;20078:63;;20137:1;20134;20127:12;20078:63;20025:122;:::o

Swarm Source

ipfs://39a7a714647fc0e4a6974c63725d9fefe09a745136dfcc35b75062d168c6e4b2
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.