ETH Price: $2,504.47 (-0.83%)

Token

DuckDuckWorld (DDW)
 

Overview

Max Total Supply

1,544 DDW

Holders

454

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
tashidelek.eth
Balance
5 DDW
0x86c53524ce998d2d2bb86fd6e187e08a28704638
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:
DDuck

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 9999 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : DDuck.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "erc721a/contracts/extensions/ERC721AQueryable.sol";

contract DDuck is ERC721AQueryable, Ownable {
    uint256 public constant PRESERVED_MINTS = 150;
    uint256 public constant FREE_MINTS = 450;
    uint256 public constant FIRST_STAGE = 1500;
    uint256 public constant MAX_SUPPLY = 3000;
    // uint256 public constant PRESERVED_MINTS = 2;
    // uint256 public constant FREE_MINTS = 4;
    // uint256 public constant FIRST_STAGE = 10;
    // uint256 public constant MAX_SUPPLY = 20;
    uint256 public constant MAX_MINT_PER_TX = 5;
    uint256 public constant MAX_FREE_MINT_PER_ACCOUNT = 2;

    bool public mintStart;
    string private baseURI;
    uint256 public mintPrice = 0.003 ether;

    constructor() ERC721A("DuckDuckWorld", "DDW") {}

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
    }

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

    function preserveMint() external onlyOwner {
        require(mintCount() == 0, "already preminted");
        _safeMint(msg.sender, PRESERVED_MINTS);
    }

    function flipMintstart() external onlyOwner {
        mintStart = !mintStart;
    }

    function setMintPrice(uint256 mintPrice_) external onlyOwner {
        mintPrice = mintPrice_;
    }

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

    function mintCount() public view returns (uint256) {
        return _nextTokenId() - _startTokenId();
    }

    function mint(uint256 quantity) external payable nonContractCaller {
        require(mintStart, "mint not started");
        require(quantity <= MAX_MINT_PER_TX, "Mint amount should <= 5");
        uint256 _mintCount = mintCount();
        uint256 _mintToCount = _mintCount + quantity;
        uint256 refunds;
        if (_mintCount < FREE_MINTS + PRESERVED_MINTS) {
            require(_mintToCount <= FREE_MINTS + PRESERVED_MINTS, "Mint amount exceed free-mint supply");
            require(balanceOf(msg.sender) + quantity <= MAX_FREE_MINT_PER_ACCOUNT, "Exceed free mint amount per account");
            refunds = msg.value;
        } else {
            require(_mintToCount <= MAX_SUPPLY, "Mint amount exceed max supply");
            uint256 payedPrice = quantity * mintPrice;
            require(msg.value >= payedPrice, "Not enought mint funds");
            if (msg.value > payedPrice) refunds = msg.value - payedPrice;
        }
        if (_mintCount < FIRST_STAGE) {
            require(_mintToCount <= FIRST_STAGE, "Mint amount exceed first stage");
            if (_mintToCount == FIRST_STAGE) mintStart = false;
        }
        if (refunds > 0) payable(msg.sender).transfer(refunds);
        _safeMint(msg.sender, quantity);
    }

    function withdraw() external {
        payable(owner()).transfer(address(this).balance);
    }

    modifier nonContractCaller() {
        require(tx.origin == msg.sender, "cannot call from contract");
        _;
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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 3 of 7 : ERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721AQueryable.sol';
import '../ERC721A.sol';

/**
 * @title ERC721A Queryable
 * @dev ERC721A subclass with convenience query functions.
 */
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) {
            return ownership;
        }
        ownership = _ownershipAt(tokenId);
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _nextTokenId();
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, stopLimit)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownershipAt(i);
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 4 of 7 : Context.sol
// SPDX-License-Identifier: MIT
// 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 5 of 7 : IERC721AQueryable.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '../IERC721A.sol';

/**
 * @dev Interface of an ERC721AQueryable compliant contract.
 */
interface IERC721AQueryable is IERC721A {
    /**
     * Invalid query range (`start` >= `stop`).
     */
    error InvalidQueryRange();

    /**
     * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
     *
     * If the `tokenId` is out of bounds:
     *   - `addr` = `address(0)`
     *   - `startTimestamp` = `0`
     *   - `burned` = `false`
     *
     * If the `tokenId` is burned:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 6 of 7 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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`
    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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 auxillary 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 auxillary 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 {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert ApprovalToCurrentOwner();

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

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

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 (`_mint`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, 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.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

            // 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 `_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));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner.
        delete _tokenApprovals[tokenId];

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

            // 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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool 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))
                }
            }
        }
    }

    /**
     * @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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for { 
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp { 
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } { // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }
            
            let length := sub(end, ptr)
            // Move the pointer 32 bytes leftwards to make room for the length.
            ptr := sub(ptr, 32)
            // Store the length.
            mstore(ptr, length)
        }
    }
}

File 7 of 7 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.0.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 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`.
     *
     * 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 calldata data
    ) external;

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

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

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

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

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

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

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

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

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

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

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 9999
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"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":"FIRST_STAGE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_MINT_PER_ACCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESERVED_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipMintstart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"preserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintPrice_","type":"uint256"}],"name":"setMintPrice","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a553480156200001c57600080fd5b50604080518082018252600d81526c111d58dad11d58dad5dbdc9b19609a1b60208083019182528351808501909452600384526244445760e81b9084015281519192916200006d91600291620000ee565b50805162000083906003906020840190620000ee565b505060016000555062000096336200009c565b620001d0565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000fc9062000194565b90600052602060002090601f0160209004810192826200012057600085556200016b565b82601f106200013b57805160ff19168380011785556200016b565b828001600101855582156200016b579182015b828111156200016b5782518255916020019190600101906200014e565b50620001799291506200017d565b5090565b5b808211156200017957600081556001016200017e565b600181811c90821680620001a957607f821691505b602082108103620001ca57634e487b7160e01b600052602260045260246000fd5b50919050565b61276880620001e06000396000f3fe60806040526004361061024f5760003560e01c806383eec99211610138578063a22cb465116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c51461064b578063f2fde38b14610694578063f4a0a528146106b457600080fd5b8063c87b56dd14610616578063d33084f61461063657600080fd5b8063a22cb46514610594578063a46f26b4146105b4578063b88d4fde146105c9578063c23dc68f146105e957600080fd5b8063909eaa38116101075780639659867e116100ec5780639659867e1461054c57806399a2557a14610561578063a0712d681461058157600080fd5b8063909eaa381461052157806395d89b411461053757600080fd5b806383eec992146104ac5780638462151c146104c15780638da5cb5b146104ee5780638ecad7211461050c57600080fd5b806342842e0e116101cb5780636352211e1161019a57806370a082311161017f57806370a0823114610461578063715018a614610481578063764267b61461049657600080fd5b80636352211e1461042b5780636817c76c1461044b57600080fd5b806342842e0e146103a957806343f9f635146103c957806355f804b3146103de5780635bbb2177146103fe57600080fd5b806318160ddd11610222578063255e468511610207578063255e46851461034c57806332cb6b0c1461037e5780633ccfd60b1461039457600080fd5b806318160ddd1461030557806323b872dd1461032c57600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046120cf565b6106d4565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e6107b9565b6040516102809190612144565b3480156102b757600080fd5b506102cb6102c6366004612157565b61084b565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe36600461218c565b6108a8565b005b34801561031157600080fd5b5060015460005403600019015b604051908152602001610280565b34801561033857600080fd5b506103036103473660046121b6565b6109e1565b34801561035857600080fd5b506008546102749074010000000000000000000000000000000000000000900460ff1681565b34801561038a57600080fd5b5061031e610bb881565b3480156103a057600080fd5b506103036109f1565b3480156103b557600080fd5b506103036103c43660046121b6565b610a2d565b3480156103d557600080fd5b5061031e609681565b3480156103ea57600080fd5b506103036103f93660046122aa565b610a48565b34801561040a57600080fd5b5061041e6104193660046122f3565b610abe565b6040516102809190612399565b34801561043757600080fd5b506102cb610446366004612157565b610b85565b34801561045757600080fd5b5061031e600a5481565b34801561046d57600080fd5b5061031e61047c366004612404565b610b90565b34801561048d57600080fd5b50610303610bf8565b3480156104a257600080fd5b5061031e6101c281565b3480156104b857600080fd5b5061031e600281565b3480156104cd57600080fd5b506104e16104dc366004612404565b610c5e565b604051610280919061241f565b3480156104fa57600080fd5b506008546001600160a01b03166102cb565b34801561051857600080fd5b5061031e600581565b34801561052d57600080fd5b5061031e6105dc81565b34801561054357600080fd5b5061029e610d5b565b34801561055857600080fd5b5061031e610d6a565b34801561056d57600080fd5b506104e161057c366004612457565b610d80565b61030361058f366004612157565b610f21565b3480156105a057600080fd5b506103036105af36600461248a565b61130c565b3480156105c057600080fd5b506103036113d8565b3480156105d557600080fd5b506103036105e43660046124c6565b61147f565b3480156105f557600080fd5b50610609610604366004612157565b6114dc565b6040516102809190612542565b34801561062257600080fd5b5061029e610631366004612157565b611551565b34801561064257600080fd5b506103036115ed565b34801561065757600080fd5b50610274610666366004612578565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a057600080fd5b506103036106af366004612404565b6116a7565b3480156106c057600080fd5b506103036106cf366004612157565b611786565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061076757507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806107b357507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107c8906125ab565b80601f01602080910402602001604051908101604052809291908181526020018280546107f4906125ab565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610856826117e5565b61088c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b382611833565b9050806001600160a01b0316836001600160a01b031603610900576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161461096d576001600160a01b038116600090815260076020908152604080832033845290915290205460ff1661096d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ec8383836118d4565b505050565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a2a573d6000803e3d6000fd5b50565b6109ec8383836040518060200160405280600081525061147f565b6008546001600160a01b03163314610aa75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610aba906009906020840190612008565b5050565b805160609060008167ffffffffffffffff811115610ade57610ade6121f2565b604051908082528060200260200182016040528015610b2957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610afc5790505b50905060005b828114610b7d57610b58858281518110610b4b57610b4b6125fe565b60200260200101516114dc565b828281518110610b6a57610b6a6125fe565b6020908102919091010152600101610b2f565b509392505050565b60006107b382611833565b60006001600160a01b038216610bd2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b610c5c6000611b16565b565b60606000806000610c6e85610b90565b905060008167ffffffffffffffff811115610c8b57610c8b6121f2565b604051908082528060200260200182016040528015610cb4578160200160208202803683370190505b50604080516060810182526000808252602082018190529181019190915290915060015b838614610d4f57610ce881611b80565b91508160400151610d475781516001600160a01b031615610d0857815194505b876001600160a01b0316856001600160a01b031603610d475780838780600101985081518110610d3a57610d3a6125fe565b6020026020010181815250505b600101610cd8565b50909695505050505050565b6060600380546107c8906125ab565b60006001600054610d7b919061265c565b905090565b6060818310610dbb576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dc760005490565b90506001851015610dd757600194505b80841115610de3578093505b6000610dee87610b90565b905084861015610e0d5785850381811015610e07578091505b50610e11565b5060005b60008167ffffffffffffffff811115610e2c57610e2c6121f2565b604051908082528060200260200182016040528015610e55578160200160208202803683370190505b50905081600003610e6b579350610f1a92505050565b6000610e76886114dc565b905060008160400151610e87575080515b885b888114158015610e995750848714155b15610f0e57610ea781611b80565b92508260400151610f065782516001600160a01b031615610ec757825191505b8a6001600160a01b0316826001600160a01b031603610f065780848880600101995081518110610ef957610ef96125fe565b6020026020010181815250505b600101610e89565b50505092835250909150505b9392505050565b323314610f705760405162461bcd60e51b815260206004820152601960248201527f63616e6e6f742063616c6c2066726f6d20636f6e7472616374000000000000006044820152606401610a9e565b60085474010000000000000000000000000000000000000000900460ff16610fda5760405162461bcd60e51b815260206004820152601060248201527f6d696e74206e6f742073746172746564000000000000000000000000000000006044820152606401610a9e565b600581111561102b5760405162461bcd60e51b815260206004820152601760248201527f4d696e7420616d6f756e742073686f756c64203c3d20350000000000000000006044820152606401610a9e565b6000611035610d6a565b905060006110438383612673565b9050600061105460966101c2612673565b83101561116e5761106860966101c2612673565b8211156110dd5760405162461bcd60e51b815260206004820152602360248201527f4d696e7420616d6f756e742065786365656420667265652d6d696e742073757060448201527f706c7900000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b6002846110e933610b90565b6110f39190612673565b11156111675760405162461bcd60e51b815260206004820152602360248201527f4578636565642066726565206d696e7420616d6f756e7420706572206163636f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b5034611239565b610bb88211156111c05760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420616d6f756e7420657863656564206d617820737570706c790000006044820152606401610a9e565b6000600a54856111d0919061268b565b9050803410156112225760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676874206d696e742066756e6473000000000000000000006044820152606401610a9e565b8034111561123757611234813461265c565b91505b505b6105dc8310156112c7576105dc8211156112955760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742065786365656420666972737420737461676500006044820152606401610a9e565b6105dc82036112c757600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b80156112fc57604051339082156108fc029083906000818181858888f193505050501580156112fa573d6000803e3d6000fd5b505b6113063385611c04565b50505050565b336001600160a01b0383160361134e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b61148a8484846118d4565b6001600160a01b0383163b15611306576114a684848484611c1e565b611306576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061152257506000548310155b1561152d5792915050565b61153683611b80565b90508060400151156115485792915050565b610f1a83611d6d565b606061155c826117e5565b611592576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061159c611dea565b905080516000036115bc5760405180602001604052806000815250610f1a565b806115c684611df9565b6040516020016115d79291906126aa565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146116475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b61164f610d6a565b1561169c5760405162461bcd60e51b815260206004820152601160248201527f616c7265616479207072656d696e7465640000000000000000000000000000006044820152606401610a9e565b610c5c336096611c04565b6008546001600160a01b031633146117015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6001600160a01b03811661177d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a9e565b610a2a81611b16565b6008546001600160a01b031633146117e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600a55565b6000816001111580156117f9575060005482105b80156107b35750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081806001116118a2576000548110156118a257600081815260046020526040812054907c0100000000000000000000000000000000000000000000000000000000821690036118a0575b80600003610f1a57506000190160008181526004602052604090205461187f565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118df82611833565b9050836001600160a01b0316816001600160a01b03161461192c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061196857506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b806119835750336119788461084b565b6001600160a01b0316145b9050806119bc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166119fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003611ace57600183016000818152600460205260408120549003611acc576000548114611acc5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546107b390604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b610aba828260405180602001604052806000815250611e48565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611c6c9033908990889088906004016126d9565b6020604051808303816000875af1925050508015611ca7575060408051601f3d908101601f19168201909252611ca491810190612715565b60015b611d1e573d808015611cd5576040519150601f19603f3d011682016040523d82523d6000602084013e611cda565b606091505b508051600003611d16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60408051606081018252600080825260208201819052918101919091526107b3611d9683611833565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6060600980546107c8906125ab565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611e3657600183039250600a81066030018353600a9004611e18565b50819003601f19909101908152919050565b6000546001600160a01b038416611e8b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600003611ec5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611fb3575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f636000878480600101955087611c1e565b611f99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611f18578260005414611fae57600080fd5b611ff8565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611fb4575b5060009081556113069085838684565b828054612014906125ab565b90600052602060002090601f016020900481019282612036576000855561207c565b82601f1061204f57805160ff191683800117855561207c565b8280016001018555821561207c579182015b8281111561207c578251825591602001919060010190612061565b5061208892915061208c565b5090565b5b80821115612088576000815560010161208d565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a2a57600080fd5b6000602082840312156120e157600080fd5b8135610f1a816120a1565b60005b838110156121075781810151838201526020016120ef565b838111156113065750506000910152565b600081518084526121308160208601602086016120ec565b601f01601f19169290920160200192915050565b602081526000610f1a6020830184612118565b60006020828403121561216957600080fd5b5035919050565b80356001600160a01b038116811461218757600080fd5b919050565b6000806040838503121561219f57600080fd5b6121a883612170565b946020939093013593505050565b6000806000606084860312156121cb57600080fd5b6121d484612170565b92506121e260208501612170565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561224a5761224a6121f2565b604052919050565b600067ffffffffffffffff83111561226c5761226c6121f2565b61227f6020601f19601f86011601612221565b905082815283838301111561229357600080fd5b828260208301376000602084830101529392505050565b6000602082840312156122bc57600080fd5b813567ffffffffffffffff8111156122d357600080fd5b8201601f810184136122e457600080fd5b611d6584823560208401612252565b6000602080838503121561230657600080fd5b823567ffffffffffffffff8082111561231e57600080fd5b818501915085601f83011261233257600080fd5b813581811115612344576123446121f2565b8060051b9150612355848301612221565b818152918301840191848101908884111561236f57600080fd5b938501935b8385101561238d57843582529385019390850190612374565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610d4f576123f183855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b92840192606092909201916001016123b5565b60006020828403121561241657600080fd5b610f1a82612170565b6020808252825182820181905260009190848201906040850190845b81811015610d4f5783518352928401929184019160010161243b565b60008060006060848603121561246c57600080fd5b61247584612170565b95602085013595506040909401359392505050565b6000806040838503121561249d57600080fd5b6124a683612170565b9150602083013580151581146124bb57600080fd5b809150509250929050565b600080600080608085870312156124dc57600080fd5b6124e585612170565b93506124f360208601612170565b925060408501359150606085013567ffffffffffffffff81111561251657600080fd5b8501601f8101871361252757600080fd5b61253687823560208401612252565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff1690820152604080830151151590820152606081016107b3565b6000806040838503121561258b57600080fd5b61259483612170565b91506125a260208401612170565b90509250929050565b600181811c908216806125bf57607f821691505b6020821081036125f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561266e5761266e61262d565b500390565b600082198211156126865761268661262d565b500190565b60008160001904831182151516156126a5576126a561262d565b500290565b600083516126bc8184602088016120ec565b8351908301906126d08183602088016120ec565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261270b6080830184612118565b9695505050505050565b60006020828403121561272757600080fd5b8151610f1a816120a156fea2646970667358221220c897987c54fcd7a212f40b09efc4cc506ccddb5d24ddb5252c0a7af00dc9e20864736f6c634300080d0033

Deployed Bytecode

0x60806040526004361061024f5760003560e01c806383eec99211610138578063a22cb465116100b0578063c87b56dd1161007f578063e985e9c511610064578063e985e9c51461064b578063f2fde38b14610694578063f4a0a528146106b457600080fd5b8063c87b56dd14610616578063d33084f61461063657600080fd5b8063a22cb46514610594578063a46f26b4146105b4578063b88d4fde146105c9578063c23dc68f146105e957600080fd5b8063909eaa38116101075780639659867e116100ec5780639659867e1461054c57806399a2557a14610561578063a0712d681461058157600080fd5b8063909eaa381461052157806395d89b411461053757600080fd5b806383eec992146104ac5780638462151c146104c15780638da5cb5b146104ee5780638ecad7211461050c57600080fd5b806342842e0e116101cb5780636352211e1161019a57806370a082311161017f57806370a0823114610461578063715018a614610481578063764267b61461049657600080fd5b80636352211e1461042b5780636817c76c1461044b57600080fd5b806342842e0e146103a957806343f9f635146103c957806355f804b3146103de5780635bbb2177146103fe57600080fd5b806318160ddd11610222578063255e468511610207578063255e46851461034c57806332cb6b0c1461037e5780633ccfd60b1461039457600080fd5b806318160ddd1461030557806323b872dd1461032c57600080fd5b806301ffc9a71461025457806306fdde0314610289578063081812fc146102ab578063095ea7b3146102e3575b600080fd5b34801561026057600080fd5b5061027461026f3660046120cf565b6106d4565b60405190151581526020015b60405180910390f35b34801561029557600080fd5b5061029e6107b9565b6040516102809190612144565b3480156102b757600080fd5b506102cb6102c6366004612157565b61084b565b6040516001600160a01b039091168152602001610280565b3480156102ef57600080fd5b506103036102fe36600461218c565b6108a8565b005b34801561031157600080fd5b5060015460005403600019015b604051908152602001610280565b34801561033857600080fd5b506103036103473660046121b6565b6109e1565b34801561035857600080fd5b506008546102749074010000000000000000000000000000000000000000900460ff1681565b34801561038a57600080fd5b5061031e610bb881565b3480156103a057600080fd5b506103036109f1565b3480156103b557600080fd5b506103036103c43660046121b6565b610a2d565b3480156103d557600080fd5b5061031e609681565b3480156103ea57600080fd5b506103036103f93660046122aa565b610a48565b34801561040a57600080fd5b5061041e6104193660046122f3565b610abe565b6040516102809190612399565b34801561043757600080fd5b506102cb610446366004612157565b610b85565b34801561045757600080fd5b5061031e600a5481565b34801561046d57600080fd5b5061031e61047c366004612404565b610b90565b34801561048d57600080fd5b50610303610bf8565b3480156104a257600080fd5b5061031e6101c281565b3480156104b857600080fd5b5061031e600281565b3480156104cd57600080fd5b506104e16104dc366004612404565b610c5e565b604051610280919061241f565b3480156104fa57600080fd5b506008546001600160a01b03166102cb565b34801561051857600080fd5b5061031e600581565b34801561052d57600080fd5b5061031e6105dc81565b34801561054357600080fd5b5061029e610d5b565b34801561055857600080fd5b5061031e610d6a565b34801561056d57600080fd5b506104e161057c366004612457565b610d80565b61030361058f366004612157565b610f21565b3480156105a057600080fd5b506103036105af36600461248a565b61130c565b3480156105c057600080fd5b506103036113d8565b3480156105d557600080fd5b506103036105e43660046124c6565b61147f565b3480156105f557600080fd5b50610609610604366004612157565b6114dc565b6040516102809190612542565b34801561062257600080fd5b5061029e610631366004612157565b611551565b34801561064257600080fd5b506103036115ed565b34801561065757600080fd5b50610274610666366004612578565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106a057600080fd5b506103036106af366004612404565b6116a7565b3480156106c057600080fd5b506103036106cf366004612157565b611786565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316148061076757507f80ac58cd000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b806107b357507f5b5e139f000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b6060600280546107c8906125ab565b80601f01602080910402602001604051908101604052809291908181526020018280546107f4906125ab565b80156108415780601f1061081657610100808354040283529160200191610841565b820191906000526020600020905b81548152906001019060200180831161082457829003601f168201915b5050505050905090565b6000610856826117e5565b61088c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108b382611833565b9050806001600160a01b0316836001600160a01b031603610900576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b336001600160a01b0382161461096d576001600160a01b038116600090815260076020908152604080832033845290915290205460ff1661096d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008281526006602052604080822080547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6109ec8383836118d4565b505050565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610a2a573d6000803e3d6000fd5b50565b6109ec8383836040518060200160405280600081525061147f565b6008546001600160a01b03163314610aa75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b8051610aba906009906020840190612008565b5050565b805160609060008167ffffffffffffffff811115610ade57610ade6121f2565b604051908082528060200260200182016040528015610b2957816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610afc5790505b50905060005b828114610b7d57610b58858281518110610b4b57610b4b6125fe565b60200260200101516114dc565b828281518110610b6a57610b6a6125fe565b6020908102919091010152600101610b2f565b509392505050565b60006107b382611833565b60006001600160a01b038216610bd2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610c525760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b610c5c6000611b16565b565b60606000806000610c6e85610b90565b905060008167ffffffffffffffff811115610c8b57610c8b6121f2565b604051908082528060200260200182016040528015610cb4578160200160208202803683370190505b50604080516060810182526000808252602082018190529181019190915290915060015b838614610d4f57610ce881611b80565b91508160400151610d475781516001600160a01b031615610d0857815194505b876001600160a01b0316856001600160a01b031603610d475780838780600101985081518110610d3a57610d3a6125fe565b6020026020010181815250505b600101610cd8565b50909695505050505050565b6060600380546107c8906125ab565b60006001600054610d7b919061265c565b905090565b6060818310610dbb576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dc760005490565b90506001851015610dd757600194505b80841115610de3578093505b6000610dee87610b90565b905084861015610e0d5785850381811015610e07578091505b50610e11565b5060005b60008167ffffffffffffffff811115610e2c57610e2c6121f2565b604051908082528060200260200182016040528015610e55578160200160208202803683370190505b50905081600003610e6b579350610f1a92505050565b6000610e76886114dc565b905060008160400151610e87575080515b885b888114158015610e995750848714155b15610f0e57610ea781611b80565b92508260400151610f065782516001600160a01b031615610ec757825191505b8a6001600160a01b0316826001600160a01b031603610f065780848880600101995081518110610ef957610ef96125fe565b6020026020010181815250505b600101610e89565b50505092835250909150505b9392505050565b323314610f705760405162461bcd60e51b815260206004820152601960248201527f63616e6e6f742063616c6c2066726f6d20636f6e7472616374000000000000006044820152606401610a9e565b60085474010000000000000000000000000000000000000000900460ff16610fda5760405162461bcd60e51b815260206004820152601060248201527f6d696e74206e6f742073746172746564000000000000000000000000000000006044820152606401610a9e565b600581111561102b5760405162461bcd60e51b815260206004820152601760248201527f4d696e7420616d6f756e742073686f756c64203c3d20350000000000000000006044820152606401610a9e565b6000611035610d6a565b905060006110438383612673565b9050600061105460966101c2612673565b83101561116e5761106860966101c2612673565b8211156110dd5760405162461bcd60e51b815260206004820152602360248201527f4d696e7420616d6f756e742065786365656420667265652d6d696e742073757060448201527f706c7900000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b6002846110e933610b90565b6110f39190612673565b11156111675760405162461bcd60e51b815260206004820152602360248201527f4578636565642066726565206d696e7420616d6f756e7420706572206163636f60448201527f756e7400000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b5034611239565b610bb88211156111c05760405162461bcd60e51b815260206004820152601d60248201527f4d696e7420616d6f756e7420657863656564206d617820737570706c790000006044820152606401610a9e565b6000600a54856111d0919061268b565b9050803410156112225760405162461bcd60e51b815260206004820152601660248201527f4e6f7420656e6f75676874206d696e742066756e6473000000000000000000006044820152606401610a9e565b8034111561123757611234813461265c565b91505b505b6105dc8310156112c7576105dc8211156112955760405162461bcd60e51b815260206004820152601e60248201527f4d696e7420616d6f756e742065786365656420666972737420737461676500006044820152606401610a9e565b6105dc82036112c757600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1690555b80156112fc57604051339082156108fc029083906000818181858888f193505050501580156112fa573d6000803e3d6000fd5b505b6113063385611c04565b50505050565b336001600160a01b0383160361134e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b0387168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146114325760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600880547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff8116740100000000000000000000000000000000000000009182900460ff1615909102179055565b61148a8484846118d4565b6001600160a01b0383163b15611306576114a684848484611c1e565b611306576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6040805160608082018352600080835260208084018290528385018290528451928301855281835282018190529281019290925290600183108061152257506000548310155b1561152d5792915050565b61153683611b80565b90508060400151156115485792915050565b610f1a83611d6d565b606061155c826117e5565b611592576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061159c611dea565b905080516000036115bc5760405180602001604052806000815250610f1a565b806115c684611df9565b6040516020016115d79291906126aa565b6040516020818303038152906040529392505050565b6008546001600160a01b031633146116475760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b61164f610d6a565b1561169c5760405162461bcd60e51b815260206004820152601160248201527f616c7265616479207072656d696e7465640000000000000000000000000000006044820152606401610a9e565b610c5c336096611c04565b6008546001600160a01b031633146117015760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6001600160a01b03811661177d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a9e565b610a2a81611b16565b6008546001600160a01b031633146117e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600a55565b6000816001111580156117f9575060005482105b80156107b35750506000908152600460205260409020547c0100000000000000000000000000000000000000000000000000000000161590565b600081806001116118a2576000548110156118a257600081815260046020526040812054907c0100000000000000000000000000000000000000000000000000000000821690036118a0575b80600003610f1a57506000190160008181526004602052604090205461187f565b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006118df82611833565b9050836001600160a01b0316816001600160a01b03161461192c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000336001600160a01b038616148061196857506001600160a01b038516600090815260076020908152604080832033845290915290205460ff165b806119835750336119788461084b565b6001600160a01b0316145b9050806119bc576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b0384166119fc576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083815260066020908152604080832080547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556001600160a01b0388811684526005835281842080546000190190558716835280832080546001019055858352600490915281207c02000000000000000000000000000000000000000000000000000000004260a01b8717811790915583169003611ace57600183016000818152600460205260408120549003611acc576000548114611acc5760008181526004602052604090208390555b505b82846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b600880546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60408051606081018252600080825260208201819052918101919091526000828152600460205260409020546107b390604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b610aba828260405180602001604052806000815250611e48565b6040517f150b7a020000000000000000000000000000000000000000000000000000000081526000906001600160a01b0385169063150b7a0290611c6c9033908990889088906004016126d9565b6020604051808303816000875af1925050508015611ca7575060408051601f3d908101601f19168201909252611ca491810190612715565b60015b611d1e573d808015611cd5576040519150601f19603f3d011682016040523d82523d6000602084013e611cda565b606091505b508051600003611d16576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a02000000000000000000000000000000000000000000000000000000001490505b949350505050565b60408051606081018252600080825260208201819052918101919091526107b3611d9683611833565b604080516060810182526001600160a01b038316815260a083901c67ffffffffffffffff1660208201527c010000000000000000000000000000000000000000000000000000000090921615159082015290565b6060600980546107c8906125ab565b604080516080810191829052607f0190826030600a8206018353600a90045b8015611e3657600183039250600a81066030018353600a9004611e18565b50819003601f19909101908152919050565b6000546001600160a01b038416611e8b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b82600003611ec5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6001600160a01b03841660008181526005602090815260408083208054680100000000000000018902019055848352600490915290204260a01b86176001861460e11b1790558190818501903b15611fb3575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f636000878480600101955087611c1e565b611f99576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611f18578260005414611fae57600080fd5b611ff8565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611fb4575b5060009081556113069085838684565b828054612014906125ab565b90600052602060002090601f016020900481019282612036576000855561207c565b82601f1061204f57805160ff191683800117855561207c565b8280016001018555821561207c579182015b8281111561207c578251825591602001919060010190612061565b5061208892915061208c565b5090565b5b80821115612088576000815560010161208d565b7fffffffff0000000000000000000000000000000000000000000000000000000081168114610a2a57600080fd5b6000602082840312156120e157600080fd5b8135610f1a816120a1565b60005b838110156121075781810151838201526020016120ef565b838111156113065750506000910152565b600081518084526121308160208601602086016120ec565b601f01601f19169290920160200192915050565b602081526000610f1a6020830184612118565b60006020828403121561216957600080fd5b5035919050565b80356001600160a01b038116811461218757600080fd5b919050565b6000806040838503121561219f57600080fd5b6121a883612170565b946020939093013593505050565b6000806000606084860312156121cb57600080fd5b6121d484612170565b92506121e260208501612170565b9150604084013590509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561224a5761224a6121f2565b604052919050565b600067ffffffffffffffff83111561226c5761226c6121f2565b61227f6020601f19601f86011601612221565b905082815283838301111561229357600080fd5b828260208301376000602084830101529392505050565b6000602082840312156122bc57600080fd5b813567ffffffffffffffff8111156122d357600080fd5b8201601f810184136122e457600080fd5b611d6584823560208401612252565b6000602080838503121561230657600080fd5b823567ffffffffffffffff8082111561231e57600080fd5b818501915085601f83011261233257600080fd5b813581811115612344576123446121f2565b8060051b9150612355848301612221565b818152918301840191848101908884111561236f57600080fd5b938501935b8385101561238d57843582529385019390850190612374565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610d4f576123f183855180516001600160a01b0316825260208082015167ffffffffffffffff16908301526040908101511515910152565b92840192606092909201916001016123b5565b60006020828403121561241657600080fd5b610f1a82612170565b6020808252825182820181905260009190848201906040850190845b81811015610d4f5783518352928401929184019160010161243b565b60008060006060848603121561246c57600080fd5b61247584612170565b95602085013595506040909401359392505050565b6000806040838503121561249d57600080fd5b6124a683612170565b9150602083013580151581146124bb57600080fd5b809150509250929050565b600080600080608085870312156124dc57600080fd5b6124e585612170565b93506124f360208601612170565b925060408501359150606085013567ffffffffffffffff81111561251657600080fd5b8501601f8101871361252757600080fd5b61253687823560208401612252565b91505092959194509250565b81516001600160a01b0316815260208083015167ffffffffffffffff1690820152604080830151151590820152606081016107b3565b6000806040838503121561258b57600080fd5b61259483612170565b91506125a260208401612170565b90509250929050565b600181811c908216806125bf57607f821691505b6020821081036125f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008282101561266e5761266e61262d565b500390565b600082198211156126865761268661262d565b500190565b60008160001904831182151516156126a5576126a561262d565b500290565b600083516126bc8184602088016120ec565b8351908301906126d08183602088016120ec565b01949350505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261270b6080830184612118565b9695505050505050565b60006020828403121561272757600080fd5b8151610f1a816120a156fea2646970667358221220c897987c54fcd7a212f40b09efc4cc506ccddb5d24ddb5252c0a7af00dc9e20864736f6c634300080d0033

Deployed Bytecode Sourcemap

175:3047:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4880:607:3;;;;;;;;;;-1:-1:-1;4880:607:3;;;;;:::i;:::-;;:::i;:::-;;;611:14:7;;604:22;586:41;;574:2;559:18;4880:607:3;;;;;;;;9768:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11769:200::-;;;;;;;;;;-1:-1:-1;11769:200:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1797:55:7;;;1779:74;;1767:2;1752:18;11769:200:3;1633:226:7;11245:463:3;;;;;;;;;;-1:-1:-1;11245:463:3;;;;;:::i;:::-;;:::i;:::-;;3963:309;;;;;;;;;;-1:-1:-1;1582:1:2;4225:12:3;4016:7;4209:13;:28;-1:-1:-1;;4209:46:3;3963:309;;;2470:25:7;;;2458:2;2443:18;3963:309:3;2324:177:7;12629:164:3;;;;;;;;;;-1:-1:-1;12629:164:3;;;;;:::i;:::-;;:::i;734:21:2:-;;;;;;;;;;-1:-1:-1;734:21:2;;;;;;;;;;;374:41;;;;;;;;;;;;411:4;374:41;;2994:96;;;;;;;;;;;;;:::i;12859:179:3:-;;;;;;;;;;-1:-1:-1;12859:179:3;;;;;:::i;:::-;;:::i;226:45:2:-;;;;;;;;;;;;268:3;226:45;;894:104;;;;;;;;;;-1:-1:-1;894:104:2;;;;;:::i;:::-;;:::i;1502:459:5:-;;;;;;;;;;-1:-1:-1;1502:459:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9564:142:3:-;;;;;;;;;;-1:-1:-1;9564:142:3;;;;;:::i;:::-;;:::i;791:38:2:-;;;;;;;;;;;;;;;;5546:221:3;;;;;;;;;;-1:-1:-1;5546:221:3;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;278:40:2:-;;;;;;;;;;;;315:3;278:40;;672:53;;;;;;;;;;;;724:1;672:53;;5220:871:5;;;;;;;;;;-1:-1:-1;5220:871:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;622:43:2;;;;;;;;;;;;664:1;622:43;;325:42;;;;;;;;;;;;363:4;325:42;;9930:102:3;;;;;;;;;;;;;:::i;1599:109:2:-;;;;;;;;;;;;;:::i;2337:2446:5:-;;;;;;;;;;-1:-1:-1;2337:2446:5;;;;;:::i;:::-;;:::i;1716:1270:2:-;;;;;;:::i;:::-;;:::i;12036:303:3:-;;;;;;;;;;-1:-1:-1;12036:303:3;;;;;:::i;:::-;;:::i;1287:85:2:-;;;;;;;;;;;;;:::i;13104:385:3:-;;;;;;;;;;-1:-1:-1;13104:385:3;;;;;:::i;:::-;;:::i;939:410:5:-;;;;;;;;;;-1:-1:-1;939:410:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;10098:313:3:-;;;;;;;;;;-1:-1:-1;10098:313:3;;;;;:::i;:::-;;:::i;1122:157:2:-;;;;;;;;;;;;;:::i;12405:162:3:-;;;;;;;;;;-1:-1:-1;12405:162:3;;;;;:::i;:::-;-1:-1:-1;;;;;12525:25:3;;;12502:4;12525:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;12405:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;1380:102:2:-;;;;;;;;;;-1:-1:-1;1380:102:2;;;;;:::i;:::-;;:::i;4880:607:3:-;4965:4;5260:25;;;;;;:101;;-1:-1:-1;5336:25:3;;;;;5260:101;:177;;;-1:-1:-1;5412:25:3;;;;;5260:177;5241:196;4880:607;-1:-1:-1;;4880:607:3:o;9768:98::-;9822:13;9854:5;9847:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9768:98;:::o;11769:200::-;11837:7;11861:16;11869:7;11861;:16::i;:::-;11856:64;;11886:34;;;;;;;;;;;;;;11856:64;-1:-1:-1;11938:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;11938:24:3;;11769:200::o;11245:463::-;11317:13;11349:27;11368:7;11349:18;:27::i;:::-;11317:61;;11398:5;-1:-1:-1;;;;;11392:11:3;:2;-1:-1:-1;;;;;11392:11:3;;11388:48;;11412:24;;;;;;;;;;;;;;11388:48;27446:10;-1:-1:-1;;;;;11451:28:3;;;11447:172;;-1:-1:-1;;;;;12525:25:3;;12502:4;12525:25;;;:18;:25;;;;;;;;27446:10;12525:35;;;;;;;;;;11493:126;;11569:35;;;;;;;;;;;;;;11493:126;11629:24;;;;:15;:24;;;;;;:29;;;;-1:-1:-1;;;;;11629:29:3;;;;;;;;;11673:28;;11629:24;;11673:28;;;;;;;11307:401;11245:463;;:::o;12629:164::-;12758:28;12768:4;12774:2;12778:7;12758:9;:28::i;:::-;12629:164;;;:::o;2994:96:2:-;1108:6:0;;3034:48:2;;-1:-1:-1;;;;;1108:6:0;;;;3060:21:2;3034:48;;;;;;;;;3060:21;1108:6:0;3034:48:2;;;;;;;;;;;;;;;;;;;;;2994:96::o;12859:179:3:-;12992:39;13009:4;13015:2;13019:7;12992:39;;;;;;;;;;;;:16;:39::i;894:104:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9640:2:7;1240:68:0;;;9622:21:7;;;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;9770:18;;1240:68:0;;;;;;;;;969:21:2;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;894:104:::0;:::o;1502:459:5:-;1675:15;;1591:23;;1650:22;1675:15;1741:36;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1741:36:5;;-1:-1:-1;;1741:36:5;;;;;;;;;;;;1704:73;;1796:9;1791:123;1812:14;1807:1;:19;1791:123;;1867:32;1887:8;1896:1;1887:11;;;;;;;;:::i;:::-;;;;;;;1867:19;:32::i;:::-;1851:10;1862:1;1851:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1828:3;;1791:123;;;-1:-1:-1;1934:10:5;1502:459;-1:-1:-1;;;1502:459:5:o;9564:142:3:-;9628:7;9670:27;9689:7;9670:18;:27::i;5546:221::-;5610:7;-1:-1:-1;;;;;5633:19:3;;5629:60;;5661:28;;;;;;;;;;;;;;5629:60;-1:-1:-1;;;;;;5706:25:3;;;;;:18;:25;;;;;;1017:13;5706:54;;5546:221::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;27446:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9640:2:7;1240:68:0;;;9622:21:7;;;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;9770:18;;1240:68:0;9438:356:7;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;5220:871:5:-;5290:16;5342:19;5375:25;5414:22;5439:16;5449:5;5439:9;:16::i;:::-;5414:41;;5469:25;5511:14;5497:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5497:29:5;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;5469:57:5;;-1:-1:-1;1582:1:2;5585:461:5;5634:14;5619:11;:29;5585:461;;5685:15;5698:1;5685:12;:15::i;:::-;5673:27;;5722:9;:16;;;5762:8;5718:71;5810:14;;-1:-1:-1;;;;;5810:28:5;;5806:109;;5882:14;;;-1:-1:-1;5806:109:5;5957:5;-1:-1:-1;;;;;5936:26:5;:17;-1:-1:-1;;;;;5936:26:5;;5932:100;;6012:1;5986:8;5995:13;;;;;;5986:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;5932:100;5650:3;;5585:461;;;-1:-1:-1;6066:8:5;;5220:871;-1:-1:-1;;;;;;5220:871:5:o;9930:102:3:-;9986:13;10018:7;10011:14;;;;;:::i;1599:109:2:-;1641:7;1582:1;3713:7:3;3739:13;1668:32:2;;;;:::i;:::-;1661:39;;1599:109;:::o;2337:2446:5:-;2468:16;2533:4;2524:5;:13;2520:45;;2546:19;;;;;;;;;;;;;;2520:45;2579:19;2612:17;2632:14;3713:7:3;3739:13;;3666:93;2632:14:5;2612:34;-1:-1:-1;1582:1:2;2722:5:5;:23;2718:85;;;1582:1:2;2765:23:5;;2718:85;2877:9;2870:4;:16;2866:71;;;2913:9;2906:16;;2866:71;2950:25;2978:16;2988:5;2978:9;:16::i;:::-;2950:44;;3169:4;3161:5;:12;3157:271;;;3215:12;;;3249:31;;;3245:109;;;3324:11;3304:31;;3245:109;3175:193;3157:271;;;-1:-1:-1;3412:1:5;3157:271;3441:25;3483:17;3469:32;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3469:32:5;;3441:60;;3519:17;3540:1;3519:22;3515:76;;3568:8;-1:-1:-1;3561:15:5;;-1:-1:-1;;;3561:15:5;3515:76;3732:31;3766:26;3786:5;3766:19;:26::i;:::-;3732:60;;3806:25;4048:9;:16;;;4043:90;;-1:-1:-1;4104:14:5;;4043:90;4163:5;4146:467;4175:4;4170:1;:9;;:45;;;;;4198:17;4183:11;:32;;4170:45;4146:467;;;4252:15;4265:1;4252:12;:15::i;:::-;4240:27;;4289:9;:16;;;4329:8;4285:71;4377:14;;-1:-1:-1;;;;;4377:28:5;;4373:109;;4449:14;;;-1:-1:-1;4373:109:5;4524:5;-1:-1:-1;;;;;4503:26:5;:17;-1:-1:-1;;;;;4503:26:5;;4499:100;;4579:1;4553:8;4562:13;;;;;;4553:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4499:100;4217:3;;4146:467;;;-1:-1:-1;;;4695:29:5;;;-1:-1:-1;4702:8:5;;-1:-1:-1;;2337:2446:5;;;;;;:::o;1716:1270:2:-;3146:9;3159:10;3146:23;3138:61;;;;-1:-1:-1;;;3138:61:2;;10509:2:7;3138:61:2;;;10491:21:7;10548:2;10528:18;;;10521:30;10587:27;10567:18;;;10560:55;10632:18;;3138:61:2;10307:349:7;3138:61:2;1802:9:::1;::::0;;;::::1;;;1794:38;;;::::0;-1:-1:-1;;;1794:38:2;;10863:2:7;1794:38:2::1;::::0;::::1;10845:21:7::0;10902:2;10882:18;;;10875:30;10941:18;10921;;;10914:46;10977:18;;1794:38:2::1;10661:340:7::0;1794:38:2::1;664:1;1851:8;:27;;1843:63;;;::::0;-1:-1:-1;;;1843:63:2;;11208:2:7;1843:63:2::1;::::0;::::1;11190:21:7::0;11247:2;11227:18;;;11220:30;11286:25;11266:18;;;11259:53;11329:18;;1843:63:2::1;11006:347:7::0;1843:63:2::1;1917:18;1938:11;:9;:11::i;:::-;1917:32:::0;-1:-1:-1;1960:20:2::1;1983:21;1996:8:::0;1917:32;1983:21:::1;:::i;:::-;1960:44:::0;-1:-1:-1;2015:15:2::1;2058:28;268:3;315;2058:28;:::i;:::-;2045:10;:41;2041:629;;;2127:28;268:3;315;2127:28;:::i;:::-;2111:12;:44;;2103:92;;;::::0;-1:-1:-1;;;2103:92:2;;11693:2:7;2103:92:2::1;::::0;::::1;11675:21:7::0;11732:2;11712:18;;;11705:30;11771:34;11751:18;;;11744:62;11842:5;11822:18;;;11815:33;11865:19;;2103:92:2::1;11491:399:7::0;2103:92:2::1;724:1;2242:8;2218:21;2228:10;2218:9;:21::i;:::-;:32;;;;:::i;:::-;:61;;2210:109;;;::::0;-1:-1:-1;;;2210:109:2;;12097:2:7;2210:109:2::1;::::0;::::1;12079:21:7::0;12136:2;12116:18;;;12109:30;12175:34;12155:18;;;12148:62;12246:5;12226:18;;;12219:33;12269:19;;2210:109:2::1;11895:399:7::0;2210:109:2::1;-1:-1:-1::0;2344:9:2::1;2041:629;;;411:4;2394:12;:26;;2386:68;;;::::0;-1:-1:-1;;;2386:68:2;;12501:2:7;2386:68:2::1;::::0;::::1;12483:21:7::0;12540:2;12520:18;;;12513:30;12579:31;12559:18;;;12552:59;12628:18;;2386:68:2::1;12299:353:7::0;2386:68:2::1;2469:18;2501:9;;2490:8;:20;;;;:::i;:::-;2469:41;;2546:10;2533:9;:23;;2525:58;;;::::0;-1:-1:-1;;;2525:58:2;;13092:2:7;2525:58:2::1;::::0;::::1;13074:21:7::0;13131:2;13111:18;;;13104:30;13170:24;13150:18;;;13143:52;13212:18;;2525:58:2::1;12890:346:7::0;2525:58:2::1;2614:10;2602:9;:22;2598:60;;;2636:22;2648:10:::0;2636:9:::1;:22;:::i;:::-;2626:32;;2598:60;2371:299;2041:629;363:4;2684:10;:24;2680:192;;;363:4;2733:12;:27;;2725:70;;;::::0;-1:-1:-1;;;2725:70:2;;13443:2:7;2725:70:2::1;::::0;::::1;13425:21:7::0;13482:2;13462:18;;;13455:30;13521:32;13501:18;;;13494:60;13571:18;;2725:70:2::1;13241:354:7::0;2725:70:2::1;363:4;2814:12;:27:::0;2810:50:::1;;2843:9;:17:::0;;;::::1;::::0;;2810:50:::1;2886:11:::0;;2882:54:::1;;2899:37;::::0;2907:10:::1;::::0;2899:37;::::1;;;::::0;2928:7;;2899:37:::1;::::0;;;2928:7;2907:10;2899:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;2882:54;2947:31;2957:10;2969:8;2947:9;:31::i;:::-;1783:1203;;;1716:1270:::0;:::o;12036:303:3:-;27446:10;-1:-1:-1;;;;;12134:31:3;;;12130:61;;12174:17;;;;;;;;;;;;;;12130:61;27446:10;12202:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;12202:49:3;;;;;;;;;;;;:60;;;;;;;;;;;;;12277:55;;586:41:7;;;12202:49:3;;27446:10;12277:55;;559:18:7;12277:55:3;;;;;;;12036:303;;:::o;1287:85:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9640:2:7;1240:68:0;;;9622:21:7;;;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;9770:18;;1240:68:0;9438:356:7;1240:68:0;1355:9:2::1;::::0;;1342:22;;::::1;1355:9:::0;;;;::::1;;;1354:10;1342:22:::0;;::::1;;::::0;;1287:85::o;13104:385:3:-;13265:28;13275:4;13281:2;13285:7;13265:9;:28::i;:::-;-1:-1:-1;;;;;13307:14:3;;;:19;13303:180;;13345:56;13376:4;13382:2;13386:7;13395:5;13345:30;:56::i;:::-;13340:143;;13428:40;;;;;;;;;;;;;;939:410:5;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1582:1:2;1093:7:5;:25;:54;;;-1:-1:-1;3713:7:3;3739:13;1122:7:5;:25;;1093:54;1089:101;;;1170:9;939:410;-1:-1:-1;;939:410:5:o;1089:101::-;1211:21;1224:7;1211:12;:21::i;:::-;1199:33;;1246:9;:16;;;1242:63;;;1285:9;939:410;-1:-1:-1;;939:410:5:o;1242:63::-;1321:21;1334:7;1321:12;:21::i;10098:313:3:-;10171:13;10201:16;10209:7;10201;:16::i;:::-;10196:59;;10226:29;;;;;;;;;;;;;;10196:59;10266:21;10290:10;:8;:10::i;:::-;10266:34;;10323:7;10317:21;10342:1;10317:26;:87;;;;;;;;;;;;;;;;;10370:7;10379:18;10389:7;10379:9;:18::i;:::-;10353:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10310:94;10098:313;-1:-1:-1;;;10098:313:3:o;1122:157:2:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9640:2:7;1240:68:0;;;9622:21:7;;;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;9770:18;;1240:68:0;9438:356:7;1240:68:0;1184:11:2::1;:9;:11::i;:::-;:16:::0;1176:46:::1;;;::::0;-1:-1:-1;;;1176:46:2;;14277:2:7;1176:46:2::1;::::0;::::1;14259:21:7::0;14316:2;14296:18;;;14289:30;14355:19;14335:18;;;14328:47;14392:18;;1176:46:2::1;14075:341:7::0;1176:46:2::1;1233:38;1243:10;268:3;1233:9;:38::i;1918:198:0:-:0;1108:6;;-1:-1:-1;;;;;1108:6:0;27446:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9640:2:7;1240:68:0;;;9622:21:7;;;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;9770:18;;1240:68:0;9438:356:7;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;14623:2:7;1998:73:0::1;::::0;::::1;14605:21:7::0;14662:2;14642:18;;;14635:30;14701:34;14681:18;;;14674:62;14772:8;14752:18;;;14745:36;14798:19;;1998:73:0::1;14421:402:7::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;1380:102:2:-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;27446:10:3;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;9640:2:7;1240:68:0;;;9622:21:7;;;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;9770:18;;1240:68:0;9438:356:7;1240:68:0;1452:9:2::1;:22:::0;1380:102::o;13735:268:3:-;13792:4;13846:7;1582:1:2;13827:26:3;;:65;;;;;13879:13;;13869:7;:23;13827:65;:150;;;;-1:-1:-1;;13929:26:3;;;;:17;:26;;;;;;1769:8;13929:43;:48;;13735:268::o;7141:1105::-;7208:7;7242;;1582:1:2;7288:23:3;7284:898;;7340:13;;7333:4;:20;7329:853;;;7377:14;7394:23;;;:17;:23;;;;;;;1769:8;7481:23;;:28;;7477:687;;7992:111;7999:6;8009:1;7999:11;7992:111;;-1:-1:-1;;;8069:6:3;8051:25;;;;:17;:25;;;;;;7992:111;;7477:687;7355:827;7329:853;8208:31;;;;;;;;;;;;;;18835:2460;18945:27;18975;18994:7;18975:18;:27::i;:::-;18945:57;;19058:4;-1:-1:-1;;;;;19017:45:3;19033:19;-1:-1:-1;;;;;19017:45:3;;19013:86;;19071:28;;;;;;;;;;;;;;19013:86;19110:22;27446:10;-1:-1:-1;;;;;19136:27:3;;;;:86;;-1:-1:-1;;;;;;12525:25:3;;12502:4;12525:25;;;:18;:25;;;;;;;;27446:10;12525:35;;;;;;;;;;19179:43;19136:145;;;-1:-1:-1;27446:10:3;19238:20;19250:7;19238:11;:20::i;:::-;-1:-1:-1;;;;;19238:43:3;;19136:145;19110:172;;19298:17;19293:66;;19324:35;;;;;;;;;;;;;;19293:66;-1:-1:-1;;;;;19373:16:3;;19369:52;;19398:23;;;;;;;;;;;;;;19369:52;19545:24;;;;:15;:24;;;;;;;;19538:31;;;;;;-1:-1:-1;;;;;19930:24:3;;;;;:18;:24;;;;;19928:26;;-1:-1:-1;;19928:26:3;;;19998:22;;;;;;;19996:24;;-1:-1:-1;19996:24:3;;;20284:26;;;:17;:26;;;;;2045:8;20370:15;1656:3;20370:41;20329:83;;:126;;20284:171;;;20572:46;;:51;;20568:616;;20675:1;20665:11;;20643:19;20796:30;;;:17;:30;;;;;;:35;;20792:378;;20932:13;;20917:11;:28;20913:239;;21077:30;;;;:17;:30;;;;;:52;;;20913:239;20625:559;20568:616;21228:7;21224:2;-1:-1:-1;;;;;21209:27:3;21218:4;-1:-1:-1;;;;;21209:27:3;;;;;;;;;;;18935:2360;;18835:2460;;;:::o;2270:187:0:-;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;;;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;8712:151:3:-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;8831:24:3;;;;:17;:24;;;;;;8812:44;;-1:-1:-1;;;;;;;;;;;;;8444:41:3;;;;1656:3;8529:32;;;8495:67;;-1:-1:-1;;;8495:67:3;1769:8;8591:23;;;:28;;-1:-1:-1;;;8572:47:3;-1:-1:-1;8335:291:3;14082:102;14150:27;14160:2;14164:8;14150:27;;;;;;;;;;;;:9;:27::i;24900:697::-;25078:88;;;;;25058:4;;-1:-1:-1;;;;;25078:45:3;;;;;:88;;27446:10;;25145:4;;25151:7;;25160:5;;25078:88;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25078:88:3;;;;;;;;-1:-1:-1;;25078:88:3;;;;;;;;;;;;:::i;:::-;;;25074:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25356:6;:13;25373:1;25356:18;25352:229;;25401:40;;;;;;;;;;;;;;25352:229;25541:6;25535:13;25526:6;25522:2;25518:15;25511:38;25074:517;25234:64;;25244:54;25234:64;;-1:-1:-1;25074:517:3;24900:697;;;;;;:::o;9351:156::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;9453:47:3;9472:27;9491:7;9472:18;:27::i;:::-;-1:-1:-1;;;;;;;;;;;;;8444:41:3;;;;1656:3;8529:32;;;8495:67;;-1:-1:-1;;;8495:67:3;1769:8;8591:23;;;:28;;-1:-1:-1;;;8572:47:3;-1:-1:-1;8335:291:3;1006:108:2;1066:13;1099:7;1092:14;;;;;:::i;27564:1920:3:-;28029:4;28023:11;;28036:3;28019:21;;28112:17;;;;28796:11;;;28677:5;28926:2;28940;28930:13;;28922:22;28796:11;28909:36;28980:2;28970:13;;28570:668;28998:4;28570:668;;;29169:1;29164:3;29160:11;29153:18;;29219:2;29213:4;29209:13;29205:2;29201:22;29196:3;29188:36;29092:2;29082:13;;28570:668;;;-1:-1:-1;29278:13:3;;;-1:-1:-1;;29391:12:3;;;29449:19;;;29391:12;27564:1920;-1:-1:-1;27564:1920:3:o;14544:2184::-;14662:20;14685:13;-1:-1:-1;;;;;14712:16:3;;14708:48;;14737:19;;;;;;;;;;;;;;14708:48;14770:8;14782:1;14770:13;14766:44;;14792:18;;;;;;;;;;;;;;14766:44;-1:-1:-1;;;;;15346:22:3;;;;;;:18;:22;;;;1151:2;15346:22;;;:70;;15384:31;15372:44;;15346:70;;;15652:31;;;:17;:31;;;;;15743:15;1656:3;15743:41;15702:83;;-1:-1:-1;15820:13:3;;1913:3;15805:56;15702:160;15652:210;;:31;;15940:23;;;;15982:14;:19;15978:622;;16021:308;16051:38;;16076:12;;-1:-1:-1;;;;;16051:38:3;;;16068:1;;16051:38;;16068:1;;16051:38;16116:69;16155:1;16159:2;16163:14;;;;;;16179:5;16116:30;:69::i;:::-;16111:172;;16220:40;;;;;;;;;;;;;;16111:172;16324:3;16309:12;:18;16021:308;;16408:12;16391:13;;:29;16387:43;;16422:8;;;16387:43;15978:622;;;16469:117;16499:40;;16524:14;;;;;-1:-1:-1;;;;;16499:40:3;;;16516:1;;16499:40;;16516:1;;16499:40;16581:3;16566:12;:18;16469:117;;15978:622;-1:-1:-1;16613:13:3;:28;;;16661:60;;16694:2;16698:12;16712:8;16661:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:7;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:7;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;-1:-1:-1;;1116:88:7;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:7:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:7;;1448:180;-1:-1:-1;1448:180:7:o;1864:196::-;1932:20;;-1:-1:-1;;;;;1981:54:7;;1971:65;;1961:93;;2050:1;2047;2040:12;1961:93;1864:196;;;:::o;2065:254::-;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:7:o;2506:328::-;2583:6;2591;2599;2652:2;2640:9;2631:7;2627:23;2623:32;2620:52;;;2668:1;2665;2658:12;2620:52;2691:29;2710:9;2691:29;:::i;:::-;2681:39;;2739:38;2773:2;2762:9;2758:18;2739:38;:::i;:::-;2729:48;;2824:2;2813:9;2809:18;2796:32;2786:42;;2506:328;;;;;:::o;2839:184::-;2891:77;2888:1;2881:88;2988:4;2985:1;2978:15;3012:4;3009:1;3002:15;3028:334;3099:2;3093:9;3155:2;3145:13;;-1:-1:-1;;3141:86:7;3129:99;;3258:18;3243:34;;3279:22;;;3240:62;3237:88;;;3305:18;;:::i;:::-;3341:2;3334:22;3028:334;;-1:-1:-1;3028:334:7:o;3367:466::-;3432:5;3466:18;3458:6;3455:30;3452:56;;;3488:18;;:::i;:::-;3526:116;3636:4;-1:-1:-1;;3562:2:7;3554:6;3550:15;3546:88;3542:99;3526:116;:::i;:::-;3517:125;;3665:6;3658:5;3651:21;3705:3;3696:6;3691:3;3687:16;3684:25;3681:45;;;3722:1;3719;3712:12;3681:45;3771:6;3766:3;3759:4;3752:5;3748:16;3735:43;3825:1;3818:4;3809:6;3802:5;3798:18;3794:29;3787:40;3367:466;;;;;:::o;3838:451::-;3907:6;3960:2;3948:9;3939:7;3935:23;3931:32;3928:52;;;3976:1;3973;3966:12;3928:52;4016:9;4003:23;4049:18;4041:6;4038:30;4035:50;;;4081:1;4078;4071:12;4035:50;4104:22;;4157:4;4149:13;;4145:27;-1:-1:-1;4135:55:7;;4186:1;4183;4176:12;4135:55;4209:74;4275:7;4270:2;4257:16;4252:2;4248;4244:11;4209:74;:::i;4294:946::-;4378:6;4409:2;4452;4440:9;4431:7;4427:23;4423:32;4420:52;;;4468:1;4465;4458:12;4420:52;4508:9;4495:23;4537:18;4578:2;4570:6;4567:14;4564:34;;;4594:1;4591;4584:12;4564:34;4632:6;4621:9;4617:22;4607:32;;4677:7;4670:4;4666:2;4662:13;4658:27;4648:55;;4699:1;4696;4689:12;4648:55;4735:2;4722:16;4757:2;4753;4750:10;4747:36;;;4763:18;;:::i;:::-;4809:2;4806:1;4802:10;4792:20;;4832:28;4856:2;4852;4848:11;4832:28;:::i;:::-;4894:15;;;4964:11;;;4960:20;;;4925:12;;;;4992:19;;;4989:39;;;5024:1;5021;5014:12;4989:39;5048:11;;;;5068:142;5084:6;5079:3;5076:15;5068:142;;;5150:17;;5138:30;;5101:12;;;;5188;;;;5068:142;;;5229:5;4294:946;-1:-1:-1;;;;;;;;4294:946:7:o;5551:724::-;5786:2;5838:21;;;5908:13;;5811:18;;;5930:22;;;5757:4;;5786:2;6009:15;;;;5983:2;5968:18;;;5757:4;6052:197;6066:6;6063:1;6060:13;6052:197;;;6115:52;6163:3;6154:6;6148:13;5329:12;;-1:-1:-1;;;;;5325:61:7;5313:74;;5440:4;5429:16;;;5423:23;5448:18;5419:48;5403:14;;;5396:72;5531:4;5520:16;;;5514:23;5507:31;5500:39;5484:14;;5477:63;5245:301;6115:52;6224:15;;;;6196:4;6187:14;;;;;6088:1;6081:9;6052:197;;6280:186;6339:6;6392:2;6380:9;6371:7;6367:23;6363:32;6360:52;;;6408:1;6405;6398:12;6360:52;6431:29;6450:9;6431:29;:::i;6471:632::-;6642:2;6694:21;;;6764:13;;6667:18;;;6786:22;;;6613:4;;6642:2;6865:15;;;;6839:2;6824:18;;;6613:4;6908:169;6922:6;6919:1;6916:13;6908:169;;;6983:13;;6971:26;;7052:15;;;;7017:12;;;;6944:1;6937:9;6908:169;;7108:322;7185:6;7193;7201;7254:2;7242:9;7233:7;7229:23;7225:32;7222:52;;;7270:1;7267;7260:12;7222:52;7293:29;7312:9;7293:29;:::i;:::-;7283:39;7369:2;7354:18;;7341:32;;-1:-1:-1;7420:2:7;7405:18;;;7392:32;;7108:322;-1:-1:-1;;;7108:322:7:o;7435:347::-;7500:6;7508;7561:2;7549:9;7540:7;7536:23;7532:32;7529:52;;;7577:1;7574;7567:12;7529:52;7600:29;7619:9;7600:29;:::i;:::-;7590:39;;7679:2;7668:9;7664:18;7651:32;7726:5;7719:13;7712:21;7705:5;7702:32;7692:60;;7748:1;7745;7738:12;7692:60;7771:5;7761:15;;;7435:347;;;;;:::o;7787:667::-;7882:6;7890;7898;7906;7959:3;7947:9;7938:7;7934:23;7930:33;7927:53;;;7976:1;7973;7966:12;7927:53;7999:29;8018:9;7999:29;:::i;:::-;7989:39;;8047:38;8081:2;8070:9;8066:18;8047:38;:::i;:::-;8037:48;;8132:2;8121:9;8117:18;8104:32;8094:42;;8187:2;8176:9;8172:18;8159:32;8214:18;8206:6;8203:30;8200:50;;;8246:1;8243;8236:12;8200:50;8269:22;;8322:4;8314:13;;8310:27;-1:-1:-1;8300:55:7;;8351:1;8348;8341:12;8300:55;8374:74;8440:7;8435:2;8422:16;8417:2;8413;8409:11;8374:74;:::i;:::-;8364:84;;;7787:667;;;;;;;:::o;8459:267::-;5329:12;;-1:-1:-1;;;;;5325:61:7;5313:74;;5440:4;5429:16;;;5423:23;5448:18;5419:48;5403:14;;;5396:72;5531:4;5520:16;;;5514:23;5507:31;5500:39;5484:14;;;5477:63;8657:2;8642:18;;8669:51;5245:301;8731:260;8799:6;8807;8860:2;8848:9;8839:7;8835:23;8831:32;8828:52;;;8876:1;8873;8866:12;8828:52;8899:29;8918:9;8899:29;:::i;:::-;8889:39;;8947:38;8981:2;8970:9;8966:18;8947:38;:::i;:::-;8937:48;;8731:260;;;;;:::o;8996:437::-;9075:1;9071:12;;;;9118;;;9139:61;;9193:4;9185:6;9181:17;9171:27;;9139:61;9246:2;9238:6;9235:14;9215:18;9212:38;9209:218;;9283:77;9280:1;9273:88;9384:4;9381:1;9374:15;9412:4;9409:1;9402:15;9209:218;;8996:437;;;:::o;9799:184::-;9851:77;9848:1;9841:88;9948:4;9945:1;9938:15;9972:4;9969:1;9962:15;9988:184;10040:77;10037:1;10030:88;10137:4;10134:1;10127:15;10161:4;10158:1;10151:15;10177:125;10217:4;10245:1;10242;10239:8;10236:34;;;10250:18;;:::i;:::-;-1:-1:-1;10287:9:7;;10177:125::o;11358:128::-;11398:3;11429:1;11425:6;11422:1;11419:13;11416:39;;;11435:18;;:::i;:::-;-1:-1:-1;11471:9:7;;11358:128::o;12657:228::-;12697:7;12823:1;-1:-1:-1;;12751:74:7;12748:1;12745:81;12740:1;12733:9;12726:17;12722:105;12719:131;;;12830:18;;:::i;:::-;-1:-1:-1;12870:9:7;;12657:228::o;13600:470::-;13779:3;13817:6;13811:13;13833:53;13879:6;13874:3;13867:4;13859:6;13855:17;13833:53;:::i;:::-;13949:13;;13908:16;;;;13971:57;13949:13;13908:16;14005:4;13993:17;;13971:57;:::i;:::-;14044:20;;13600:470;-1:-1:-1;;;;13600:470:7:o;14828:512::-;15022:4;-1:-1:-1;;;;;15132:2:7;15124:6;15120:15;15109:9;15102:34;15184:2;15176:6;15172:15;15167:2;15156:9;15152:18;15145:43;;15224:6;15219:2;15208:9;15204:18;15197:34;15267:3;15262:2;15251:9;15247:18;15240:31;15288:46;15329:3;15318:9;15314:19;15306:6;15288:46;:::i;:::-;15280:54;14828:512;-1:-1:-1;;;;;;14828:512:7:o;15345:249::-;15414:6;15467:2;15455:9;15446:7;15442:23;15438:32;15435:52;;;15483:1;15480;15473:12;15435:52;15515:9;15509:16;15534:30;15558:5;15534:30;:::i

Swarm Source

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