ETH Price: $3,486.75 (+3.43%)
Gas: 5 Gwei

Token

Kennel Apes (KA)
 

Overview

Max Total Supply

10,000 KA

Holders

3,761

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KA
0x3af474f46a9dd225d2983acffdb11aba1b5ca872
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:
KennelApes

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity 0.8.16;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

contract KennelApes is IERC721A { 

    address private _owner;
    modifier onlyOwner() { 
        require(_owner==msg.sender, "No!"); 
        _; 
    }

    bool public saleIsActive = true;

    uint256 public constant MAX_PER_WALLET = 10;
    uint256 public constant COST = 0.003 ether;
    uint256 public MAX_SUPPLY = 10000;
    uint256 public MAX_FREE_PER_WALLET = 2;

    string private constant _name = "Kennel Apes";
    string private constant _symbol = "KA";
    string private _contractURI = "";
    string private _baseURI = "";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(saleIsActive, "NotActive");
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_PER_WALLET+MAX_FREE_PER_WALLET, "AccLimit");
        require(msg.value >= COST*amount, "Price");

        _mint(_caller, amount);
    }

    function freeMint() external{
        uint256 amount = MAX_FREE_PER_WALLET;
        address _caller = _msgSenderERC721A();
        uint256 earlyBonus = 0;

        if(totalSupply()<100){earlyBonus += 7;}
        if(totalSupply()<6000){earlyBonus += 1;}

        require(saleIsActive, "NotActive");
        require(totalSupply() + amount <= MAX_SUPPLY, "SoldOut");
        require(amount + _numberMinted(msg.sender) <= MAX_FREE_PER_WALLET+earlyBonus, "AccLimit");

        _mint(_caller, amount+earlyBonus);
    }


    // 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 = 0;

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


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


    function setSale(bool _saleIsActive) external onlyOwner{
        saleIsActive = _saleIsActive;
    }

    function setBaseURI(string memory _new) external onlyOwner{
        _baseURI = _new;
    }

    function setContractURI(string memory _new) external onlyOwner{
        _contractURI = _new;
    }

    function reduceMaxSupply(uint256 _new) external onlyOwner{
        require(_new < MAX_SUPPLY, "can only go down");
        MAX_SUPPLY = _new;
    }

    function setMaxFreePerWallet(uint256 _new) external onlyOwner{
        MAX_FREE_PER_WALLET = _new;
    }
   

    /**
     * @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 - _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 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 (_addressToUint256(owner) == 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 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;
    }

    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked("ipfs://", _contractURI));
    }

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

        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);
    }

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

    /**
     * @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 (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


        // 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);
                } 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 (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();


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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();

        //X if (_addressToUint256(to) == 0) revert TransferToZeroAddress();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            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 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)
        }
    }

    function teamMint(uint256 _amount) external onlyOwner{
        _mint(msg.sender, _amount);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","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":[{"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":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","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":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"reduceMaxSupply","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_new","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_new","type":"uint256"}],"name":"setMaxFreePerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_saleIsActive","type":"bool"}],"name":"setSale","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":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000805460ff60a01b1916600160a01b1781556127106001556002805560a0604052608090815260039062000035908262000125565b5060408051602081019091526000815260049062000054908262000125565b5060006005553480156200006757600080fd5b50600080546001600160a01b03191633179055620001f1565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620000ab57607f821691505b602082108103620000cc57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200012057600081815260208120601f850160051c81016020861015620000fb5750805b601f850160051c820191505b818110156200011c5782815560010162000107565b5050505b505050565b81516001600160401b0381111562000141576200014162000080565b620001598162000152845462000096565b84620000d2565b602080601f831160018114620001915760008415620001785750858301515b600019600386901b1c1916600185901b1785556200011c565b600085815260208120601f198616915b82811015620001c257888601518255948401946001909101908401620001a1565b5085821015620001e15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6116fa80620002016000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104fa578063e8a3d4851461051a578063e985e9c51461052f578063eb8d24441461054f57600080fd5b8063a0712d681461048c578063a22cb4651461049f578063b88d4fde146104bf578063bf8fbbd2146104df57600080fd5b806373532802116100d1578063735328021461040b578063938e3d7b1461042b57806395d89b411461044b57806398710d1e1461047657600080fd5b80636352211e146103ab5780636d7c4a4b146103cb57806370a08231146103eb57600080fd5b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b1461034157806342842e0e1461035657806355f804b3146103765780635b70ea9f1461039657600080fd5b806323b872dd146102eb5780632fbba1151461030b57806332cb6b0c1461032b57600080fd5b8063095ea7b3116101a0578063095ea7b3146102715780630f2cdd6c1461029357806318160ddd146102b65780631d2e5a3a146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc14610239575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611117565b610570565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5060408051808201909152600b81526a4b656e6e656c204170657360a81b60208201525b6040516101f39190611165565b34801561024557600080fd5b50610259610254366004611198565b6105c2565b6040516001600160a01b0390911681526020016101f3565b34801561027d57600080fd5b5061029161028c3660046111cd565b610608565b005b34801561029f57600080fd5b506102a8600a81565b6040519081526020016101f3565b3480156102c257600080fd5b506005546102a8565b3480156102d757600080fd5b506102916102e6366004611207565b6106c6565b3480156102f757600080fd5b50610291610306366004611222565b610717565b34801561031757600080fd5b50610291610326366004611198565b610727565b34801561033757600080fd5b506102a860015481565b34801561034d57600080fd5b5061029161075e565b34801561036257600080fd5b50610291610371366004611222565b6107bb565b34801561038257600080fd5b506102916103913660046112ea565b6107d6565b3480156103a257600080fd5b5061029161080c565b3480156103b757600080fd5b506102596103c6366004611198565b610966565b3480156103d757600080fd5b506102916103e6366004611198565b610971565b3480156103f757600080fd5b506102a861040636600461133b565b6109a0565b34801561041757600080fd5b50610291610426366004611198565b6109e9565b34801561043757600080fd5b506102916104463660046112ea565b610a5c565b34801561045757600080fd5b506040805180820190915260028152614b4160f01b602082015261022c565b34801561048257600080fd5b506102a860025481565b61029161049a366004611198565b610a92565b3480156104ab57600080fd5b506102916104ba366004611356565b610be8565b3480156104cb57600080fd5b506102916104da366004611389565b610c7d565b3480156104eb57600080fd5b506102a8660aa87bee53800081565b34801561050657600080fd5b5061022c610515366004611198565b610c8e565b34801561052657600080fd5b5061022c610d97565b34801561053b57600080fd5b506101e761054a366004611405565b610dbf565b34801561055b57600080fd5b506000546101e790600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806105a157506380ac58cd60e01b6001600160e01b03198316145b806105bc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006105cf826005541190565b6105ec576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061061382610ded565b9050806001600160a01b0316836001600160a01b03160361063357600080fd5b336001600160a01b0382161461066a5761064d8133610dbf565b61066a576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146106f95760405162461bcd60e51b81526004016106f09061142f565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b610722838383610e54565b505050565b6000546001600160a01b031633146107515760405162461bcd60e51b81526004016106f09061142f565b61075b3382610fed565b50565b6000546001600160a01b031633146107885760405162461bcd60e51b81526004016106f09061142f565b6040514790339082156108fc029083906000818181858888f193505050501580156107b7573d6000803e3d6000fd5b5050565b61072283838360405180602001604052806000815250610c7d565b6000546001600160a01b031633146108005760405162461bcd60e51b81526004016106f09061142f565b60046107b782826114cc565b600254336000606461081d60055490565b10156108315761082e6007826115a2565b90505b61177061083d60055490565b10156108515761084e6001826115a2565b90505b600054600160a01b900460ff166108965760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064016106f0565b600154836108a360055490565b6108ad91906115a2565b11156108e55760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106f0565b806002546108f391906115a2565b33600090815260076020526040908190205461091a911c67ffffffffffffffff16856115a2565b11156109535760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106f0565b6107228261096183866115a2565b610fed565b60006105bc82610ded565b6000546001600160a01b0316331461099b5760405162461bcd60e51b81526004016106f09061142f565b600255565b6000816000036109c3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a135760405162461bcd60e51b81526004016106f09061142f565b6001548110610a575760405162461bcd60e51b815260206004820152601060248201526f31b0b71037b7363c9033b7903237bbb760811b60448201526064016106f0565b600155565b6000546001600160a01b03163314610a865760405162461bcd60e51b81526004016106f09061142f565b60036107b782826114cc565b6000543390600160a01b900460ff16610ad95760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064016106f0565b60015482610ae660055490565b610af091906115a2565b1115610b285760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106f0565b600254610b3690600a6115a2565b336000908152600760205260409081902054610b5d911c67ffffffffffffffff16846115a2565b1115610b965760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106f0565b610ba782660aa87bee5380006115b5565b341015610bde5760405162461bcd60e51b8152602060048201526005602482015264507269636560d81b60448201526064016106f0565b6107b78183610fed565b336001600160a01b03831603610c115760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c88848484610e54565b50505050565b6060610c9b826005541190565b610cb857604051630a14c4b560e41b815260040160405180910390fd5b600060048054610cc79061144c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf39061144c565b8015610d405780601f10610d1557610100808354040283529160200191610d40565b820191906000526020600020905b815481529060010190602001808311610d2357829003601f168201915b505050505090508051600003610d655760405180602001604052806000815250610d90565b80610d6f846110c8565b604051602001610d809291906115d4565b6040516020818303038152906040525b9392505050565b60606003604051602001610dab9190611635565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600081600554811015610e3b5760008181526006602052604081205490600160e01b82169003610e39575b80600003610d90575060001901600081815260066020526040902054610e18565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e5f82610ded565b9050836001600160a01b0316816001600160a01b031614610e925760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480610ec25750610ec28633610dbf565b80610ed557506001600160a01b03821633145b905080610ef557604051632ce44b5f60e11b815260040160405180910390fd5b8115610f1857600084815260086020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600760209081526040808320805460001901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610fa357600184016000818152600660205260408120549003610fa1576005548114610fa15760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6005548260000361101057604051622e076360e81b815260040160405180910390fd5b816000036110315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061107c5750600555505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561110557600183039250600a81066030018353600a90046110e7565b50819003601f19909101908152919050565b60006020828403121561112957600080fd5b81356001600160e01b031981168114610d9057600080fd5b60005b8381101561115c578181015183820152602001611144565b50506000910152565b6020815260008251806020840152611184816040850160208701611141565b601f01601f19169190910160400192915050565b6000602082840312156111aa57600080fd5b5035919050565b80356001600160a01b03811681146111c857600080fd5b919050565b600080604083850312156111e057600080fd5b6111e9836111b1565b946020939093013593505050565b803580151581146111c857600080fd5b60006020828403121561121957600080fd5b610d90826111f7565b60008060006060848603121561123757600080fd5b611240846111b1565b925061124e602085016111b1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561128f5761128f61125e565b604051601f8501601f19908116603f011681019082821181831017156112b7576112b761125e565b816040528093508581528686860111156112d057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156112fc57600080fd5b813567ffffffffffffffff81111561131357600080fd5b8201601f8101841361132457600080fd5b61133384823560208401611274565b949350505050565b60006020828403121561134d57600080fd5b610d90826111b1565b6000806040838503121561136957600080fd5b611372836111b1565b9150611380602084016111f7565b90509250929050565b6000806000806080858703121561139f57600080fd5b6113a8856111b1565b93506113b6602086016111b1565b925060408501359150606085013567ffffffffffffffff8111156113d957600080fd5b8501601f810187136113ea57600080fd5b6113f987823560208401611274565b91505092959194509250565b6000806040838503121561141857600080fd5b611421836111b1565b9150611380602084016111b1565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061146057607f821691505b60208210810361148057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561072257600081815260208120601f850160051c810160208610156114ad5750805b601f850160051c820191505b81811015610fe5578281556001016114b9565b815167ffffffffffffffff8111156114e6576114e661125e565b6114fa816114f4845461144c565b84611486565b602080601f83116001811461152f57600084156115175750858301515b600019600386901b1c1916600185901b178555610fe5565b600085815260208120601f198616915b8281101561155e5788860151825594840194600190910190840161153f565b508582101561157c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156105bc576105bc61158c565b60008160001904831182151516156115cf576115cf61158c565b500290565b66697066733a2f2f60c81b8152600083516115f6816007850160208801611141565b602f60f81b6007918401918201528351611617816008840160208801611141565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546116538161144c565b6001828116801561166b5760018114611684576116b7565b60ff1984168887015282151583028801860194506116b7565b8860005260208060002060005b858110156116ac5781548b82018a0152908401908201611691565b505050858389010194505b509297965050505050505056fea2646970667358221220c305356c869ad3f353b3de63dd6bb4137a5ef8234fa12314ff87ffe93ee4165f64736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101c25760003560e01c80636352211e116100f7578063a0712d6811610095578063c87b56dd11610064578063c87b56dd146104fa578063e8a3d4851461051a578063e985e9c51461052f578063eb8d24441461054f57600080fd5b8063a0712d681461048c578063a22cb4651461049f578063b88d4fde146104bf578063bf8fbbd2146104df57600080fd5b806373532802116100d1578063735328021461040b578063938e3d7b1461042b57806395d89b411461044b57806398710d1e1461047657600080fd5b80636352211e146103ab5780636d7c4a4b146103cb57806370a08231146103eb57600080fd5b806323b872dd116101645780633ccfd60b1161013e5780633ccfd60b1461034157806342842e0e1461035657806355f804b3146103765780635b70ea9f1461039657600080fd5b806323b872dd146102eb5780632fbba1151461030b57806332cb6b0c1461032b57600080fd5b8063095ea7b3116101a0578063095ea7b3146102715780630f2cdd6c1461029357806318160ddd146102b65780631d2e5a3a146102cb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc14610239575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611117565b610570565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5060408051808201909152600b81526a4b656e6e656c204170657360a81b60208201525b6040516101f39190611165565b34801561024557600080fd5b50610259610254366004611198565b6105c2565b6040516001600160a01b0390911681526020016101f3565b34801561027d57600080fd5b5061029161028c3660046111cd565b610608565b005b34801561029f57600080fd5b506102a8600a81565b6040519081526020016101f3565b3480156102c257600080fd5b506005546102a8565b3480156102d757600080fd5b506102916102e6366004611207565b6106c6565b3480156102f757600080fd5b50610291610306366004611222565b610717565b34801561031757600080fd5b50610291610326366004611198565b610727565b34801561033757600080fd5b506102a860015481565b34801561034d57600080fd5b5061029161075e565b34801561036257600080fd5b50610291610371366004611222565b6107bb565b34801561038257600080fd5b506102916103913660046112ea565b6107d6565b3480156103a257600080fd5b5061029161080c565b3480156103b757600080fd5b506102596103c6366004611198565b610966565b3480156103d757600080fd5b506102916103e6366004611198565b610971565b3480156103f757600080fd5b506102a861040636600461133b565b6109a0565b34801561041757600080fd5b50610291610426366004611198565b6109e9565b34801561043757600080fd5b506102916104463660046112ea565b610a5c565b34801561045757600080fd5b506040805180820190915260028152614b4160f01b602082015261022c565b34801561048257600080fd5b506102a860025481565b61029161049a366004611198565b610a92565b3480156104ab57600080fd5b506102916104ba366004611356565b610be8565b3480156104cb57600080fd5b506102916104da366004611389565b610c7d565b3480156104eb57600080fd5b506102a8660aa87bee53800081565b34801561050657600080fd5b5061022c610515366004611198565b610c8e565b34801561052657600080fd5b5061022c610d97565b34801561053b57600080fd5b506101e761054a366004611405565b610dbf565b34801561055b57600080fd5b506000546101e790600160a01b900460ff1681565b60006301ffc9a760e01b6001600160e01b0319831614806105a157506380ac58cd60e01b6001600160e01b03198316145b806105bc5750635b5e139f60e01b6001600160e01b03198316145b92915050565b60006105cf826005541190565b6105ec576040516333d1c03960e21b815260040160405180910390fd5b506000908152600860205260409020546001600160a01b031690565b600061061382610ded565b9050806001600160a01b0316836001600160a01b03160361063357600080fd5b336001600160a01b0382161461066a5761064d8133610dbf565b61066a576040516367d9dca160e11b815260040160405180910390fd5b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b031633146106f95760405162461bcd60e51b81526004016106f09061142f565b60405180910390fd5b60008054911515600160a01b0260ff60a01b19909216919091179055565b610722838383610e54565b505050565b6000546001600160a01b031633146107515760405162461bcd60e51b81526004016106f09061142f565b61075b3382610fed565b50565b6000546001600160a01b031633146107885760405162461bcd60e51b81526004016106f09061142f565b6040514790339082156108fc029083906000818181858888f193505050501580156107b7573d6000803e3d6000fd5b5050565b61072283838360405180602001604052806000815250610c7d565b6000546001600160a01b031633146108005760405162461bcd60e51b81526004016106f09061142f565b60046107b782826114cc565b600254336000606461081d60055490565b10156108315761082e6007826115a2565b90505b61177061083d60055490565b10156108515761084e6001826115a2565b90505b600054600160a01b900460ff166108965760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064016106f0565b600154836108a360055490565b6108ad91906115a2565b11156108e55760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106f0565b806002546108f391906115a2565b33600090815260076020526040908190205461091a911c67ffffffffffffffff16856115a2565b11156109535760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106f0565b6107228261096183866115a2565b610fed565b60006105bc82610ded565b6000546001600160a01b0316331461099b5760405162461bcd60e51b81526004016106f09061142f565b600255565b6000816000036109c3576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526007602052604090205467ffffffffffffffff1690565b6000546001600160a01b03163314610a135760405162461bcd60e51b81526004016106f09061142f565b6001548110610a575760405162461bcd60e51b815260206004820152601060248201526f31b0b71037b7363c9033b7903237bbb760811b60448201526064016106f0565b600155565b6000546001600160a01b03163314610a865760405162461bcd60e51b81526004016106f09061142f565b60036107b782826114cc565b6000543390600160a01b900460ff16610ad95760405162461bcd60e51b81526020600482015260096024820152684e6f7441637469766560b81b60448201526064016106f0565b60015482610ae660055490565b610af091906115a2565b1115610b285760405162461bcd60e51b815260206004820152600760248201526614dbdb1913dd5d60ca1b60448201526064016106f0565b600254610b3690600a6115a2565b336000908152600760205260409081902054610b5d911c67ffffffffffffffff16846115a2565b1115610b965760405162461bcd60e51b81526020600482015260086024820152671058d8d31a5b5a5d60c21b60448201526064016106f0565b610ba782660aa87bee5380006115b5565b341015610bde5760405162461bcd60e51b8152602060048201526005602482015264507269636560d81b60448201526064016106f0565b6107b78183610fed565b336001600160a01b03831603610c115760405163b06307db60e01b815260040160405180910390fd5b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610c88848484610e54565b50505050565b6060610c9b826005541190565b610cb857604051630a14c4b560e41b815260040160405180910390fd5b600060048054610cc79061144c565b80601f0160208091040260200160405190810160405280929190818152602001828054610cf39061144c565b8015610d405780601f10610d1557610100808354040283529160200191610d40565b820191906000526020600020905b815481529060010190602001808311610d2357829003601f168201915b505050505090508051600003610d655760405180602001604052806000815250610d90565b80610d6f846110c8565b604051602001610d809291906115d4565b6040516020818303038152906040525b9392505050565b60606003604051602001610dab9190611635565b604051602081830303815290604052905090565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b600081600554811015610e3b5760008181526006602052604081205490600160e01b82169003610e39575b80600003610d90575060001901600081815260066020526040902054610e18565b505b604051636f96cda160e11b815260040160405180910390fd5b6000610e5f82610ded565b9050836001600160a01b0316816001600160a01b031614610e925760405162a1148160e81b815260040160405180910390fd5b6000828152600860205260408120546001600160a01b0390811691908616331480610ec25750610ec28633610dbf565b80610ed557506001600160a01b03821633145b905080610ef557604051632ce44b5f60e11b815260040160405180910390fd5b8115610f1857600084815260086020526040902080546001600160a01b03191690555b6001600160a01b038681166000908152600760209081526040808320805460001901905592881682528282208054600101905586825260069052908120600160e11b4260a01b8817811790915584169003610fa357600184016000818152600660205260408120549003610fa1576005548114610fa15760008181526006602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b6005548260000361101057604051622e076360e81b815260040160405180910390fd5b816000036110315760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660009081526007602090815260408083208054680100000000000000018702019055838352600690915290204260a01b84176001841460e11b179055808083015b6040516001830192906001600160a01b038716906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061107c5750600555505050565b604080516080810191829052607f0190826030600a8206018353600a90045b801561110557600183039250600a81066030018353600a90046110e7565b50819003601f19909101908152919050565b60006020828403121561112957600080fd5b81356001600160e01b031981168114610d9057600080fd5b60005b8381101561115c578181015183820152602001611144565b50506000910152565b6020815260008251806020840152611184816040850160208701611141565b601f01601f19169190910160400192915050565b6000602082840312156111aa57600080fd5b5035919050565b80356001600160a01b03811681146111c857600080fd5b919050565b600080604083850312156111e057600080fd5b6111e9836111b1565b946020939093013593505050565b803580151581146111c857600080fd5b60006020828403121561121957600080fd5b610d90826111f7565b60008060006060848603121561123757600080fd5b611240846111b1565b925061124e602085016111b1565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561128f5761128f61125e565b604051601f8501601f19908116603f011681019082821181831017156112b7576112b761125e565b816040528093508581528686860111156112d057600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156112fc57600080fd5b813567ffffffffffffffff81111561131357600080fd5b8201601f8101841361132457600080fd5b61133384823560208401611274565b949350505050565b60006020828403121561134d57600080fd5b610d90826111b1565b6000806040838503121561136957600080fd5b611372836111b1565b9150611380602084016111f7565b90509250929050565b6000806000806080858703121561139f57600080fd5b6113a8856111b1565b93506113b6602086016111b1565b925060408501359150606085013567ffffffffffffffff8111156113d957600080fd5b8501601f810187136113ea57600080fd5b6113f987823560208401611274565b91505092959194509250565b6000806040838503121561141857600080fd5b611421836111b1565b9150611380602084016111b1565b6020808252600390820152624e6f2160e81b604082015260600190565b600181811c9082168061146057607f821691505b60208210810361148057634e487b7160e01b600052602260045260246000fd5b50919050565b601f82111561072257600081815260208120601f850160051c810160208610156114ad5750805b601f850160051c820191505b81811015610fe5578281556001016114b9565b815167ffffffffffffffff8111156114e6576114e661125e565b6114fa816114f4845461144c565b84611486565b602080601f83116001811461152f57600084156115175750858301515b600019600386901b1c1916600185901b178555610fe5565b600085815260208120601f198616915b8281101561155e5788860151825594840194600190910190840161153f565b508582101561157c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b808201808211156105bc576105bc61158c565b60008160001904831182151516156115cf576115cf61158c565b500290565b66697066733a2f2f60c81b8152600083516115f6816007850160208801611141565b602f60f81b6007918401918201528351611617816008840160208801611141565b64173539b7b760d91b60089290910191820152600d01949350505050565b66697066733a2f2f60c81b815260006007600084546116538161144c565b6001828116801561166b5760018114611684576116b7565b60ff1984168887015282151583028801860194506116b7565b8860005260208060002060005b858110156116ac5781548b82018a0152908401908201611691565b505050858389010194505b509297965050505050505056fea2646970667358221220c305356c869ad3f353b3de63dd6bb4137a5ef8234fa12314ff87ffe93ee4165f64736f6c63430008100033

Deployed Bytecode Sourcemap

9018:25152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14812:615;;;;;;;;;;-1:-1:-1;14812:615:0;;;;;:::i;:::-;;:::i;:::-;;;470:14:1;;463:22;445:41;;433:2;418:18;14812:615:0;;;;;;;;19565:100;;;;;;;;;;-1:-1:-1;19652:5:0;;;;;;;;;;;;-1:-1:-1;;;19652:5:0;;;;19565:100;;;;;;;:::i;21368:204::-;;;;;;;;;;-1:-1:-1;21368:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1502:32:1;;;1484:51;;1472:2;1457:18;21368:204:0;1338:203:1;20851:451:0;;;;;;;;;;-1:-1:-1;20851:451:0;;;;;:::i;:::-;;:::i;:::-;;9226:43;;;;;;;;;;;;9267:2;9226:43;;;;;2129:25:1;;;2117:2;2102:18;9226:43:0;1983:177:1;14055:300:0;;;;;;;;;;-1:-1:-1;14305:13:0;;14055:300;;12848:102;;;;;;;;;;-1:-1:-1;12848:102:0;;;;;:::i;:::-;;:::i;22254:190::-;;;;;;;;;;-1:-1:-1;22254:190:0;;;;;:::i;:::-;;:::i;33916:98::-;;;;;;;;;;-1:-1:-1;33916:98:0;;;;;:::i;:::-;;:::i;9325:33::-;;;;;;;;;;;;;;;;34022:145;;;;;;;;;;;;;:::i;22515:205::-;;;;;;;;;;-1:-1:-1;22515:205:0;;;;;:::i;:::-;;:::i;12958:92::-;;;;;;;;;;-1:-1:-1;12958:92:0;;;;;:::i;:::-;;:::i;10061:525::-;;;;;;;;;;;;;:::i;19354:144::-;;;;;;;;;;-1:-1:-1;19354:144:0;;;;;:::i;:::-;;:::i;13324:106::-;;;;;;;;;;-1:-1:-1;13324:106:0;;;;;:::i;:::-;;:::i;15491:234::-;;;;;;;;;;-1:-1:-1;15491:234:0;;;;;:::i;:::-;;:::i;13166:150::-;;;;;;;;;;-1:-1:-1;13166:150:0;;;;;:::i;:::-;;:::i;13058:100::-;;;;;;;;;;-1:-1:-1;13058:100:0;;;;;:::i;:::-;;:::i;19734:104::-;;;;;;;;;;-1:-1:-1;19823:7:0;;;;;;;;;;;;-1:-1:-1;;;19823:7:0;;;;19734:104;;9365:38;;;;;;;;;;;;;;;;9645:408;;;;;;:::i;:::-;;:::i;21644:308::-;;;;;;;;;;-1:-1:-1;21644:308:0;;;;;:::i;:::-;;:::i;22791:227::-;;;;;;;;;;-1:-1:-1;22791:227:0;;;;;:::i;:::-;;:::i;9276:42::-;;;;;;;;;;;;9307:11;9276:42;;19846:339;;;;;;;;;;-1:-1:-1;19846:339:0;;;;;:::i;:::-;;:::i;20193:134::-;;;;;;;;;;;;;:::i;22023:164::-;;;;;;;;;;-1:-1:-1;22023:164:0;;;;;:::i;:::-;;:::i;9186:31::-;;;;;;;;;;-1:-1:-1;9186:31:0;;;;-1:-1:-1;;;9186:31:0;;;;;;14812:615;14897:4;-1:-1:-1;;;;;;;;;15197:25:0;;;;:102;;-1:-1:-1;;;;;;;;;;15274:25:0;;;15197:102;:179;;;-1:-1:-1;;;;;;;;;;15351:25:0;;;15197:179;15177:199;14812:615;-1:-1:-1;;14812:615:0:o;21368:204::-;21436:7;21461:16;21469:7;23420:13;;-1:-1:-1;23410:23:0;23273:168;21461:16;21456:64;;21486:34;;-1:-1:-1;;;21486:34:0;;;;;;;;;;;21456:64;-1:-1:-1;21540:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21540:24:0;;21368:204::o;20851:451::-;20924:13;20956:27;20975:7;20956:18;:27::i;:::-;20924:61;;21006:5;-1:-1:-1;;;;;21000:11:0;:2;-1:-1:-1;;;;;21000:11:0;;20996:25;;21013:8;;;20996:25;31902:10;-1:-1:-1;;;;;21038:28:0;;;21034:175;;21086:44;21103:5;31902:10;22023:164;:::i;21086:44::-;21081:128;;21158:35;;-1:-1:-1;;;21158:35:0;;;;;;;;;;;21081:128;21221:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;21221:29:0;-1:-1:-1;;;;;21221:29:0;;;;;;;;;21266:28;;21221:24;;21266:28;;;;;;;20913:389;20851:451;;:::o;12848:102::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;;;;;;;;;12914:12:::1;:28:::0;;;::::1;;-1:-1:-1::0;;;12914:28:0::1;-1:-1:-1::0;;;;12914:28:0;;::::1;::::0;;;::::1;::::0;;12848:102::o;22254:190::-;22408:28;22418:4;22424:2;22428:7;22408:9;:28::i;:::-;22254:190;;;:::o;33916:98::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;33980:26:::1;33986:10;33998:7;33980:5;:26::i;:::-;33916:98:::0;:::o;34022:145::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;34122:37:::1;::::0;34090:21:::1;::::0;34130:10:::1;::::0;34122:37;::::1;;;::::0;34090:21;;34072:15:::1;34122:37:::0;34072:15;34122:37;34090:21;34130:10;34122:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34061:106;34022:145::o:0;22515:205::-;22673:39;22690:4;22696:2;22700:7;22673:39;;;;;;;;;;;;:16;:39::i;12958:92::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;13027:8:::1;:15;13038:4:::0;13027:8;:15:::1;:::i;10061:525::-:0;10117:19;;31902:10;10100:14;10247:3;10233:13;14305;;;14055:300;10233:13;:17;10230:39;;;10252:15;10266:1;10252:15;;:::i;:::-;;;10230:39;10296:4;10282:13;14305;;;14055:300;10282:13;:18;10279:40;;;10302:15;10316:1;10302:15;;:::i;:::-;;;10279:40;10339:12;;-1:-1:-1;;;10339:12:0;;;;10331:34;;;;-1:-1:-1;;;10331:34:0;;8844:2:1;10331:34:0;;;8826:21:1;8883:1;8863:18;;;8856:29;-1:-1:-1;;;8901:18:1;;;8894:39;8950:18;;10331:34:0;8642:332:1;10331:34:0;10410:10;;10400:6;10384:13;14305;;;14055:300;10384:13;:22;;;;:::i;:::-;:36;;10376:56;;;;-1:-1:-1;;;10376:56:0;;9181:2:1;10376:56:0;;;9163:21:1;9220:1;9200:18;;;9193:29;-1:-1:-1;;;9238:18:1;;;9231:37;9285:18;;10376:56:0;8979:330:1;10376:56:0;10509:10;10489:19;;:30;;;;:::i;:::-;10474:10;15868:7;15896:25;;;:18;:25;;10836:2;15896:25;;;;;10451:34;;15896:49;10699:13;15895:80;10451:6;:34;:::i;:::-;:68;;10443:89;;;;-1:-1:-1;;;10443:89:0;;9516:2:1;10443:89:0;;;9498:21:1;9555:1;9535:18;;;9528:29;-1:-1:-1;;;9573:18:1;;;9566:38;9621:18;;10443:89:0;9314:331:1;10443:89:0;10545:33;10551:7;10560:17;10567:10;10560:6;:17;:::i;:::-;10545:5;:33::i;19354:144::-;19418:7;19461:27;19480:7;19461:18;:27::i;13324:106::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;13396:19:::1;:26:::0;13324:106::o;15491:234::-;15555:7;15597:5;15607:1;15579:29;15575:70;;15617:28;;-1:-1:-1;;;15617:28:0;;;;;;;;;;;15575:70;-1:-1:-1;;;;;;15663:25:0;;;;;:18;:25;;;;;;10699:13;15663:54;;15491:234::o;13166:150::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;13249:10:::1;;13242:4;:17;13234:46;;;::::0;-1:-1:-1;;;13234:46:0;;9852:2:1;13234:46:0::1;::::0;::::1;9834:21:1::0;9891:2;9871:18;;;9864:30;-1:-1:-1;;;9910:18:1;;;9903:46;9966:18;;13234:46:0::1;9650:340:1::0;13234:46:0::1;13291:10;:17:::0;13166:150::o;13058:100::-;9130:6;;-1:-1:-1;;;;;9130:6:0;9138:10;9130:18;9122:34;;;;-1:-1:-1;;;9122:34:0;;;;;;;:::i;:::-;13131:12:::1;:19;13146:4:::0;13131:12;:19:::1;:::i;9645:408::-:0;9702:15;9760:12;31902:10;;-1:-1:-1;;;9760:12:0;;;;9752:34;;;;-1:-1:-1;;;9752:34:0;;8844:2:1;9752:34:0;;;8826:21:1;8883:1;8863:18;;;8856:29;-1:-1:-1;;;8901:18:1;;;8894:39;8950:18;;9752:34:0;8642:332:1;9752:34:0;9831:10;;9821:6;9805:13;14305;;;14055:300;9805:13;:22;;;;:::i;:::-;:36;;9797:56;;;;-1:-1:-1;;;9797:56:0;;9181:2:1;9797:56:0;;;9163:21:1;9220:1;9200:18;;;9193:29;-1:-1:-1;;;9238:18:1;;;9231:37;9285:18;;9797:56:0;8979:330:1;9797:56:0;9925:19;;9910:34;;9267:2;9910:34;:::i;:::-;9895:10;15868:7;15896:25;;;:18;:25;;10836:2;15896:25;;;;;9872:34;;15896:49;10699:13;15895:80;9872:6;:34;:::i;:::-;:72;;9864:93;;;;-1:-1:-1;;;9864:93:0;;9516:2:1;9864:93:0;;;9498:21:1;9555:1;9535:18;;;9528:29;-1:-1:-1;;;9573:18:1;;;9566:38;9621:18;;9864:93:0;9314:331:1;9864:93:0;9989:11;9994:6;9307:11;9989;:::i;:::-;9976:9;:24;;9968:42;;;;-1:-1:-1;;;9968:42:0;;10370:2:1;9968:42:0;;;10352:21:1;10409:1;10389:18;;;10382:29;-1:-1:-1;;;10427:18:1;;;10420:35;10472:18;;9968:42:0;10168:328:1;9968:42:0;10023:22;10029:7;10038:6;10023:5;:22::i;21644:308::-;31902:10;-1:-1:-1;;;;;21743:31:0;;;21739:61;;21783:17;;-1:-1:-1;;;21783:17:0;;;;;;;;;;;21739:61;31902:10;21813:39;;;;:18;:39;;;;;;;;-1:-1:-1;;;;;21813:49:0;;;;;;;;;;;;:60;;-1:-1:-1;;21813:60:0;;;;;;;;;;21889:55;;445:41:1;;;21813:49:0;;31902:10;21889:55;;418:18:1;21889:55:0;;;;;;;21644:308;;:::o;22791:227::-;22982:28;22992:4;22998:2;23002:7;22982:9;:28::i;:::-;22791:227;;;;:::o;19846:339::-;19919:13;19950:16;19958:7;23420:13;;-1:-1:-1;23410:23:0;23273:168;19950:16;19945:59;;19975:29;;-1:-1:-1;;;19975:29:0;;;;;;;;;;;19945:59;20015:21;20039:8;20015:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20071:7;20065:21;20090:1;20065:26;:112;;;;;;;;;;;;;;;;;20129:7;20143:18;20153:7;20143:9;:18::i;:::-;20101:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20065:112;20058:119;19846:339;-1:-1:-1;;;19846:339:0:o;20193:134::-;20237:13;20305:12;20277:41;;;;;;;;:::i;:::-;;;;;;;;;;;;;20263:56;;20193:134;:::o;22023:164::-;-1:-1:-1;;;;;22144:25:0;;;22120:4;22144:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22023:164::o;16869:1129::-;16936:7;16971;17073:13;;17066:4;:20;17062:869;;;17111:14;17128:23;;;:17;:23;;;;;;;-1:-1:-1;;;17217:23:0;;:28;;17213:699;;17736:113;17743:6;17753:1;17743:11;17736:113;;-1:-1:-1;;;17814:6:0;17796:25;;;;:17;:25;;;;;;17736:113;;17213:699;17088:843;17062:869;17959:31;;-1:-1:-1;;;17959:31:0;;;;;;;;;;;28141:2636;28278:27;28308;28327:7;28308:18;:27::i;:::-;28278:57;;28393:4;-1:-1:-1;;;;;28352:45:0;28368:19;-1:-1:-1;;;;;28352:45:0;;28348:86;;28406:28;;-1:-1:-1;;;28406:28:0;;;;;;;;;;;28348:86;28447:23;28473:24;;;:15;:24;;;;;;-1:-1:-1;;;;;28473:24:0;;;;28447:23;28536:27;;31902:10;28536:27;;:91;;-1:-1:-1;28584:43:0;28601:4;31902:10;22023:164;:::i;28584:43::-;28536:150;;;-1:-1:-1;;;;;;28648:38:0;;31902:10;28648:38;28536:150;28510:177;;28705:17;28700:66;;28731:35;;-1:-1:-1;;;28731:35:0;;;;;;;;;;;28700:66;28935:15;28917:39;28913:103;;28980:24;;;;:15;:24;;;;;28973:31;;-1:-1:-1;;;;;;28973:31:0;;;28913:103;-1:-1:-1;;;;;29383:24:0;;;;;;;:18;:24;;;;;;;;29381:26;;-1:-1:-1;;29381:26:0;;;29452:22;;;;;;;;29450:24;;-1:-1:-1;29450:24:0;;;29745:26;;;:17;:26;;;;;-1:-1:-1;;;29833:15:0;11353:3;29833:41;29791:84;;:128;;29745:174;;;30039:46;;:51;;30035:626;;30143:1;30133:11;;30111:19;30266:30;;;:17;:30;;;;;;:35;;30262:384;;30404:13;;30389:11;:28;30385:242;;30551:30;;;;:17;:30;;;;;:52;;;30385:242;30092:569;30035:626;30708:7;30704:2;-1:-1:-1;;;;;30689:27:0;30698:4;-1:-1:-1;;;;;30689:27:0;;;;;;;;;;;30727:42;28265:2512;;;28141:2636;;;:::o;26293:1594::-;26381:13;;26427:2;26434:1;26409:26;26405:58;;26444:19;;-1:-1:-1;;;26444:19:0;;;;;;;;;;;26405:58;26478:8;26490:1;26478:13;26474:44;;26500:18;;-1:-1:-1;;;26500:18:0;;;;;;;;;;;26474:44;-1:-1:-1;;;;;26995:22:0;;;;;;:18;:22;;;;10836:2;26995:22;;;:70;;27033:31;27021:44;;26995:70;;;27308:31;;;:17;:31;;;;;27401:15;11353:3;27401:41;27359:84;;-1:-1:-1;27479:13:0;;11612:3;27464:56;27359:162;27308:213;;:31;27602:23;;;27642:111;27669:40;;27694:14;;;;;-1:-1:-1;;;;;27669:40:0;;;27686:1;;27669:40;;27686:1;;27669:40;27748:3;27733:12;:18;27642:111;;-1:-1:-1;27769:13:0;:28;22254:190;;;:::o;32026:1882::-;32497:4;32491:11;;32504:3;32487:21;;32578:17;;;;33250:11;;;33127:5;33384:2;33398;33388:13;;33380:22;33250:11;33367:36;33440:2;33430:13;;33024:661;33456:4;33024:661;;;33624:1;33619:3;33615:11;33608:18;;33668:2;33662:4;33658:13;33654:2;33650:22;33645:3;33637:36;33541:2;33531:13;;33024:661;;;-1:-1:-1;33708:13:0;;;-1:-1:-1;;33817:12:0;;;33871:19;;;33817:12;32026:1882;-1:-1:-1;32026:1882:0:o;14:286:1:-;72:6;125:2;113:9;104:7;100:23;96:32;93:52;;;141:1;138;131:12;93:52;167:23;;-1:-1:-1;;;;;;219:32:1;;209:43;;199:71;;266:1;263;256:12;497:250;582:1;592:113;606:6;603:1;600:13;592:113;;;682:11;;;676:18;663:11;;;656:39;628:2;621:10;592:113;;;-1:-1:-1;;739:1:1;721:16;;714:27;497:250::o;752:396::-;901:2;890:9;883:21;864:4;933:6;927:13;976:6;971:2;960:9;956:18;949:34;992:79;1064:6;1059:2;1048:9;1044:18;1039:2;1031:6;1027:15;992:79;:::i;:::-;1132:2;1111:15;-1:-1:-1;;1107:29:1;1092:45;;;;1139:2;1088:54;;752:396;-1:-1:-1;;752:396:1:o;1153:180::-;1212:6;1265:2;1253:9;1244:7;1240:23;1236:32;1233:52;;;1281:1;1278;1271:12;1233:52;-1:-1:-1;1304:23:1;;1153:180;-1:-1:-1;1153:180:1:o;1546:173::-;1614:20;;-1:-1:-1;;;;;1663:31:1;;1653:42;;1643:70;;1709:1;1706;1699:12;1643:70;1546:173;;;:::o;1724:254::-;1792:6;1800;1853:2;1841:9;1832:7;1828:23;1824:32;1821:52;;;1869:1;1866;1859:12;1821:52;1892:29;1911:9;1892:29;:::i;:::-;1882:39;1968:2;1953:18;;;;1940:32;;-1:-1:-1;;;1724:254:1:o;2165:160::-;2230:20;;2286:13;;2279:21;2269:32;;2259:60;;2315:1;2312;2305:12;2330:180;2386:6;2439:2;2427:9;2418:7;2414:23;2410:32;2407:52;;;2455:1;2452;2445:12;2407:52;2478:26;2494:9;2478:26;:::i;2515:328::-;2592:6;2600;2608;2661:2;2649:9;2640:7;2636:23;2632:32;2629:52;;;2677:1;2674;2667:12;2629:52;2700:29;2719:9;2700:29;:::i;:::-;2690:39;;2748:38;2782:2;2771:9;2767:18;2748:38;:::i;:::-;2738:48;;2833:2;2822:9;2818:18;2805:32;2795:42;;2515:328;;;;;:::o;2848:127::-;2909:10;2904:3;2900:20;2897:1;2890:31;2940:4;2937:1;2930:15;2964:4;2961:1;2954:15;2980:632;3045:5;3075:18;3116:2;3108:6;3105:14;3102:40;;;3122:18;;:::i;:::-;3197:2;3191:9;3165:2;3251:15;;-1:-1:-1;;3247:24:1;;;3273:2;3243:33;3239:42;3227:55;;;3297:18;;;3317:22;;;3294:46;3291:72;;;3343:18;;:::i;:::-;3383:10;3379:2;3372:22;3412:6;3403:15;;3442:6;3434;3427:22;3482:3;3473:6;3468:3;3464:16;3461:25;3458:45;;;3499:1;3496;3489:12;3458:45;3549:6;3544:3;3537:4;3529:6;3525:17;3512:44;3604:1;3597:4;3588:6;3580;3576:19;3572:30;3565:41;;;;2980:632;;;;;:::o;3617:451::-;3686:6;3739:2;3727:9;3718:7;3714:23;3710:32;3707:52;;;3755:1;3752;3745:12;3707:52;3795:9;3782:23;3828:18;3820:6;3817:30;3814:50;;;3860:1;3857;3850:12;3814:50;3883:22;;3936:4;3928:13;;3924:27;-1:-1:-1;3914:55:1;;3965:1;3962;3955:12;3914:55;3988:74;4054:7;4049:2;4036:16;4031:2;4027;4023:11;3988:74;:::i;:::-;3978:84;3617:451;-1:-1:-1;;;;3617:451:1:o;4073:186::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:52;;;4201:1;4198;4191:12;4153:52;4224:29;4243:9;4224:29;:::i;4264:254::-;4329:6;4337;4390:2;4378:9;4369:7;4365:23;4361:32;4358:52;;;4406:1;4403;4396:12;4358:52;4429:29;4448:9;4429:29;:::i;:::-;4419:39;;4477:35;4508:2;4497:9;4493:18;4477:35;:::i;:::-;4467:45;;4264:254;;;;;:::o;4523:667::-;4618:6;4626;4634;4642;4695:3;4683:9;4674:7;4670:23;4666:33;4663:53;;;4712:1;4709;4702:12;4663:53;4735:29;4754:9;4735:29;:::i;:::-;4725:39;;4783:38;4817:2;4806:9;4802:18;4783:38;:::i;:::-;4773:48;;4868:2;4857:9;4853:18;4840:32;4830:42;;4923:2;4912:9;4908:18;4895:32;4950:18;4942:6;4939:30;4936:50;;;4982:1;4979;4972:12;4936:50;5005:22;;5058:4;5050:13;;5046:27;-1:-1:-1;5036:55:1;;5087:1;5084;5077:12;5036:55;5110:74;5176:7;5171:2;5158:16;5153:2;5149;5145:11;5110:74;:::i;:::-;5100:84;;;4523:667;;;;;;;:::o;5195:260::-;5263:6;5271;5324:2;5312:9;5303:7;5299:23;5295:32;5292:52;;;5340:1;5337;5330:12;5292:52;5363:29;5382:9;5363:29;:::i;:::-;5353:39;;5411:38;5445:2;5434:9;5430:18;5411:38;:::i;5460:326::-;5662:2;5644:21;;;5701:1;5681:18;;;5674:29;-1:-1:-1;;;5734:2:1;5719:18;;5712:33;5777:2;5762:18;;5460:326::o;5791:380::-;5870:1;5866:12;;;;5913;;;5934:61;;5988:4;5980:6;5976:17;5966:27;;5934:61;6041:2;6033:6;6030:14;6010:18;6007:38;6004:161;;6087:10;6082:3;6078:20;6075:1;6068:31;6122:4;6119:1;6112:15;6150:4;6147:1;6140:15;6004:161;;5791:380;;;:::o;6302:545::-;6404:2;6399:3;6396:11;6393:448;;;6440:1;6465:5;6461:2;6454:17;6510:4;6506:2;6496:19;6580:2;6568:10;6564:19;6561:1;6557:27;6551:4;6547:38;6616:4;6604:10;6601:20;6598:47;;;-1:-1:-1;6639:4:1;6598:47;6694:2;6689:3;6685:12;6682:1;6678:20;6672:4;6668:31;6658:41;;6749:82;6767:2;6760:5;6757:13;6749:82;;;6812:17;;;6793:1;6782:13;6749:82;;7023:1352;7149:3;7143:10;7176:18;7168:6;7165:30;7162:56;;;7198:18;;:::i;:::-;7227:97;7317:6;7277:38;7309:4;7303:11;7277:38;:::i;:::-;7271:4;7227:97;:::i;:::-;7379:4;;7443:2;7432:14;;7460:1;7455:663;;;;8162:1;8179:6;8176:89;;;-1:-1:-1;8231:19:1;;;8225:26;8176:89;-1:-1:-1;;6980:1:1;6976:11;;;6972:24;6968:29;6958:40;7004:1;7000:11;;;6955:57;8278:81;;7425:944;;7455:663;6249:1;6242:14;;;6286:4;6273:18;;-1:-1:-1;;7491:20:1;;;7609:236;7623:7;7620:1;7617:14;7609:236;;;7712:19;;;7706:26;7691:42;;7804:27;;;;7772:1;7760:14;;;;7639:19;;7609:236;;;7613:3;7873:6;7864:7;7861:19;7858:201;;;7934:19;;;7928:26;-1:-1:-1;;8017:1:1;8013:14;;;8029:3;8009:24;8005:37;8001:42;7986:58;7971:74;;7858:201;-1:-1:-1;;;;;8105:1:1;8089:14;;;8085:22;8072:36;;-1:-1:-1;7023:1352:1:o;8380:127::-;8441:10;8436:3;8432:20;8429:1;8422:31;8472:4;8469:1;8462:15;8496:4;8493:1;8486:15;8512:125;8577:9;;;8598:10;;;8595:36;;;8611:18;;:::i;9995:168::-;10035:7;10101:1;10097;10093:6;10089:14;10086:1;10083:21;10078:1;10071:9;10064:17;10060:45;10057:71;;;10108:18;;:::i;:::-;-1:-1:-1;10148:9:1;;9995:168::o;10501:935::-;-1:-1:-1;;;11008:3:1;11001:22;10983:3;11052:6;11046:13;11068:74;11135:6;11131:1;11126:3;11122:11;11115:4;11107:6;11103:17;11068:74;:::i;:::-;-1:-1:-1;;;11201:1:1;11161:16;;;11193:10;;;11186:23;11234:13;;11256:75;11234:13;11318:1;11310:10;;11303:4;11291:17;;11256:75;:::i;:::-;-1:-1:-1;;;11391:1:1;11350:17;;;;11383:10;;;11376:27;11427:2;11419:11;;10501:935;-1:-1:-1;;;;10501:935:1:o;11441:1030::-;-1:-1:-1;;;11695:3:1;11688:22;11670:3;11729:1;11750;11783:6;11777:13;11813:36;11839:9;11813:36;:::i;:::-;11868:1;11885:18;;;11912:151;;;;12077:1;12072:374;;;;11878:568;;11912:151;-1:-1:-1;;11954:24:1;;11940:12;;;11933:46;12031:14;;12024:22;12012:35;;12003:45;;11999:54;;;-1:-1:-1;11912:151:1;;12072:374;12103:6;12100:1;12093:17;12133:4;12178:2;12175:1;12165:16;12203:1;12217:174;12231:6;12228:1;12225:13;12217:174;;;12318:14;;12300:11;;;12296:20;;12289:44;12361:16;;;;12246:10;;12217:174;;;12221:3;;;12433:2;12424:6;12419:3;12415:16;12411:25;12404:32;;11878:568;-1:-1:-1;12462:3:1;;11441:1030;-1:-1:-1;;;;;;;11441:1030:1:o

Swarm Source

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