ETH Price: $2,455.31 (+1.37%)

Token

Robots Vs Aliens (RVA)
 

Overview

Max Total Supply

700 RVA

Holders

652

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RVA
0x7e9DC5A161Aad1b75234bb0CbCF5Dca73DAd261B
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:
aliensvsrobots

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

// File: contracts/Aliensvsrobots.sol



pragma solidity ^0.8.14;





contract aliensvsrobots is ERC721A, Ownable {
    enum SaleStatus{ PAUSED, PRESALE, PUBLIC }

    uint public constant COLLECTION_SIZE = 700;
    uint public constant FIRSTXFREE = 1;
    uint public constant TOKENS_PER_TRAN_LIMIT = 10;
    uint public constant TOKENS_PER_PERSON_PUB_LIMIT = 10;
    
    
    uint public MINT_PRICE = 0.005 ether;
    SaleStatus public saleStatus = SaleStatus.PAUSED;
    
    string private _baseURL = "ipfs://bafybeie7mpgm5poa522m2hsz3falnlszj4wjeqt3zeoxdl7cgnmyayi4b4";
    
    mapping(address => uint) private _mintedCount;
    

    constructor() ERC721A("Robots Vs Aliens", "RVA"){}
    
    
    
    
    
    
    /// @notice Set base metadata URL
    function setBaseURL(string calldata url) external onlyOwner {
        _baseURL = url;
    }

    /// @dev override base uri. It will be combined with token ID
    function _baseURI() internal view override returns (string memory) {
        return _baseURL;
    }

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

    /// @notice Update current sale stage
    function setSaleStatus(SaleStatus status) external onlyOwner {
        saleStatus = status;
    }

    /// @notice Update public mint price
    function setPublicMintPrice(uint price) external onlyOwner {
        MINT_PRICE = price;
    }

    /// @notice Withdraw contract balance
    function withdraw() external onlyOwner {
        uint balance = address(this).balance;
        require(balance > 0, "No balance");
        payable(owner()).transfer(balance);
    }

    /// @notice Allows owner to mint tokens to a specified address
    function airdrop(address to, uint count) external onlyOwner {
        require(_totalMinted() + count <= COLLECTION_SIZE, "Request exceeds collection size");
        _safeMint(to, count);
    }

    /// @notice Get token URI. In case of delayed reveal we give user the json of the placeholer metadata.
    /// @param tokenId token ID
    function tokenURI(uint tokenId) public view override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        string memory baseURI = _baseURI();

        return bytes(baseURI).length > 0 
            ? string(abi.encodePacked(baseURI, "/", _toString(tokenId), ".json")) 
            : "";
    }
    
    function calcTotal(uint count) public view returns(uint) {
        require(saleStatus != SaleStatus.PAUSED, "AvR: Sales are off");

        
        require(msg.sender != address(0));
        uint totalMintedCount = _mintedCount[msg.sender];

        if(FIRSTXFREE > totalMintedCount) {
            uint freeLeft = FIRSTXFREE - totalMintedCount;
            if(count > freeLeft) {
                // just pay the difference
                count -= freeLeft;
            }
            else {
                count = 0;
            }
        }

        
        uint price = MINT_PRICE;

        return count * price;
    }
    
    
    
    /// @notice Mints specified amount of tokens
    /// @param count How many tokens to mint
    function mint(uint count) external payable {
        require(saleStatus != SaleStatus.PAUSED, "AvR: Sales are off");
        require(_totalMinted() + count <= COLLECTION_SIZE, "AvR: Number of requested tokens will exceed collection size");
        require(count <= TOKENS_PER_TRAN_LIMIT, "AvR: Number of requested tokens exceeds allowance (100)");
        require(_mintedCount[msg.sender] + count <= TOKENS_PER_PERSON_PUB_LIMIT, "AvR: Number of requested tokens exceeds allowance (500)");
        require(msg.value >= calcTotal(count), "AvR: Ether value sent is not sufficient");
        _mintedCount[msg.sender] += count;
        _safeMint(msg.sender, count);
    }
}

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":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COLLECTION_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FIRSTXFREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_PERSON_PUB_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKENS_PER_TRAN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"calcTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"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":[],"name":"saleStatus","outputs":[{"internalType":"enum aliensvsrobots.SaleStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"url","type":"string"}],"name":"setBaseURL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum aliensvsrobots.SaleStatus","name":"status","type":"uint8"}],"name":"setSaleStatus","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":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526611c37937e080006009556000600a60006101000a81548160ff021916908360028111156200003857620000376200021b565b5b02179055506040518060800160405280604281526020016200379d60429139600b9081620000679190620004c4565b503480156200007557600080fd5b506040518060400160405280601081526020017f526f626f747320567320416c69656e73000000000000000000000000000000008152506040518060400160405280600381526020017f52564100000000000000000000000000000000000000000000000000000000008152508160029081620000f39190620004c4565b508060039081620001059190620004c4565b50620001166200014460201b60201c565b60008190555050506200013e620001326200014d60201b60201c565b6200015560201b60201c565b620005ab565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002cc57607f821691505b602082108103620002e257620002e162000284565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200034c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200030d565b6200035886836200030d565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003a56200039f620003998462000370565b6200037a565b62000370565b9050919050565b6000819050919050565b620003c18362000384565b620003d9620003d082620003ac565b8484546200031a565b825550505050565b600090565b620003f0620003e1565b620003fd818484620003b6565b505050565b5b81811015620004255762000419600082620003e6565b60018101905062000403565b5050565b601f82111562000474576200043e81620002e8565b6200044984620002fd565b8101602085101562000459578190505b620004716200046885620002fd565b83018262000402565b50505b505050565b600082821c905092915050565b6000620004996000198460080262000479565b1980831691505092915050565b6000620004b4838362000486565b9150826002028217905092915050565b620004cf826200024a565b67ffffffffffffffff811115620004eb57620004ea62000255565b5b620004f78254620002b3565b6200050482828562000429565b600060209050601f8311600181146200053c576000841562000527578287015190505b620005338582620004a6565b865550620005a3565b601f1984166200054c86620002e8565b60005b8281101562000576578489015182556001820191506020850194506020810190506200054f565b8683101562000596578489015162000592601f89168262000486565b8355505b6001600288020188555050505b505050505050565b6131e280620005bb6000396000f3fe6080604052600436106101cd5760003560e01c80638ba4cc3c116100f7578063b3f8d3cb11610095578063d8258d9511610064578063d8258d951461061f578063e985e9c51461064a578063f2fde38b14610687578063f9020e33146106b0576101cd565b8063b3f8d3cb14610570578063b88d4fde1461059b578063c002d23d146105b7578063c87b56dd146105e2576101cd565b806395d89b41116100d157806395d89b41146104c3578063a0712d68146104ee578063a22cb4651461050a578063af6128c214610533576101cd565b80638ba4cc3c146104445780638da5cb5b1461046d57806395c7077814610498576101cd565b80633ccfd60b1161016f5780635d82cf6e1161013e5780635d82cf6e1461038a5780636352211e146103b357806370a08231146103f0578063715018a61461042d576101cd565b80633ccfd60b1461030557806342842e0e1461031c5780634891ad881461033857806349f2553a14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633661edfa146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611fbd565b6106db565b6040516102069190612005565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b60405161023191906120b9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612111565b6107ff565b60405161026e919061217f565b60405180910390f35b610291600480360381019061028c91906121c6565b61087e565b005b34801561029f57600080fd5b506102a86109c2565b6040516102b59190612215565b60405180910390f35b6102d860048036038101906102d39190612230565b6109d9565b005b3480156102e657600080fd5b506102ef610cfb565b6040516102fc9190612215565b60405180910390f35b34801561031157600080fd5b5061031a610d00565b005b61033660048036038101906103319190612230565b610da1565b005b34801561034457600080fd5b5061035f600480360381019061035a91906122a8565b610dc1565b005b34801561036d57600080fd5b506103886004803603810190610383919061233a565b610df6565b005b34801561039657600080fd5b506103b160048036038101906103ac9190612111565b610e14565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612111565b610e26565b6040516103e7919061217f565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612387565b610e38565b6040516104249190612215565b60405180910390f35b34801561043957600080fd5b50610442610ef0565b005b34801561045057600080fd5b5061046b600480360381019061046691906121c6565b610f04565b005b34801561047957600080fd5b50610482610f71565b60405161048f919061217f565b60405180910390f35b3480156104a457600080fd5b506104ad610f9b565b6040516104ba9190612215565b60405180910390f35b3480156104cf57600080fd5b506104d8610fa0565b6040516104e591906120b9565b60405180910390f35b61050860048036038101906105039190612111565b611032565b005b34801561051657600080fd5b50610531600480360381019061052c91906123e0565b61127f565b005b34801561053f57600080fd5b5061055a60048036038101906105559190612111565b61138a565b6040516105679190612215565b60405180910390f35b34801561057c57600080fd5b506105856114d6565b6040516105929190612215565b60405180910390f35b6105b560048036038101906105b09190612550565b6114db565b005b3480156105c357600080fd5b506105cc61154e565b6040516105d99190612215565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612111565b611554565b60405161061691906120b9565b60405180910390f35b34801561062b57600080fd5b506106346115fb565b6040516106419190612215565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906125d3565b611601565b60405161067e9190612005565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612387565b611695565b005b3480156106bc57600080fd5b506106c5611718565b6040516106d2919061268a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077c906126d4565b80601f01602080910402602001604051908101604052809291908181526020018280546107a8906126d4565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a8261172b565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088982610e26565b90508073ffffffffffffffffffffffffffffffffffffffff166108aa61178a565b73ffffffffffffffffffffffffffffffffffffffff161461090d576108d6816108d161178a565b611601565b61090c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cc611792565b6001546000540303905090565b60006109e48261179b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5784611867565b91509150610a6d8187610a6861178a565b61188e565b610ab957610a8286610a7d61178a565b611601565b610ab8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b1f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c86868660016118d2565b8015610b3757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0585610be18888876118d8565b7c020000000000000000000000000000000000000000000000000000000017611900565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c8b5760006001850190506000600460008381526020019081526020016000205403610c89576000548114610c88578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf3868686600161192b565b505050505050565b600a81565b610d08611931565b600047905060008111610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790612751565b60405180910390fd5b610d58610f71565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d9d573d6000803e3d6000fd5b5050565b610dbc838383604051806020016040528060008152506114db565b505050565b610dc9611931565b80600a60006101000a81548160ff02191690836002811115610dee57610ded612613565b5b021790555050565b610dfe611931565b8181600b9182610e0f929190612928565b505050565b610e1c611931565b8060098190555050565b6000610e318261179b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef8611931565b610f0260006119af565b565b610f0c611931565b6102bc81610f18611a75565b610f229190612a27565b1115610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90612ac9565b60405180910390fd5b610f6d8282611a88565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b606060038054610faf906126d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb906126d4565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b5050505050905090565b6000600281111561104657611045612613565b5b600a60009054906101000a900460ff16600281111561106857611067612613565b5b036110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90612b35565b60405180910390fd5b6102bc816110b4611a75565b6110be9190612a27565b11156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612bc7565b60405180910390fd5b600a811115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612c59565b60405180910390fd5b600a81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190612a27565b11156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612ceb565b60405180910390fd5b6111da8161138a565b34101561121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390612d7d565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126b9190612a27565b9250508190555061127c3382611a88565b50565b806007600061128c61178a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133961178a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137e9190612005565b60405180910390a35050565b600080600281111561139f5761139e612613565b5b600a60009054906101000a900460ff1660028111156113c1576113c0612613565b5b03611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890612b35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361143a57600080fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600111156114ba5760008160016114969190612d9d565b9050808411156114b35780846114ac9190612d9d565b93506114b8565b600093505b505b6000600954905080846114cd9190612dd1565b92505050919050565b600181565b6114e68484846109d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115485761151184848484611aa6565b611547576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b606061155f8261172b565b61159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590612e9d565b60405180910390fd5b60006115a8611bf6565b905060008151116115c857604051806020016040528060008152506115f3565b806115d284611c88565b6040516020016115e3929190612f91565b6040516020818303038152906040525b915050919050565b6102bc81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61169d611931565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117039061303d565b60405180910390fd5b611715816119af565b50565b600a60009054906101000a900460ff1681565b600081611736611792565b11158015611745575060005482105b8015611783575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117aa611792565b116118305760005481101561182f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361182d575b600081036118235760046000836001900393508381526020019081526020016000205490506117f9565b8092505050611862565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ef868684611cd8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611939611ce1565b73ffffffffffffffffffffffffffffffffffffffff16611957610f71565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a4906130a9565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611a7f611792565b60005403905090565b611aa2828260405180602001604052806000815250611ce9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc61178a565b8786866040518563ffffffff1660e01b8152600401611aee949392919061311e565b6020604051808303816000875af1925050508015611b2a57506040513d601f19601f82011682018060405250810190611b27919061317f565b60015b611ba3573d8060008114611b5a576040519150601f19603f3d011682016040523d82523d6000602084013e611b5f565b606091505b506000815103611b9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c05906126d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c31906126d4565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cc357600184039350600a81066030018453600a8104905080611ca1575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611cf38383611d86565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d8157600080549050600083820390505b611d336000868380600101945086611aa6565b611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d20578160005414611d7e57600080fd5b50505b505050565b60008054905060008203611dc6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd360008483856118d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4a83611e3b60008660006118d8565b611e4485611f41565b17611900565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eeb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb0565b5060008203611f26576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f3c600084838561192b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9a81611f65565b8114611fa557600080fd5b50565b600081359050611fb781611f91565b92915050565b600060208284031215611fd357611fd2611f5b565b5b6000611fe184828501611fa8565b91505092915050565b60008115159050919050565b611fff81611fea565b82525050565b600060208201905061201a6000830184611ff6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205a57808201518184015260208101905061203f565b83811115612069576000848401525b50505050565b6000601f19601f8301169050919050565b600061208b82612020565b612095818561202b565b93506120a581856020860161203c565b6120ae8161206f565b840191505092915050565b600060208201905081810360008301526120d38184612080565b905092915050565b6000819050919050565b6120ee816120db565b81146120f957600080fd5b50565b60008135905061210b816120e5565b92915050565b60006020828403121561212757612126611f5b565b5b6000612135848285016120fc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121698261213e565b9050919050565b6121798161215e565b82525050565b60006020820190506121946000830184612170565b92915050565b6121a38161215e565b81146121ae57600080fd5b50565b6000813590506121c08161219a565b92915050565b600080604083850312156121dd576121dc611f5b565b5b60006121eb858286016121b1565b92505060206121fc858286016120fc565b9150509250929050565b61220f816120db565b82525050565b600060208201905061222a6000830184612206565b92915050565b60008060006060848603121561224957612248611f5b565b5b6000612257868287016121b1565b9350506020612268868287016121b1565b9250506040612279868287016120fc565b9150509250925092565b6003811061229057600080fd5b50565b6000813590506122a281612283565b92915050565b6000602082840312156122be576122bd611f5b565b5b60006122cc84828501612293565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122fa576122f96122d5565b5b8235905067ffffffffffffffff811115612317576123166122da565b5b602083019150836001820283011115612333576123326122df565b5b9250929050565b6000806020838503121561235157612350611f5b565b5b600083013567ffffffffffffffff81111561236f5761236e611f60565b5b61237b858286016122e4565b92509250509250929050565b60006020828403121561239d5761239c611f5b565b5b60006123ab848285016121b1565b91505092915050565b6123bd81611fea565b81146123c857600080fd5b50565b6000813590506123da816123b4565b92915050565b600080604083850312156123f7576123f6611f5b565b5b6000612405858286016121b1565b9250506020612416858286016123cb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61245d8261206f565b810181811067ffffffffffffffff8211171561247c5761247b612425565b5b80604052505050565b600061248f611f51565b905061249b8282612454565b919050565b600067ffffffffffffffff8211156124bb576124ba612425565b5b6124c48261206f565b9050602081019050919050565b82818337600083830152505050565b60006124f36124ee846124a0565b612485565b90508281526020810184848401111561250f5761250e612420565b5b61251a8482856124d1565b509392505050565b600082601f830112612537576125366122d5565b5b81356125478482602086016124e0565b91505092915050565b6000806000806080858703121561256a57612569611f5b565b5b6000612578878288016121b1565b9450506020612589878288016121b1565b935050604061259a878288016120fc565b925050606085013567ffffffffffffffff8111156125bb576125ba611f60565b5b6125c787828801612522565b91505092959194509250565b600080604083850312156125ea576125e9611f5b565b5b60006125f8858286016121b1565b9250506020612609858286016121b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061265357612652612613565b5b50565b600081905061266482612642565b919050565b600061267482612656565b9050919050565b61268481612669565b82525050565b600060208201905061269f600083018461267b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126ec57607f821691505b6020821081036126ff576126fe6126a5565b5b50919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b600061273b600a8361202b565b915061274682612705565b602082019050919050565b6000602082019050818103600083015261276a8161272e565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127de7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127a1565b6127e886836127a1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061282561282061281b846120db565b612800565b6120db565b9050919050565b6000819050919050565b61283f8361280a565b61285361284b8261282c565b8484546127ae565b825550505050565b600090565b61286861285b565b612873818484612836565b505050565b5b818110156128975761288c600082612860565b600181019050612879565b5050565b601f8211156128dc576128ad8161277c565b6128b684612791565b810160208510156128c5578190505b6128d96128d185612791565b830182612878565b50505b505050565b600082821c905092915050565b60006128ff600019846008026128e1565b1980831691505092915050565b600061291883836128ee565b9150826002028217905092915050565b6129328383612771565b67ffffffffffffffff81111561294b5761294a612425565b5b61295582546126d4565b61296082828561289b565b6000601f83116001811461298f576000841561297d578287013590505b612987858261290c565b8655506129ef565b601f19841661299d8661277c565b60005b828110156129c5578489013582556001820191506020850194506020810190506129a0565b868310156129e257848901356129de601f8916826128ee565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a32826120db565b9150612a3d836120db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a7257612a716129f8565b5b828201905092915050565b7f52657175657374206578636565647320636f6c6c656374696f6e2073697a6500600082015250565b6000612ab3601f8361202b565b9150612abe82612a7d565b602082019050919050565b60006020820190508181036000830152612ae281612aa6565b9050919050565b7f4176523a2053616c657320617265206f66660000000000000000000000000000600082015250565b6000612b1f60128361202b565b9150612b2a82612ae9565b602082019050919050565b60006020820190508181036000830152612b4e81612b12565b9050919050565b7f4176523a204e756d626572206f662072657175657374656420746f6b656e732060008201527f77696c6c2065786365656420636f6c6c656374696f6e2073697a650000000000602082015250565b6000612bb1603b8361202b565b9150612bbc82612b55565b604082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f4176523a204e756d626572206f662072657175657374656420746f6b656e732060008201527f6578636565647320616c6c6f77616e6365202831303029000000000000000000602082015250565b6000612c4360378361202b565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f4176523a204e756d626572206f662072657175657374656420746f6b656e732060008201527f6578636565647320616c6c6f77616e6365202835303029000000000000000000602082015250565b6000612cd560378361202b565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f4176523a2045746865722076616c75652073656e74206973206e6f742073756660008201527f66696369656e7400000000000000000000000000000000000000000000000000602082015250565b6000612d6760278361202b565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b6000612da8826120db565b9150612db3836120db565b925082821015612dc657612dc56129f8565b5b828203905092915050565b6000612ddc826120db565b9150612de7836120db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2057612e1f6129f8565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e87602f8361202b565b9150612e9282612e2b565b604082019050919050565b60006020820190508181036000830152612eb681612e7a565b9050919050565b600081905092915050565b6000612ed382612020565b612edd8185612ebd565b9350612eed81856020860161203c565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612f2f600183612ebd565b9150612f3a82612ef9565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f7b600583612ebd565b9150612f8682612f45565b600582019050919050565b6000612f9d8285612ec8565b9150612fa882612f22565b9150612fb48284612ec8565b9150612fbf82612f6e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061302760268361202b565b915061303282612fcb565b604082019050919050565b600060208201905081810360008301526130568161301a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061309360208361202b565b915061309e8261305d565b602082019050919050565b600060208201905081810360008301526130c281613086565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130f0826130c9565b6130fa81856130d4565b935061310a81856020860161203c565b6131138161206f565b840191505092915050565b60006080820190506131336000830187612170565b6131406020830186612170565b61314d6040830185612206565b818103606083015261315f81846130e5565b905095945050505050565b60008151905061317981611f91565b92915050565b60006020828403121561319557613194611f5b565b5b60006131a38482850161316a565b9150509291505056fea2646970667358221220c8efb6ca8ce18774ab3b89c1b347b09dfb7685cb3886b8495931789ca499121364736f6c634300080f0033697066733a2f2f6261667962656965376d70676d35706f613532326d3268737a3366616c6e6c737a6a34776a657174337a656f78646c3763676e6d79617969346234

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80638ba4cc3c116100f7578063b3f8d3cb11610095578063d8258d9511610064578063d8258d951461061f578063e985e9c51461064a578063f2fde38b14610687578063f9020e33146106b0576101cd565b8063b3f8d3cb14610570578063b88d4fde1461059b578063c002d23d146105b7578063c87b56dd146105e2576101cd565b806395d89b41116100d157806395d89b41146104c3578063a0712d68146104ee578063a22cb4651461050a578063af6128c214610533576101cd565b80638ba4cc3c146104445780638da5cb5b1461046d57806395c7077814610498576101cd565b80633ccfd60b1161016f5780635d82cf6e1161013e5780635d82cf6e1461038a5780636352211e146103b357806370a08231146103f0578063715018a61461042d576101cd565b80633ccfd60b1461030557806342842e0e1461031c5780634891ad881461033857806349f2553a14610361576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806318160ddd1461029357806323b872dd146102be5780633661edfa146102da576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190611fbd565b6106db565b6040516102069190612005565b60405180910390f35b34801561021b57600080fd5b5061022461076d565b60405161023191906120b9565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612111565b6107ff565b60405161026e919061217f565b60405180910390f35b610291600480360381019061028c91906121c6565b61087e565b005b34801561029f57600080fd5b506102a86109c2565b6040516102b59190612215565b60405180910390f35b6102d860048036038101906102d39190612230565b6109d9565b005b3480156102e657600080fd5b506102ef610cfb565b6040516102fc9190612215565b60405180910390f35b34801561031157600080fd5b5061031a610d00565b005b61033660048036038101906103319190612230565b610da1565b005b34801561034457600080fd5b5061035f600480360381019061035a91906122a8565b610dc1565b005b34801561036d57600080fd5b506103886004803603810190610383919061233a565b610df6565b005b34801561039657600080fd5b506103b160048036038101906103ac9190612111565b610e14565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612111565b610e26565b6040516103e7919061217f565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612387565b610e38565b6040516104249190612215565b60405180910390f35b34801561043957600080fd5b50610442610ef0565b005b34801561045057600080fd5b5061046b600480360381019061046691906121c6565b610f04565b005b34801561047957600080fd5b50610482610f71565b60405161048f919061217f565b60405180910390f35b3480156104a457600080fd5b506104ad610f9b565b6040516104ba9190612215565b60405180910390f35b3480156104cf57600080fd5b506104d8610fa0565b6040516104e591906120b9565b60405180910390f35b61050860048036038101906105039190612111565b611032565b005b34801561051657600080fd5b50610531600480360381019061052c91906123e0565b61127f565b005b34801561053f57600080fd5b5061055a60048036038101906105559190612111565b61138a565b6040516105679190612215565b60405180910390f35b34801561057c57600080fd5b506105856114d6565b6040516105929190612215565b60405180910390f35b6105b560048036038101906105b09190612550565b6114db565b005b3480156105c357600080fd5b506105cc61154e565b6040516105d99190612215565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612111565b611554565b60405161061691906120b9565b60405180910390f35b34801561062b57600080fd5b506106346115fb565b6040516106419190612215565b60405180910390f35b34801561065657600080fd5b50610671600480360381019061066c91906125d3565b611601565b60405161067e9190612005565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190612387565b611695565b005b3480156106bc57600080fd5b506106c5611718565b6040516106d2919061268a565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061073657506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107665750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461077c906126d4565b80601f01602080910402602001604051908101604052809291908181526020018280546107a8906126d4565b80156107f55780601f106107ca576101008083540402835291602001916107f5565b820191906000526020600020905b8154815290600101906020018083116107d857829003601f168201915b5050505050905090565b600061080a8261172b565b610840576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061088982610e26565b90508073ffffffffffffffffffffffffffffffffffffffff166108aa61178a565b73ffffffffffffffffffffffffffffffffffffffff161461090d576108d6816108d161178a565b611601565b61090c576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109cc611792565b6001546000540303905090565b60006109e48261179b565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610a5784611867565b91509150610a6d8187610a6861178a565b61188e565b610ab957610a8286610a7d61178a565b611601565b610ab8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610b1f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b2c86868660016118d2565b8015610b3757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c0585610be18888876118d8565b7c020000000000000000000000000000000000000000000000000000000017611900565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610c8b5760006001850190506000600460008381526020019081526020016000205403610c89576000548114610c88578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610cf3868686600161192b565b505050505050565b600a81565b610d08611931565b600047905060008111610d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4790612751565b60405180910390fd5b610d58610f71565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610d9d573d6000803e3d6000fd5b5050565b610dbc838383604051806020016040528060008152506114db565b505050565b610dc9611931565b80600a60006101000a81548160ff02191690836002811115610dee57610ded612613565b5b021790555050565b610dfe611931565b8181600b9182610e0f929190612928565b505050565b610e1c611931565b8060098190555050565b6000610e318261179b565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610ef8611931565b610f0260006119af565b565b610f0c611931565b6102bc81610f18611a75565b610f229190612a27565b1115610f63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5a90612ac9565b60405180910390fd5b610f6d8282611a88565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600a81565b606060038054610faf906126d4565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb906126d4565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b5050505050905090565b6000600281111561104657611045612613565b5b600a60009054906101000a900460ff16600281111561106857611067612613565b5b036110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90612b35565b60405180910390fd5b6102bc816110b4611a75565b6110be9190612a27565b11156110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f690612bc7565b60405180910390fd5b600a811115611143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113a90612c59565b60405180910390fd5b600a81600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111909190612a27565b11156111d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c890612ceb565b60405180910390fd5b6111da8161138a565b34101561121c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121390612d7d565b60405180910390fd5b80600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461126b9190612a27565b9250508190555061127c3382611a88565b50565b806007600061128c61178a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661133961178a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161137e9190612005565b60405180910390a35050565b600080600281111561139f5761139e612613565b5b600a60009054906101000a900460ff1660028111156113c1576113c0612613565b5b03611401576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f890612b35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff160361143a57600080fd5b6000600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905080600111156114ba5760008160016114969190612d9d565b9050808411156114b35780846114ac9190612d9d565b93506114b8565b600093505b505b6000600954905080846114cd9190612dd1565b92505050919050565b600181565b6114e68484846109d9565b60008373ffffffffffffffffffffffffffffffffffffffff163b146115485761151184848484611aa6565b611547576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60095481565b606061155f8261172b565b61159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590612e9d565b60405180910390fd5b60006115a8611bf6565b905060008151116115c857604051806020016040528060008152506115f3565b806115d284611c88565b6040516020016115e3929190612f91565b6040516020818303038152906040525b915050919050565b6102bc81565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61169d611931565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117039061303d565b60405180910390fd5b611715816119af565b50565b600a60009054906101000a900460ff1681565b600081611736611792565b11158015611745575060005482105b8015611783575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806117aa611792565b116118305760005481101561182f5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361182d575b600081036118235760046000836001900393508381526020019081526020016000205490506117f9565b8092505050611862565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86118ef868684611cd8565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611939611ce1565b73ffffffffffffffffffffffffffffffffffffffff16611957610f71565b73ffffffffffffffffffffffffffffffffffffffff16146119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a4906130a9565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611a7f611792565b60005403905090565b611aa2828260405180602001604052806000815250611ce9565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611acc61178a565b8786866040518563ffffffff1660e01b8152600401611aee949392919061311e565b6020604051808303816000875af1925050508015611b2a57506040513d601f19601f82011682018060405250810190611b27919061317f565b60015b611ba3573d8060008114611b5a576040519150601f19603f3d011682016040523d82523d6000602084013e611b5f565b606091505b506000815103611b9b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b8054611c05906126d4565b80601f0160208091040260200160405190810160405280929190818152602001828054611c31906126d4565b8015611c7e5780601f10611c5357610100808354040283529160200191611c7e565b820191906000526020600020905b815481529060010190602001808311611c6157829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b600115611cc357600184039350600a81066030018453600a8104905080611ca1575b50828103602084039350808452505050919050565b60009392505050565b600033905090565b611cf38383611d86565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611d8157600080549050600083820390505b611d336000868380600101945086611aa6565b611d69576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d20578160005414611d7e57600080fd5b50505b505050565b60008054905060008203611dc6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611dd360008483856118d2565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e4a83611e3b60008660006118d8565b611e4485611f41565b17611900565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611eeb57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eb0565b5060008203611f26576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f3c600084838561192b565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611f9a81611f65565b8114611fa557600080fd5b50565b600081359050611fb781611f91565b92915050565b600060208284031215611fd357611fd2611f5b565b5b6000611fe184828501611fa8565b91505092915050565b60008115159050919050565b611fff81611fea565b82525050565b600060208201905061201a6000830184611ff6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561205a57808201518184015260208101905061203f565b83811115612069576000848401525b50505050565b6000601f19601f8301169050919050565b600061208b82612020565b612095818561202b565b93506120a581856020860161203c565b6120ae8161206f565b840191505092915050565b600060208201905081810360008301526120d38184612080565b905092915050565b6000819050919050565b6120ee816120db565b81146120f957600080fd5b50565b60008135905061210b816120e5565b92915050565b60006020828403121561212757612126611f5b565b5b6000612135848285016120fc565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121698261213e565b9050919050565b6121798161215e565b82525050565b60006020820190506121946000830184612170565b92915050565b6121a38161215e565b81146121ae57600080fd5b50565b6000813590506121c08161219a565b92915050565b600080604083850312156121dd576121dc611f5b565b5b60006121eb858286016121b1565b92505060206121fc858286016120fc565b9150509250929050565b61220f816120db565b82525050565b600060208201905061222a6000830184612206565b92915050565b60008060006060848603121561224957612248611f5b565b5b6000612257868287016121b1565b9350506020612268868287016121b1565b9250506040612279868287016120fc565b9150509250925092565b6003811061229057600080fd5b50565b6000813590506122a281612283565b92915050565b6000602082840312156122be576122bd611f5b565b5b60006122cc84828501612293565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126122fa576122f96122d5565b5b8235905067ffffffffffffffff811115612317576123166122da565b5b602083019150836001820283011115612333576123326122df565b5b9250929050565b6000806020838503121561235157612350611f5b565b5b600083013567ffffffffffffffff81111561236f5761236e611f60565b5b61237b858286016122e4565b92509250509250929050565b60006020828403121561239d5761239c611f5b565b5b60006123ab848285016121b1565b91505092915050565b6123bd81611fea565b81146123c857600080fd5b50565b6000813590506123da816123b4565b92915050565b600080604083850312156123f7576123f6611f5b565b5b6000612405858286016121b1565b9250506020612416858286016123cb565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61245d8261206f565b810181811067ffffffffffffffff8211171561247c5761247b612425565b5b80604052505050565b600061248f611f51565b905061249b8282612454565b919050565b600067ffffffffffffffff8211156124bb576124ba612425565b5b6124c48261206f565b9050602081019050919050565b82818337600083830152505050565b60006124f36124ee846124a0565b612485565b90508281526020810184848401111561250f5761250e612420565b5b61251a8482856124d1565b509392505050565b600082601f830112612537576125366122d5565b5b81356125478482602086016124e0565b91505092915050565b6000806000806080858703121561256a57612569611f5b565b5b6000612578878288016121b1565b9450506020612589878288016121b1565b935050604061259a878288016120fc565b925050606085013567ffffffffffffffff8111156125bb576125ba611f60565b5b6125c787828801612522565b91505092959194509250565b600080604083850312156125ea576125e9611f5b565b5b60006125f8858286016121b1565b9250506020612609858286016121b1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6003811061265357612652612613565b5b50565b600081905061266482612642565b919050565b600061267482612656565b9050919050565b61268481612669565b82525050565b600060208201905061269f600083018461267b565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806126ec57607f821691505b6020821081036126ff576126fe6126a5565b5b50919050565b7f4e6f2062616c616e636500000000000000000000000000000000000000000000600082015250565b600061273b600a8361202b565b915061274682612705565b602082019050919050565b6000602082019050818103600083015261276a8161272e565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026127de7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127a1565b6127e886836127a1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061282561282061281b846120db565b612800565b6120db565b9050919050565b6000819050919050565b61283f8361280a565b61285361284b8261282c565b8484546127ae565b825550505050565b600090565b61286861285b565b612873818484612836565b505050565b5b818110156128975761288c600082612860565b600181019050612879565b5050565b601f8211156128dc576128ad8161277c565b6128b684612791565b810160208510156128c5578190505b6128d96128d185612791565b830182612878565b50505b505050565b600082821c905092915050565b60006128ff600019846008026128e1565b1980831691505092915050565b600061291883836128ee565b9150826002028217905092915050565b6129328383612771565b67ffffffffffffffff81111561294b5761294a612425565b5b61295582546126d4565b61296082828561289b565b6000601f83116001811461298f576000841561297d578287013590505b612987858261290c565b8655506129ef565b601f19841661299d8661277c565b60005b828110156129c5578489013582556001820191506020850194506020810190506129a0565b868310156129e257848901356129de601f8916826128ee565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612a32826120db565b9150612a3d836120db565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a7257612a716129f8565b5b828201905092915050565b7f52657175657374206578636565647320636f6c6c656374696f6e2073697a6500600082015250565b6000612ab3601f8361202b565b9150612abe82612a7d565b602082019050919050565b60006020820190508181036000830152612ae281612aa6565b9050919050565b7f4176523a2053616c657320617265206f66660000000000000000000000000000600082015250565b6000612b1f60128361202b565b9150612b2a82612ae9565b602082019050919050565b60006020820190508181036000830152612b4e81612b12565b9050919050565b7f4176523a204e756d626572206f662072657175657374656420746f6b656e732060008201527f77696c6c2065786365656420636f6c6c656374696f6e2073697a650000000000602082015250565b6000612bb1603b8361202b565b9150612bbc82612b55565b604082019050919050565b60006020820190508181036000830152612be081612ba4565b9050919050565b7f4176523a204e756d626572206f662072657175657374656420746f6b656e732060008201527f6578636565647320616c6c6f77616e6365202831303029000000000000000000602082015250565b6000612c4360378361202b565b9150612c4e82612be7565b604082019050919050565b60006020820190508181036000830152612c7281612c36565b9050919050565b7f4176523a204e756d626572206f662072657175657374656420746f6b656e732060008201527f6578636565647320616c6c6f77616e6365202835303029000000000000000000602082015250565b6000612cd560378361202b565b9150612ce082612c79565b604082019050919050565b60006020820190508181036000830152612d0481612cc8565b9050919050565b7f4176523a2045746865722076616c75652073656e74206973206e6f742073756660008201527f66696369656e7400000000000000000000000000000000000000000000000000602082015250565b6000612d6760278361202b565b9150612d7282612d0b565b604082019050919050565b60006020820190508181036000830152612d9681612d5a565b9050919050565b6000612da8826120db565b9150612db3836120db565b925082821015612dc657612dc56129f8565b5b828203905092915050565b6000612ddc826120db565b9150612de7836120db565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612e2057612e1f6129f8565b5b828202905092915050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612e87602f8361202b565b9150612e9282612e2b565b604082019050919050565b60006020820190508181036000830152612eb681612e7a565b9050919050565b600081905092915050565b6000612ed382612020565b612edd8185612ebd565b9350612eed81856020860161203c565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b6000612f2f600183612ebd565b9150612f3a82612ef9565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612f7b600583612ebd565b9150612f8682612f45565b600582019050919050565b6000612f9d8285612ec8565b9150612fa882612f22565b9150612fb48284612ec8565b9150612fbf82612f6e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061302760268361202b565b915061303282612fcb565b604082019050919050565b600060208201905081810360008301526130568161301a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061309360208361202b565b915061309e8261305d565b602082019050919050565b600060208201905081810360008301526130c281613086565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006130f0826130c9565b6130fa81856130d4565b935061310a81856020860161203c565b6131138161206f565b840191505092915050565b60006080820190506131336000830187612170565b6131406020830186612170565b61314d6040830185612206565b818103606083015261315f81846130e5565b905095945050505050565b60008151905061317981611f91565b92915050565b60006020828403121561319557613194611f5b565b5b60006131a38482850161316a565b9150509291505056fea2646970667358221220c8efb6ca8ce18774ab3b89c1b347b09dfb7685cb3886b8495931789ca499121364736f6c634300080f0033

Deployed Bytecode Sourcemap

58759:3859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18404:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19306:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25797:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25230:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15057:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29436:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59005:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60196:184;;;;;;;;;;;;;:::i;:::-;;32357:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59900:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59479:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60049:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20699:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16241:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57861:103;;;;;;;;;;;;;:::i;:::-;;60456:195;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57213:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58951:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19482:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;61941:674;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26355:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61177:644;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58909:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33148:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59077:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60800:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58860:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26746:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58119:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59120:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18404:639;18489:4;18828:10;18813:25;;:11;:25;;;;:102;;;;18905:10;18890:25;;:11;:25;;;;18813:102;:179;;;;18982:10;18967:25;;:11;:25;;;;18813:179;18793:199;;18404:639;;;:::o;19306:100::-;19360:13;19393:5;19386:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19306:100;:::o;25797:218::-;25873:7;25898:16;25906:7;25898;:16::i;:::-;25893:64;;25923:34;;;;;;;;;;;;;;25893:64;25977:15;:24;25993:7;25977:24;;;;;;;;;;;:30;;;;;;;;;;;;25970:37;;25797:218;;;:::o;25230:408::-;25319:13;25335:16;25343:7;25335;:16::i;:::-;25319:32;;25391:5;25368:28;;:19;:17;:19::i;:::-;:28;;;25364:175;;25416:44;25433:5;25440:19;:17;:19::i;:::-;25416:16;:44::i;:::-;25411:128;;25488:35;;;;;;;;;;;;;;25411:128;25364:175;25584:2;25551:15;:24;25567:7;25551:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25622:7;25618:2;25602:28;;25611:5;25602:28;;;;;;;;;;;;25308:330;25230:408;;:::o;15057:323::-;15118:7;15346:15;:13;:15::i;:::-;15331:12;;15315:13;;:28;:46;15308:53;;15057:323;:::o;29436:2825::-;29578:27;29608;29627:7;29608:18;:27::i;:::-;29578:57;;29693:4;29652:45;;29668:19;29652:45;;;29648:86;;29706:28;;;;;;;;;;;;;;29648:86;29748:27;29777:23;29804:35;29831:7;29804:26;:35::i;:::-;29747:92;;;;29939:68;29964:15;29981:4;29987:19;:17;:19::i;:::-;29939:24;:68::i;:::-;29934:180;;30027:43;30044:4;30050:19;:17;:19::i;:::-;30027:16;:43::i;:::-;30022:92;;30079:35;;;;;;;;;;;;;;30022:92;29934:180;30145:1;30131:16;;:2;:16;;;30127:52;;30156:23;;;;;;;;;;;;;;30127:52;30192:43;30214:4;30220:2;30224:7;30233:1;30192:21;:43::i;:::-;30328:15;30325:160;;;30468:1;30447:19;30440:30;30325:160;30865:18;:24;30884:4;30865:24;;;;;;;;;;;;;;;;30863:26;;;;;;;;;;;;30934:18;:22;30953:2;30934:22;;;;;;;;;;;;;;;;30932:24;;;;;;;;;;;31256:146;31293:2;31342:45;31357:4;31363:2;31367:19;31342:14;:45::i;:::-;11456:8;31314:73;31256:18;:146::i;:::-;31227:17;:26;31245:7;31227:26;;;;;;;;;;;:175;;;;31573:1;11456:8;31522:19;:47;:52;31518:627;;31595:19;31627:1;31617:7;:11;31595:33;;31784:1;31750:17;:30;31768:11;31750:30;;;;;;;;;;;;:35;31746:384;;31888:13;;31873:11;:28;31869:242;;32068:19;32035:17;:30;32053:11;32035:30;;;;;;;;;;;:52;;;;31869:242;31746:384;31576:569;31518:627;32192:7;32188:2;32173:27;;32182:4;32173:27;;;;;;;;;;;;32211:42;32232:4;32238:2;32242:7;32251:1;32211:20;:42::i;:::-;29567:2694;;;29436:2825;;;:::o;59005:53::-;59056:2;59005:53;:::o;60196:184::-;57099:13;:11;:13::i;:::-;60246:12:::1;60261:21;60246:36;;60311:1;60301:7;:11;60293:34;;;;;;;;;;;;:::i;:::-;;;;;;;;;60346:7;:5;:7::i;:::-;60338:25;;:34;60364:7;60338:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;60235:145;60196:184::o:0;32357:193::-;32503:39;32520:4;32526:2;32530:7;32503:39;;;;;;;;;;;;:16;:39::i;:::-;32357:193;;;:::o;59900:99::-;57099:13;:11;:13::i;:::-;59985:6:::1;59972:10;;:19;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;59900:99:::0;:::o;59479:93::-;57099:13;:11;:13::i;:::-;59561:3:::1;;59550:8;:14;;;;;;;:::i;:::-;;59479:93:::0;;:::o;60049:96::-;57099:13;:11;:13::i;:::-;60132:5:::1;60119:10;:18;;;;60049:96:::0;:::o;20699:152::-;20771:7;20814:27;20833:7;20814:18;:27::i;:::-;20791:52;;20699:152;;;:::o;16241:233::-;16313:7;16354:1;16337:19;;:5;:19;;;16333:60;;16365:28;;;;;;;;;;;;;;16333:60;10400:13;16411:18;:25;16430:5;16411:25;;;;;;;;;;;;;;;;:55;16404:62;;16241:233;;;:::o;57861:103::-;57099:13;:11;:13::i;:::-;57926:30:::1;57953:1;57926:18;:30::i;:::-;57861:103::o:0;60456:195::-;57099:13;:11;:13::i;:::-;58899:3:::1;60552:5;60535:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:41;;60527:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;60623:20;60633:2;60637:5;60623:9;:20::i;:::-;60456:195:::0;;:::o;57213:87::-;57259:7;57286:6;;;;;;;;;;;57279:13;;57213:87;:::o;58951:47::-;58996:2;58951:47;:::o;19482:104::-;19538:13;19571:7;19564:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19482:104;:::o;61941:674::-;62017:17;62003:31;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;61995:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;58899:3;62093:5;62076:14;:12;:14::i;:::-;:22;;;;:::i;:::-;:41;;62068:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;58996:2;62200:5;:30;;62192:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;59056:2;62336:5;62309:12;:24;62322:10;62309:24;;;;;;;;;;;;;;;;:32;;;;:::i;:::-;:63;;62301:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;62464:16;62474:5;62464:9;:16::i;:::-;62451:9;:29;;62443:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;62563:5;62535:12;:24;62548:10;62535:24;;;;;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;;;;;62579:28;62589:10;62601:5;62579:9;:28::i;:::-;61941:674;:::o;26355:234::-;26502:8;26450:18;:39;26469:19;:17;:19::i;:::-;26450:39;;;;;;;;;;;;;;;:49;26490:8;26450:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26562:8;26526:55;;26541:19;:17;:19::i;:::-;26526:55;;;26572:8;26526:55;;;;;;:::i;:::-;;;;;;;;26355:234;;:::o;61177:644::-;61228:4;61267:17;61253:31;;;;;;;;:::i;:::-;;:10;;;;;;;;;;;:31;;;;;;;;:::i;:::-;;;61245:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;61360:1;61338:24;;:10;:24;;;61330:33;;;;;;61374:21;61398:12;:24;61411:10;61398:24;;;;;;;;;;;;;;;;61374:48;;61451:16;58943:1;61438:29;61435:300;;;61484:13;61513:16;58943:1;61500:29;;;;:::i;:::-;61484:45;;61555:8;61547:5;:16;61544:180;;;61637:8;61628:17;;;;;:::i;:::-;;;61544:180;;;61707:1;61699:9;;61544:180;61469:266;61435:300;61757:10;61770;;61757:23;;61808:5;61800;:13;;;;:::i;:::-;61793:20;;;;61177:644;;;:::o;58909:35::-;58943:1;58909:35;:::o;33148:407::-;33323:31;33336:4;33342:2;33346:7;33323:12;:31::i;:::-;33387:1;33369:2;:14;;;:19;33365:183;;33408:56;33439:4;33445:2;33449:7;33458:5;33408:30;:56::i;:::-;33403:145;;33492:40;;;;;;;;;;;;;;33403:145;33365:183;33148:407;;;;:::o;59077:36::-;;;;:::o;60800:365::-;60862:13;60896:16;60904:7;60896;:16::i;:::-;60888:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;60975:21;60999:10;:8;:10::i;:::-;60975:34;;61053:1;61035:7;61029:21;:25;:128;;;;;;;;;;;;;;;;;61095:7;61109:18;61119:7;61109:9;:18::i;:::-;61078:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;61029:128;61022:135;;;60800:365;;;:::o;58860:42::-;58899:3;58860:42;:::o;26746:164::-;26843:4;26867:18;:25;26886:5;26867:25;;;;;;;;;;;;;;;:35;26893:8;26867:35;;;;;;;;;;;;;;;;;;;;;;;;;26860:42;;26746:164;;;;:::o;58119:201::-;57099:13;:11;:13::i;:::-;58228:1:::1;58208:22;;:8;:22;;::::0;58200:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;58284:28;58303:8;58284:18;:28::i;:::-;58119:201:::0;:::o;59120:48::-;;;;;;;;;;;;;:::o;27168:282::-;27233:4;27289:7;27270:15;:13;:15::i;:::-;:26;;:66;;;;;27323:13;;27313:7;:23;27270:66;:153;;;;;27422:1;11176:8;27374:17;:26;27392:7;27374:26;;;;;;;;;;;;:44;:49;27270:153;27250:173;;27168:282;;;:::o;49476:105::-;49536:7;49563:10;49556:17;;49476:105;:::o;59756:93::-;59813:7;59840:1;59833:8;;59756:93;:::o;21854:1275::-;21921:7;21941:12;21956:7;21941:22;;22024:4;22005:15;:13;:15::i;:::-;:23;22001:1061;;22058:13;;22051:4;:20;22047:1015;;;22096:14;22113:17;:23;22131:4;22113:23;;;;;;;;;;;;22096:40;;22230:1;11176:8;22202:6;:24;:29;22198:845;;22867:113;22884:1;22874:6;:11;22867:113;;22927:17;:25;22945:6;;;;;;;22927:25;;;;;;;;;;;;22918:34;;22867:113;;;23013:6;23006:13;;;;;;22198:845;22073:989;22047:1015;22001:1061;23090:31;;;;;;;;;;;;;;21854:1275;;;;:::o;28331:485::-;28433:27;28462:23;28503:38;28544:15;:24;28560:7;28544:24;;;;;;;;;;;28503:65;;28721:18;28698:41;;28778:19;28772:26;28753:45;;28683:126;28331:485;;;:::o;27559:659::-;27708:11;27873:16;27866:5;27862:28;27853:37;;28033:16;28022:9;28018:32;28005:45;;28183:15;28172:9;28169:30;28161:5;28150:9;28147:20;28144:56;28134:66;;27559:659;;;;;:::o;34217:159::-;;;;;:::o;48785:311::-;48920:7;48940:16;11580:3;48966:19;:41;;48940:68;;11580:3;49034:31;49045:4;49051:2;49055:9;49034:10;:31::i;:::-;49026:40;;:62;;49019:69;;;48785:311;;;;;:::o;23677:450::-;23757:14;23925:16;23918:5;23914:28;23905:37;;24102:5;24088:11;24063:23;24059:41;24056:52;24049:5;24046:63;24036:73;;23677:450;;;;:::o;35041:158::-;;;;;:::o;57378:132::-;57453:12;:10;:12::i;:::-;57442:23;;:7;:5;:7::i;:::-;:23;;;57434:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57378:132::o;58480:191::-;58554:16;58573:6;;;;;;;;;;;58554:25;;58599:8;58590:6;;:17;;;;;;;;;;;;;;;;;;58654:8;58623:40;;58644:8;58623:40;;;;;;;;;;;;58543:128;58480:191;:::o;15478:296::-;15533:7;15740:15;:13;:15::i;:::-;15724:13;;:31;15717:38;;15478:296;:::o;43308:112::-;43385:27;43395:2;43399:8;43385:27;;;;;;;;;;;;:9;:27::i;:::-;43308:112;;:::o;35639:716::-;35802:4;35848:2;35823:45;;;35869:19;:17;:19::i;:::-;35890:4;35896:7;35905:5;35823:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35819:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36123:1;36106:6;:13;:18;36102:235;;36152:40;;;;;;;;;;;;;;36102:235;36295:6;36289:13;36280:6;36276:2;36272:15;36265:38;35819:529;35992:54;;;35982:64;;;:6;:64;;;;35975:71;;;35639:716;;;;;;:::o;59647:101::-;59699:13;59732:8;59725:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59647:101;:::o;49683:1745::-;49748:17;50182:4;50175;50169:11;50165:22;50274:1;50268:4;50261:15;50349:4;50346:1;50342:12;50335:19;;50431:1;50426:3;50419:14;50535:3;50774:5;50756:428;50782:1;50756:428;;;50822:1;50817:3;50813:11;50806:18;;50993:2;50987:4;50983:13;50979:2;50975:22;50970:3;50962:36;51087:2;51081:4;51077:13;51069:21;;51154:4;50756:428;51144:25;50756:428;50760:21;51223:3;51218;51214:13;51338:4;51333:3;51329:14;51322:21;;51403:6;51398:3;51391:19;49787:1634;;;49683:1745;;;:::o;48486:147::-;48623:6;48486:147;;;;;:::o;55764:98::-;55817:7;55844:10;55837:17;;55764:98;:::o;42535:689::-;42666:19;42672:2;42676:8;42666:5;:19::i;:::-;42745:1;42727:2;:14;;;:19;42723:483;;42767:11;42781:13;;42767:27;;42813:13;42835:8;42829:3;:14;42813:30;;42862:233;42893:62;42932:1;42936:2;42940:7;;;;;;42949:5;42893:30;:62::i;:::-;42888:167;;42991:40;;;;;;;;;;;;;;42888:167;43090:3;43082:5;:11;42862:233;;43177:3;43160:13;;:20;43156:34;;43182:8;;;43156:34;42748:458;;42723:483;42535:689;;;:::o;36817:2966::-;36890:20;36913:13;;36890:36;;36953:1;36941:8;:13;36937:44;;36963:18;;;;;;;;;;;;;;36937:44;36994:61;37024:1;37028:2;37032:12;37046:8;36994:21;:61::i;:::-;37538:1;10538:2;37508:1;:26;;37507:32;37495:8;:45;37469:18;:22;37488:2;37469:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37817:139;37854:2;37908:33;37931:1;37935:2;37939:1;37908:14;:33::i;:::-;37875:30;37896:8;37875:20;:30::i;:::-;:66;37817:18;:139::i;:::-;37783:17;:31;37801:12;37783:31;;;;;;;;;;;:173;;;;37973:16;38004:11;38033:8;38018:12;:23;38004:37;;38554:16;38550:2;38546:25;38534:37;;38926:12;38886:8;38845:1;38783:25;38724:1;38663;38636:335;39297:1;39283:12;39279:20;39237:346;39338:3;39329:7;39326:16;39237:346;;39556:7;39546:8;39543:1;39516:25;39513:1;39510;39505:59;39391:1;39382:7;39378:15;39367:26;;39237:346;;;39241:77;39628:1;39616:8;:13;39612:45;;39638:19;;;;;;;;;;;;;;39612:45;39690:3;39674:13;:19;;;;37243:2462;;39715:60;39744:1;39748:2;39752:12;39766:8;39715:20;:60::i;:::-;36879:2904;36817:2966;;:::o;24229:324::-;24299:14;24532:1;24522:8;24519:15;24493:24;24489:46;24479:56;;24229:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:114::-;6003:1;5996:5;5993:12;5983:40;;6019:1;6016;6009:12;5983:40;5915:114;:::o;6035:169::-;6096:5;6134:6;6121:20;6112:29;;6150:48;6192:5;6150:48;:::i;:::-;6035:169;;;;:::o;6210:359::-;6284:6;6333:2;6321:9;6312:7;6308:23;6304:32;6301:119;;;6339:79;;:::i;:::-;6301:119;6459:1;6484:68;6544:7;6535:6;6524:9;6520:22;6484:68;:::i;:::-;6474:78;;6430:132;6210:359;;;;:::o;6575:117::-;6684:1;6681;6674:12;6698:117;6807:1;6804;6797:12;6821:117;6930:1;6927;6920:12;6958:553;7016:8;7026:6;7076:3;7069:4;7061:6;7057:17;7053:27;7043:122;;7084:79;;:::i;:::-;7043:122;7197:6;7184:20;7174:30;;7227:18;7219:6;7216:30;7213:117;;;7249:79;;:::i;:::-;7213:117;7363:4;7355:6;7351:17;7339:29;;7417:3;7409:4;7401:6;7397:17;7387:8;7383:32;7380:41;7377:128;;;7424:79;;:::i;:::-;7377:128;6958:553;;;;;:::o;7517:529::-;7588:6;7596;7645:2;7633:9;7624:7;7620:23;7616:32;7613:119;;;7651:79;;:::i;:::-;7613:119;7799:1;7788:9;7784:17;7771:31;7829:18;7821:6;7818:30;7815:117;;;7851:79;;:::i;:::-;7815:117;7964:65;8021:7;8012:6;8001:9;7997:22;7964:65;:::i;:::-;7946:83;;;;7742:297;7517:529;;;;;:::o;8052:329::-;8111:6;8160:2;8148:9;8139:7;8135:23;8131:32;8128:119;;;8166:79;;:::i;:::-;8128:119;8286:1;8311:53;8356:7;8347:6;8336:9;8332:22;8311:53;:::i;:::-;8301:63;;8257:117;8052:329;;;;:::o;8387:116::-;8457:21;8472:5;8457:21;:::i;:::-;8450:5;8447:32;8437:60;;8493:1;8490;8483:12;8437:60;8387:116;:::o;8509:133::-;8552:5;8590:6;8577:20;8568:29;;8606:30;8630:5;8606:30;:::i;:::-;8509:133;;;;:::o;8648:468::-;8713:6;8721;8770:2;8758:9;8749:7;8745:23;8741:32;8738:119;;;8776:79;;:::i;:::-;8738:119;8896:1;8921:53;8966:7;8957:6;8946:9;8942:22;8921:53;:::i;:::-;8911:63;;8867:117;9023:2;9049:50;9091:7;9082:6;9071:9;9067:22;9049:50;:::i;:::-;9039:60;;8994:115;8648:468;;;;;:::o;9122:117::-;9231:1;9228;9221:12;9245:180;9293:77;9290:1;9283:88;9390:4;9387:1;9380:15;9414:4;9411:1;9404:15;9431:281;9514:27;9536:4;9514:27;:::i;:::-;9506:6;9502:40;9644:6;9632:10;9629:22;9608:18;9596:10;9593:34;9590:62;9587:88;;;9655:18;;:::i;:::-;9587:88;9695:10;9691:2;9684:22;9474:238;9431:281;;:::o;9718:129::-;9752:6;9779:20;;:::i;:::-;9769:30;;9808:33;9836:4;9828:6;9808:33;:::i;:::-;9718:129;;;:::o;9853:307::-;9914:4;10004:18;9996:6;9993:30;9990:56;;;10026:18;;:::i;:::-;9990:56;10064:29;10086:6;10064:29;:::i;:::-;10056:37;;10148:4;10142;10138:15;10130:23;;9853:307;;;:::o;10166:154::-;10250:6;10245:3;10240;10227:30;10312:1;10303:6;10298:3;10294:16;10287:27;10166:154;;;:::o;10326:410::-;10403:5;10428:65;10444:48;10485:6;10444:48;:::i;:::-;10428:65;:::i;:::-;10419:74;;10516:6;10509:5;10502:21;10554:4;10547:5;10543:16;10592:3;10583:6;10578:3;10574:16;10571:25;10568:112;;;10599:79;;:::i;:::-;10568:112;10689:41;10723:6;10718:3;10713;10689:41;:::i;:::-;10409:327;10326:410;;;;;:::o;10755:338::-;10810:5;10859:3;10852:4;10844:6;10840:17;10836:27;10826:122;;10867:79;;:::i;:::-;10826:122;10984:6;10971:20;11009:78;11083:3;11075:6;11068:4;11060:6;11056:17;11009:78;:::i;:::-;11000:87;;10816:277;10755:338;;;;:::o;11099:943::-;11194:6;11202;11210;11218;11267:3;11255:9;11246:7;11242:23;11238:33;11235:120;;;11274:79;;:::i;:::-;11235:120;11394:1;11419:53;11464:7;11455:6;11444:9;11440:22;11419:53;:::i;:::-;11409:63;;11365:117;11521:2;11547:53;11592:7;11583:6;11572:9;11568:22;11547:53;:::i;:::-;11537:63;;11492:118;11649:2;11675:53;11720:7;11711:6;11700:9;11696:22;11675:53;:::i;:::-;11665:63;;11620:118;11805:2;11794:9;11790:18;11777:32;11836:18;11828:6;11825:30;11822:117;;;11858:79;;:::i;:::-;11822:117;11963:62;12017:7;12008:6;11997:9;11993:22;11963:62;:::i;:::-;11953:72;;11748:287;11099:943;;;;;;;:::o;12048:474::-;12116:6;12124;12173:2;12161:9;12152:7;12148:23;12144:32;12141:119;;;12179:79;;:::i;:::-;12141:119;12299:1;12324:53;12369:7;12360:6;12349:9;12345:22;12324:53;:::i;:::-;12314:63;;12270:117;12426:2;12452:53;12497:7;12488:6;12477:9;12473:22;12452:53;:::i;:::-;12442:63;;12397:118;12048:474;;;;;:::o;12528:180::-;12576:77;12573:1;12566:88;12673:4;12670:1;12663:15;12697:4;12694:1;12687:15;12714:120;12802:1;12795:5;12792:12;12782:46;;12808:18;;:::i;:::-;12782:46;12714:120;:::o;12840:141::-;12892:7;12921:5;12910:16;;12927:48;12969:5;12927:48;:::i;:::-;12840:141;;;:::o;12987:::-;13050:9;13083:39;13116:5;13083:39;:::i;:::-;13070:52;;12987:141;;;:::o;13134:157::-;13234:50;13278:5;13234:50;:::i;:::-;13229:3;13222:63;13134:157;;:::o;13297:248::-;13403:4;13441:2;13430:9;13426:18;13418:26;;13454:84;13535:1;13524:9;13520:17;13511:6;13454:84;:::i;:::-;13297:248;;;;:::o;13551:180::-;13599:77;13596:1;13589:88;13696:4;13693:1;13686:15;13720:4;13717:1;13710:15;13737:320;13781:6;13818:1;13812:4;13808:12;13798:22;;13865:1;13859:4;13855:12;13886:18;13876:81;;13942:4;13934:6;13930:17;13920:27;;13876:81;14004:2;13996:6;13993:14;13973:18;13970:38;13967:84;;14023:18;;:::i;:::-;13967:84;13788:269;13737:320;;;:::o;14063:160::-;14203:12;14199:1;14191:6;14187:14;14180:36;14063:160;:::o;14229:366::-;14371:3;14392:67;14456:2;14451:3;14392:67;:::i;:::-;14385:74;;14468:93;14557:3;14468:93;:::i;:::-;14586:2;14581:3;14577:12;14570:19;;14229:366;;;:::o;14601:419::-;14767:4;14805:2;14794:9;14790:18;14782:26;;14854:9;14848:4;14844:20;14840:1;14829:9;14825:17;14818:47;14882:131;15008:4;14882:131;:::i;:::-;14874:139;;14601:419;;;:::o;15026:97::-;15085:6;15113:3;15103:13;;15026:97;;;;:::o;15129:141::-;15178:4;15201:3;15193:11;;15224:3;15221:1;15214:14;15258:4;15255:1;15245:18;15237:26;;15129:141;;;:::o;15276:93::-;15313:6;15360:2;15355;15348:5;15344:14;15340:23;15330:33;;15276:93;;;:::o;15375:107::-;15419:8;15469:5;15463:4;15459:16;15438:37;;15375:107;;;;:::o;15488:393::-;15557:6;15607:1;15595:10;15591:18;15630:97;15660:66;15649:9;15630:97;:::i;:::-;15748:39;15778:8;15767:9;15748:39;:::i;:::-;15736:51;;15820:4;15816:9;15809:5;15805:21;15796:30;;15869:4;15859:8;15855:19;15848:5;15845:30;15835:40;;15564:317;;15488:393;;;;;:::o;15887:60::-;15915:3;15936:5;15929:12;;15887:60;;;:::o;15953:142::-;16003:9;16036:53;16054:34;16063:24;16081:5;16063:24;:::i;:::-;16054:34;:::i;:::-;16036:53;:::i;:::-;16023:66;;15953:142;;;:::o;16101:75::-;16144:3;16165:5;16158:12;;16101:75;;;:::o;16182:269::-;16292:39;16323:7;16292:39;:::i;:::-;16353:91;16402:41;16426:16;16402:41;:::i;:::-;16394:6;16387:4;16381:11;16353:91;:::i;:::-;16347:4;16340:105;16258:193;16182:269;;;:::o;16457:73::-;16502:3;16457:73;:::o;16536:189::-;16613:32;;:::i;:::-;16654:65;16712:6;16704;16698:4;16654:65;:::i;:::-;16589:136;16536:189;;:::o;16731:186::-;16791:120;16808:3;16801:5;16798:14;16791:120;;;16862:39;16899:1;16892:5;16862:39;:::i;:::-;16835:1;16828:5;16824:13;16815:22;;16791:120;;;16731:186;;:::o;16923:543::-;17024:2;17019:3;17016:11;17013:446;;;17058:38;17090:5;17058:38;:::i;:::-;17142:29;17160:10;17142:29;:::i;:::-;17132:8;17128:44;17325:2;17313:10;17310:18;17307:49;;;17346:8;17331:23;;17307:49;17369:80;17425:22;17443:3;17425:22;:::i;:::-;17415:8;17411:37;17398:11;17369:80;:::i;:::-;17028:431;;17013:446;16923:543;;;:::o;17472:117::-;17526:8;17576:5;17570:4;17566:16;17545:37;;17472:117;;;;:::o;17595:169::-;17639:6;17672:51;17720:1;17716:6;17708:5;17705:1;17701:13;17672:51;:::i;:::-;17668:56;17753:4;17747;17743:15;17733:25;;17646:118;17595:169;;;;:::o;17769:295::-;17845:4;17991:29;18016:3;18010:4;17991:29;:::i;:::-;17983:37;;18053:3;18050:1;18046:11;18040:4;18037:21;18029:29;;17769:295;;;;:::o;18069:1403::-;18193:44;18233:3;18228;18193:44;:::i;:::-;18302:18;18294:6;18291:30;18288:56;;;18324:18;;:::i;:::-;18288:56;18368:38;18400:4;18394:11;18368:38;:::i;:::-;18453:67;18513:6;18505;18499:4;18453:67;:::i;:::-;18547:1;18576:2;18568:6;18565:14;18593:1;18588:632;;;;19264:1;19281:6;19278:84;;;19337:9;19332:3;19328:19;19315:33;19306:42;;19278:84;19388:67;19448:6;19441:5;19388:67;:::i;:::-;19382:4;19375:81;19237:229;18558:908;;18588:632;18640:4;18636:9;18628:6;18624:22;18674:37;18706:4;18674:37;:::i;:::-;18733:1;18747:215;18761:7;18758:1;18755:14;18747:215;;;18847:9;18842:3;18838:19;18825:33;18817:6;18810:49;18898:1;18890:6;18886:14;18876:24;;18945:2;18934:9;18930:18;18917:31;;18784:4;18781:1;18777:12;18772:17;;18747:215;;;18990:6;18981:7;18978:19;18975:186;;;19055:9;19050:3;19046:19;19033:33;19098:48;19140:4;19132:6;19128:17;19117:9;19098:48;:::i;:::-;19090:6;19083:64;18998:163;18975:186;19207:1;19203;19195:6;19191:14;19187:22;19181:4;19174:36;18595:625;;;18558:908;;18168:1304;;;18069:1403;;;:::o;19478:180::-;19526:77;19523:1;19516:88;19623:4;19620:1;19613:15;19647:4;19644:1;19637:15;19664:305;19704:3;19723:20;19741:1;19723:20;:::i;:::-;19718:25;;19757:20;19775:1;19757:20;:::i;:::-;19752:25;;19911:1;19843:66;19839:74;19836:1;19833:81;19830:107;;;19917:18;;:::i;:::-;19830:107;19961:1;19958;19954:9;19947:16;;19664:305;;;;:::o;19975:181::-;20115:33;20111:1;20103:6;20099:14;20092:57;19975:181;:::o;20162:366::-;20304:3;20325:67;20389:2;20384:3;20325:67;:::i;:::-;20318:74;;20401:93;20490:3;20401:93;:::i;:::-;20519:2;20514:3;20510:12;20503:19;;20162:366;;;:::o;20534:419::-;20700:4;20738:2;20727:9;20723:18;20715:26;;20787:9;20781:4;20777:20;20773:1;20762:9;20758:17;20751:47;20815:131;20941:4;20815:131;:::i;:::-;20807:139;;20534:419;;;:::o;20959:168::-;21099:20;21095:1;21087:6;21083:14;21076:44;20959:168;:::o;21133:366::-;21275:3;21296:67;21360:2;21355:3;21296:67;:::i;:::-;21289:74;;21372:93;21461:3;21372:93;:::i;:::-;21490:2;21485:3;21481:12;21474:19;;21133:366;;;:::o;21505:419::-;21671:4;21709:2;21698:9;21694:18;21686:26;;21758:9;21752:4;21748:20;21744:1;21733:9;21729:17;21722:47;21786:131;21912:4;21786:131;:::i;:::-;21778:139;;21505:419;;;:::o;21930:246::-;22070:34;22066:1;22058:6;22054:14;22047:58;22139:29;22134:2;22126:6;22122:15;22115:54;21930:246;:::o;22182:366::-;22324:3;22345:67;22409:2;22404:3;22345:67;:::i;:::-;22338:74;;22421:93;22510:3;22421:93;:::i;:::-;22539:2;22534:3;22530:12;22523:19;;22182:366;;;:::o;22554:419::-;22720:4;22758:2;22747:9;22743:18;22735:26;;22807:9;22801:4;22797:20;22793:1;22782:9;22778:17;22771:47;22835:131;22961:4;22835:131;:::i;:::-;22827:139;;22554:419;;;:::o;22979:242::-;23119:34;23115:1;23107:6;23103:14;23096:58;23188:25;23183:2;23175:6;23171:15;23164:50;22979:242;:::o;23227:366::-;23369:3;23390:67;23454:2;23449:3;23390:67;:::i;:::-;23383:74;;23466:93;23555:3;23466:93;:::i;:::-;23584:2;23579:3;23575:12;23568:19;;23227:366;;;:::o;23599:419::-;23765:4;23803:2;23792:9;23788:18;23780:26;;23852:9;23846:4;23842:20;23838:1;23827:9;23823:17;23816:47;23880:131;24006:4;23880:131;:::i;:::-;23872:139;;23599:419;;;:::o;24024:242::-;24164:34;24160:1;24152:6;24148:14;24141:58;24233:25;24228:2;24220:6;24216:15;24209:50;24024:242;:::o;24272:366::-;24414:3;24435:67;24499:2;24494:3;24435:67;:::i;:::-;24428:74;;24511:93;24600:3;24511:93;:::i;:::-;24629:2;24624:3;24620:12;24613:19;;24272:366;;;:::o;24644:419::-;24810:4;24848:2;24837:9;24833:18;24825:26;;24897:9;24891:4;24887:20;24883:1;24872:9;24868:17;24861:47;24925:131;25051:4;24925:131;:::i;:::-;24917:139;;24644:419;;;:::o;25069:226::-;25209:34;25205:1;25197:6;25193:14;25186:58;25278:9;25273:2;25265:6;25261:15;25254:34;25069:226;:::o;25301:366::-;25443:3;25464:67;25528:2;25523:3;25464:67;:::i;:::-;25457:74;;25540:93;25629:3;25540:93;:::i;:::-;25658:2;25653:3;25649:12;25642:19;;25301:366;;;:::o;25673:419::-;25839:4;25877:2;25866:9;25862:18;25854:26;;25926:9;25920:4;25916:20;25912:1;25901:9;25897:17;25890:47;25954:131;26080:4;25954:131;:::i;:::-;25946:139;;25673:419;;;:::o;26098:191::-;26138:4;26158:20;26176:1;26158:20;:::i;:::-;26153:25;;26192:20;26210:1;26192:20;:::i;:::-;26187:25;;26231:1;26228;26225:8;26222:34;;;26236:18;;:::i;:::-;26222:34;26281:1;26278;26274:9;26266:17;;26098:191;;;;:::o;26295:348::-;26335:7;26358:20;26376:1;26358:20;:::i;:::-;26353:25;;26392:20;26410:1;26392:20;:::i;:::-;26387:25;;26580:1;26512:66;26508:74;26505:1;26502:81;26497:1;26490:9;26483:17;26479:105;26476:131;;;26587:18;;:::i;:::-;26476:131;26635:1;26632;26628:9;26617:20;;26295:348;;;;:::o;26649:234::-;26789:34;26785:1;26777:6;26773:14;26766:58;26858:17;26853:2;26845:6;26841:15;26834:42;26649:234;:::o;26889:366::-;27031:3;27052:67;27116:2;27111:3;27052:67;:::i;:::-;27045:74;;27128:93;27217:3;27128:93;:::i;:::-;27246:2;27241:3;27237:12;27230:19;;26889:366;;;:::o;27261:419::-;27427:4;27465:2;27454:9;27450:18;27442:26;;27514:9;27508:4;27504:20;27500:1;27489:9;27485:17;27478:47;27542:131;27668:4;27542:131;:::i;:::-;27534:139;;27261:419;;;:::o;27686:148::-;27788:11;27825:3;27810:18;;27686:148;;;;:::o;27840:377::-;27946:3;27974:39;28007:5;27974:39;:::i;:::-;28029:89;28111:6;28106:3;28029:89;:::i;:::-;28022:96;;28127:52;28172:6;28167:3;28160:4;28153:5;28149:16;28127:52;:::i;:::-;28204:6;28199:3;28195:16;28188:23;;27950:267;27840:377;;;;:::o;28223:151::-;28363:3;28359:1;28351:6;28347:14;28340:27;28223:151;:::o;28380:400::-;28540:3;28561:84;28643:1;28638:3;28561:84;:::i;:::-;28554:91;;28654:93;28743:3;28654:93;:::i;:::-;28772:1;28767:3;28763:11;28756:18;;28380:400;;;:::o;28786:155::-;28926:7;28922:1;28914:6;28910:14;28903:31;28786:155;:::o;28947:400::-;29107:3;29128:84;29210:1;29205:3;29128:84;:::i;:::-;29121:91;;29221:93;29310:3;29221:93;:::i;:::-;29339:1;29334:3;29330:11;29323:18;;28947:400;;;:::o;29353:967::-;29735:3;29757:95;29848:3;29839:6;29757:95;:::i;:::-;29750:102;;29869:148;30013:3;29869:148;:::i;:::-;29862:155;;30034:95;30125:3;30116:6;30034:95;:::i;:::-;30027:102;;30146:148;30290:3;30146:148;:::i;:::-;30139:155;;30311:3;30304:10;;29353:967;;;;;:::o;30326:225::-;30466:34;30462:1;30454:6;30450:14;30443:58;30535:8;30530:2;30522:6;30518:15;30511:33;30326:225;:::o;30557:366::-;30699:3;30720:67;30784:2;30779:3;30720:67;:::i;:::-;30713:74;;30796:93;30885:3;30796:93;:::i;:::-;30914:2;30909:3;30905:12;30898:19;;30557:366;;;:::o;30929:419::-;31095:4;31133:2;31122:9;31118:18;31110:26;;31182:9;31176:4;31172:20;31168:1;31157:9;31153:17;31146:47;31210:131;31336:4;31210:131;:::i;:::-;31202:139;;30929:419;;;:::o;31354:182::-;31494:34;31490:1;31482:6;31478:14;31471:58;31354:182;:::o;31542:366::-;31684:3;31705:67;31769:2;31764:3;31705:67;:::i;:::-;31698:74;;31781:93;31870:3;31781:93;:::i;:::-;31899:2;31894:3;31890:12;31883:19;;31542:366;;;:::o;31914:419::-;32080:4;32118:2;32107:9;32103:18;32095:26;;32167:9;32161:4;32157:20;32153:1;32142:9;32138:17;32131:47;32195:131;32321:4;32195:131;:::i;:::-;32187:139;;31914:419;;;:::o;32339:98::-;32390:6;32424:5;32418:12;32408:22;;32339:98;;;:::o;32443:168::-;32526:11;32560:6;32555:3;32548:19;32600:4;32595:3;32591:14;32576:29;;32443:168;;;;:::o;32617:360::-;32703:3;32731:38;32763:5;32731:38;:::i;:::-;32785:70;32848:6;32843:3;32785:70;:::i;:::-;32778:77;;32864:52;32909:6;32904:3;32897:4;32890:5;32886:16;32864:52;:::i;:::-;32941:29;32963:6;32941:29;:::i;:::-;32936:3;32932:39;32925:46;;32707:270;32617:360;;;;:::o;32983:640::-;33178:4;33216:3;33205:9;33201:19;33193:27;;33230:71;33298:1;33287:9;33283:17;33274:6;33230:71;:::i;:::-;33311:72;33379:2;33368:9;33364:18;33355:6;33311:72;:::i;:::-;33393;33461:2;33450:9;33446:18;33437:6;33393:72;:::i;:::-;33512:9;33506:4;33502:20;33497:2;33486:9;33482:18;33475:48;33540:76;33611:4;33602:6;33540:76;:::i;:::-;33532:84;;32983:640;;;;;;;:::o;33629:141::-;33685:5;33716:6;33710:13;33701:22;;33732:32;33758:5;33732:32;:::i;:::-;33629:141;;;;:::o;33776:349::-;33845:6;33894:2;33882:9;33873:7;33869:23;33865:32;33862:119;;;33900:79;;:::i;:::-;33862:119;34020:1;34045:63;34100:7;34091:6;34080:9;34076:22;34045:63;:::i;:::-;34035:73;;33991:127;33776:349;;;;:::o

Swarm Source

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