APE Price: $1.09 (-4.39%)

FellowApes (FA)

Overview

TokenID

1079

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
FellowApes

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 5 : FellowApes.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract FellowApes is ERC721A, Ownable {
    constructor(address initialOwner)
        ERC721A("FellowApes", "FA")
        Ownable(initialOwner)
    {}

    uint256 private constant _collectionSize = 2222;
    uint256 private constant _invalidPrice = 69420694206942069420;

    uint256 private maxDevMint = 42;
    uint256 private freeMintPerWallet = 1;
    uint256 private paidMintPerWallet = 4;
    uint256[] private stagesMintCounts = [269, 689, 1379, 1779, 2222];
    uint256[] private stagesMintPrices = [
        0,
        420000000000000000,
        690000000000000000,
        990000000000000000,
        1234000000000000000
    ];

    string private _activeBaseURI = "";
    uint256 private _mintedTokens = 0;
    uint256 private _currentStage = 0; //max is 4

    /////External Public Functions/////

    function mint(uint256 quantity) external payable {
        require(quantity != 0 && quantity <= mintsLeft(), "Q");

        //require(quantity == 1 || _mintedTokens + quantity <= stagesMintCounts[_currentStage], "SQ");

        uint256 totalPrice = mintPrice(quantity);

        require(msg.value >= totalPrice, "P");
        
        _mint(msg.sender, quantity);

        _mintedTokens = _mintedTokens + quantity;

        if (_currentStage == 0) {
            _setAux(msg.sender, 1);
        }

        _currentStage = 0;
        for (uint256 i = 1; i < 5; i++) {
            if (
                _mintedTokens > stagesMintCounts[i - 1] &&
                _mintedTokens <= stagesMintCounts[i]
            ) _currentStage = i;
        }

        _refundExtra(totalPrice);
    }

    /////External OnlyOwner Functions/////

    function devMint(uint256 quantity) external onlyOwner {
        require(_numberMinted(msg.sender) + quantity < maxDevMint, "DMF");

        _mint(msg.sender, quantity);

        _mintedTokens = _mintedTokens + quantity;
    }

    function setBaseURI(string calldata newURI) external onlyOwner {
        _activeBaseURI = newURI;
    }

    function withdrawMoney() external onlyOwner {
        require(address(this).balance > 0, "W");

        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "WF");
    }

    /////Internal Functions/////

    function _refundExtra(uint256 price) internal {
        if (msg.value > price) {
            payable(msg.sender).transfer(msg.value - price);
        }
    }

    /////Properties/////

    function mintPrice(uint256 quantity)
        public
        view
        override
        returns (uint256)
    {
        if (quantity == 0) return _invalidPrice;

        if (_currentStage == 0) {
            if (quantity == 1 && _getAux(msg.sender) == 0) return 0;
            else return _invalidPrice;
        }

        //return (quantity - _freeMintsLeft()) * (stagesMintPrices[_currentStage]);

        uint256 price = (quantity - _freeMintsLeft()) *
            (stagesMintPrices[_currentStage]);

        if (_getStage(_mintedTokens + quantity) != _currentStage) {
            //should never be true for last stage
            uint256 nextStageMints = (_mintedTokens + quantity) -
                stagesMintCounts[_currentStage];
            uint256 thisStageMints = quantity - nextStageMints;
            price =
                (thisStageMints * stagesMintPrices[_currentStage]) +
                (nextStageMints * stagesMintPrices[_currentStage + 1]);
            price -= _freeMintsLeft() != 0
                ? stagesMintPrices[
                    _currentStage + (thisStageMints != 0 ? 0 : 1)
                ]
                : 0;
        }

        return price;
        // price (_mintedTokens + quantity) - stagesMintCounts[_currentStage]
    }

    function mintsLeft() public view returns (uint256) {
        if (_currentStage == 0) {
            if (_getAux(msg.sender) == 0) return 1;
            else return 0;
        }
        uint totalMints = freeMintPerWallet + paidMintPerWallet;
        if (_postFreeStageMinted() <= totalMints)
                return totalMints - _postFreeStageMinted();
        else 
                return _invalidPrice;  
    }

    function currentStage() public view returns (uint256) {
        return _currentStage;
    }

    function currentStagePrice() public view returns (uint256) {
        return stagesMintPrices[_currentStage];
    }

    function maxMintPerWallet() public view virtual override returns (uint256) {
        //where is it used??
        return paidMintPerWallet; //1 free mint
    }

    function _getStage(uint256 count) internal view returns (uint256) {
        uint256 stage = 0;
        for (uint256 i = 1; i < 5; i++) {
            if (
                count > (i != 0 ? stagesMintCounts[i - 1] : 0) &&
                count <= stagesMintCounts[i]
            ) {
                stage = i;
                break;
            }
        }
        return stage;
    }

    function _freeMintsLeft() internal view returns (uint256) {
        //doesn't count the stage 0 free mint available to all

        return _currentStage != 0 && _postFreeStageMinted() == 0 ? 1 : 0;
    }

    function _postFreeStageMinted() internal view returns (uint256) {
        //number of NFTs the user has minted after statge 0 (free stage)
        return _numberMinted(msg.sender) - (_getAux(msg.sender) == 0 ? 0 : 1);
    }

    function collectionSize() public view virtual returns (uint256) {
        return _collectionSize;
    }

    function _sequentialUpTo() internal view override returns (uint256) {
        return collectionSize();
    }

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

File 2 of 5 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

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

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 5 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    // The amount of tokens minted above `_sequentialUpTo()`.
    // We call these spot mints (i.e. non-sequential mints).
    uint256 private _spotMinted;

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

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

        if (_sequentialUpTo() < _startTokenId()) _revert(SequentialUpToTooSmall.selector);
    }

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

    /**
     * @dev Returns the starting token ID for sequential mints.
     *
     * Override this function to change the starting token ID for sequential mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 1;
    }

    /**
     * @dev Returns the maximum token ID (inclusive) for sequential mints.
     *
     * Override this function to return a value less than 2**256 - 1,
     * but greater than `_startTokenId()`, to enable spot (non-sequential) mints.
     *
     * Note: The value returned must never change after any tokens have been minted.
     */
    function _sequentialUpTo() internal view virtual returns (uint256) {
        return type(uint256).max;
    }

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

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256 result) {
        // Counter underflow is impossible as `_burnCounter` cannot be incremented
        // more than `_currentIndex + _spotMinted - _startTokenId()` times.
        unchecked {
            // With spot minting, the intermediate `result` can be temporarily negative,
            // and the computation must be unchecked.
            result = _currentIndex - _burnCounter - _startTokenId();
            if (_sequentialUpTo() != type(uint256).max) result += _spotMinted;
        }
    }

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

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

    /**
     * @dev Returns the total number of tokens that are spot-minted.
     */
    function _totalSpotMinted() internal view virtual returns (uint256) {
        return _spotMinted;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function mintPrice(uint256 quantity) public view virtual returns (uint256) {
        return quantity * 0;
    }

    function maxMintPerWallet() public view virtual returns (uint256) {
        return 1;
    }
    
    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

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

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

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

    /**
     * @dev Returns whether the ownership slot at `index` is initialized.
     * An uninitialized slot does not necessarily mean that the slot has no owner.
     */
    function _ownershipIsInitialized(uint256 index) internal view virtual returns (bool) {
        return _packedOwnerships[index] != 0;
    }

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

    /**
     * @dev Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256 packed) {
        if (_startTokenId() <= tokenId) {
            packed = _packedOwnerships[tokenId];

            if (tokenId > _sequentialUpTo()) {
                if (_packedOwnershipExists(packed)) return packed;
                _revert(OwnerQueryForNonexistentToken.selector);
            }

            // If the data at the starting slot does not exist, start the scan.
            if (packed == uint256(0)) {
                if (tokenId >= _currentIndex) _revert(OwnerQueryForNonexistentToken.selector);
                // Invariant:
                // There will always be an initialized ownership slot
                // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                // before an unintialized ownership slot
                // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                // Hence, `tokenId` will not underflow.
                //
                // We can directly compare the packed value.
                // If the address is zero, packed will be zero.
                for (;;) {
                    unchecked {
                        packed = _packedOwnerships[--tokenId];
                    }
                    if (packed == uint256(0)) continue;
                    if (packed & _BITMASK_BURNED == uint256(0)) return packed;
                    // Otherwise, the token is burned, and we must revert.
                    // This handles the case of batch burned tokens, where only the burned bit
                    // of the starting slot is set, and remaining slots are left uninitialized.
                    _revert(OwnerQueryForNonexistentToken.selector);
                }
            }
            // Otherwise, the data exists and we can skip the scan.
            // This is possible because we have already achieved the target condition.
            // This saves 2143 gas on transfers of initialized tokens.
            // If the token is not burned, return `packed`. Otherwise, revert.
            if (packed & _BITMASK_BURNED == uint256(0)) return packed;
        }
        _revert(OwnerQueryForNonexistentToken.selector);
    }

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

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

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

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

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account. See {ERC721A-_approve}.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     */
    function approve(address to, uint256 tokenId) public payable virtual override {
        _approve(to, tokenId, true);
    }

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

        return _tokenApprovals[tokenId].value;
    }

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

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

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool result) {
        if (_startTokenId() <= tokenId) {
            if (tokenId > _sequentialUpTo()) return _packedOwnershipExists(_packedOwnerships[tokenId]);

            if (tokenId < _currentIndex) {
                uint256 packed;
                while ((packed = _packedOwnerships[tokenId]) == uint256(0)) --tokenId;
                result = packed & _BITMASK_BURNED == uint256(0);
            }
        }
    }

    /**
     * @dev Returns whether `packed` represents a token that exists.
     */
    function _packedOwnershipExists(uint256 packed) private pure returns (bool result) {
        assembly {
            // The following is equivalent to `owner != address(0) && burned == false`.
            // Symbolically tested.
            result := gt(and(packed, _BITMASK_ADDRESS), and(packed, _BITMASK_BURNED))
        }
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        uint256 approvedAddressValue,
        uint256 ownerMasked,
        uint256 msgSenderMasked
    ) private pure returns (bool result) {
        assembly {
            result := or(eq(msgSenderMasked, ownerMasked), eq(msgSenderMasked, approvedAddressValue))
        }
    }

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

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

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

        if (uint160(prevOwnershipPacked) != fromMasked) _revert(TransferFromIncorrectOwner.selector);

        (uint256 approvedAddressSlot, uint256 approvedAddressValue) = _getApprovedSlotAndValue(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddressValue, fromMasked, uint160(_msgSenderERC721A())))
            if (!isApprovedForAll(from, _msgSenderERC721A())) _revert(TransferCallerNotOwnerNorApproved.selector);

        _beforeTokenTransfers(from, to, tokenId, 1);

        assembly {
            if approvedAddressValue {
                sstore(approvedAddressSlot, 0) // Equivalent to `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] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == uint256(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] == uint256(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;
                    }
                }
            }
        }

        // Mask to the lower 160 bits, in case the upper bits somehow aren't clean.
        uint256 toMasked = uint160(to);
        assembly {
            // Emit the `Transfer` event.
            log4(
                0, // Start of data (0, since no data).
                0, // End of data (0, since no data).
                _TRANSFER_EVENT_SIGNATURE, // Signature.
                fromMasked, // `from`.
                toMasked, // `to`.
                tokenId // `tokenId`.
            )
        }
        if (toMasked == uint256(0)) _revert(TransferToZeroAddress.selector);

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

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

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

    /**
     * @dev Equivalent to `_batchTransferFrom(from, to, tokenIds)`.
     */
    function _batchTransferFrom(
        address from,
        address to,
        uint256[] memory tokenIds
    ) internal virtual {
        _batchTransferFrom(address(0), from, to, tokenIds);
    }

    /**
     * @dev Transfers `tokenIds` in batch from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenIds` tokens must be owned by `from`.
     * - `tokenIds` must be strictly ascending.
     * - If `by` is not `from`, it must be approved to move these tokens
     * by either {approve} or {setApprovalForAll}.
     *
     * `by` is the address that to check token approval for.
     * If token approval check is not needed, pass in `address(0)` for `by`.
     *
     * Emits a {Transfer} event for each transfer.
     */
    function _batchTransferFrom(
        address by,
        address from,
        address to,
        uint256[] memory tokenIds
    ) internal virtual {
        uint256 byMasked = uint160(by);
        uint256 fromMasked = uint160(from);
        uint256 toMasked = uint160(to);
        // Disallow transfer to zero address.
        if (toMasked == uint256(0)) _revert(TransferToZeroAddress.selector);
        // Whether `by` may transfer the tokens.
        bool mayTransfer = _orERC721A(byMasked == uint256(0), byMasked == fromMasked) || isApprovedForAll(from, by);

        // Early return if `tokenIds` is empty.
        if (tokenIds.length == uint256(0)) return;
        // The next `tokenId` to be minted (i.e. `_nextTokenId()`).
        uint256 end = _currentIndex;
        // Pointer to start and end (exclusive) of `tokenIds`.
        (uint256 ptr, uint256 ptrEnd) = _mdataERC721A(tokenIds);

        uint256 prevTokenId;
        uint256 prevOwnershipPacked;
        unchecked {
            do {
                uint256 tokenId = _mloadERC721A(ptr);
                uint256 miniBatchStart = tokenId;
                // Revert `tokenId` is out of bounds.
                if (_orERC721A(tokenId < _startTokenId(), end <= tokenId))
                    _revert(OwnerQueryForNonexistentToken.selector);
                // Revert if `tokenIds` is not strictly ascending.
                if (prevOwnershipPacked != 0)
                    if (tokenId <= prevTokenId) _revert(TokenIdsNotStrictlyAscending.selector);
                // Scan backwards for an initialized packed ownership slot.
                // ERC721A's invariant guarantees that there will always be an initialized slot as long as
                // the start of the backwards scan falls within `[_startTokenId() .. _nextTokenId())`.
                for (uint256 j = tokenId; (prevOwnershipPacked = _packedOwnerships[j]) == uint256(0); ) --j;
                // If the initialized slot is burned, revert.
                if (prevOwnershipPacked & _BITMASK_BURNED != 0) _revert(OwnerQueryForNonexistentToken.selector);
                // Check that `tokenId` is owned by `from`.
                if (uint160(prevOwnershipPacked) != fromMasked) _revert(TransferFromIncorrectOwner.selector);

                do {
                    (uint256 approvedAddressSlot, uint256 approvedAddressValue) = _getApprovedSlotAndValue(tokenId);
                    _beforeTokenTransfers(address(uint160(fromMasked)), address(uint160(toMasked)), tokenId, 1);
                    // Revert if the sender is not authorized to transfer the token.
                    if (!mayTransfer)
                        if (byMasked != approvedAddressValue) _revert(TransferCallerNotOwnerNorApproved.selector);
                    assembly {
                        if approvedAddressValue {
                            sstore(approvedAddressSlot, 0) // Equivalent to `delete _tokenApprovals[tokenId]`.
                        }
                        // Emit the `Transfer` event.
                        log4(0, 0, _TRANSFER_EVENT_SIGNATURE, fromMasked, toMasked, tokenId)
                    }

                    if (_mloadERC721A(ptr += 0x20) != ++tokenId) break;
                    if (ptr == ptrEnd) break;
                } while (_packedOwnerships[tokenId] == uint256(0));

                // Updates tokenId:
                // - `address` to the next owner.
                // - `startTimestamp` to the timestamp of transferring.
                // - `burned` to `false`.
                // - `nextInitialized` to `false`, as it is optional.
                _packedOwnerships[miniBatchStart] = _packOwnershipData(
                    address(uint160(toMasked)),
                    _nextExtraData(address(uint160(fromMasked)), address(uint160(toMasked)), prevOwnershipPacked)
                );
                uint256 miniBatchLength = tokenId - miniBatchStart;
                // Update the address data.
                _packedAddressData[address(uint160(fromMasked))] -= miniBatchLength;
                _packedAddressData[address(uint160(toMasked))] += miniBatchLength;
                // Initialize the next slot if needed.
                if (tokenId != end)
                    if (_packedOwnerships[tokenId] == uint256(0)) _packedOwnerships[tokenId] = prevOwnershipPacked;
                // Perform the after hook for the batch.
                _afterTokenTransfers(
                    address(uint160(fromMasked)),
                    address(uint160(toMasked)),
                    miniBatchStart,
                    miniBatchLength
                );
                // Set the `prevTokenId` for checking that the `tokenIds` is strictly ascending.
                prevTokenId = tokenId - 1;
            } while (ptr != ptrEnd);
        }
    }

    /**
     * @dev Safely transfers `tokenIds` in batch from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenIds` tokens must be owned by `from`.
     * - If `by` is not `from`, it must be approved to move these tokens
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called for each transferred token.
     *
     * `by` is the address that to check token approval for.
     * If token approval check is not needed, pass in `address(0)` for `by`.
     *
     * Emits a {Transfer} event for each transfer.
     */
    function _safeBatchTransferFrom(
        address by,
        address from,
        address to,
        uint256[] memory tokenIds,
        bytes memory _data
    ) internal virtual {
        _batchTransferFrom(by, from, to, tokenIds);

        unchecked {
            if (to.code.length != 0) {
                for ((uint256 ptr, uint256 ptrEnd) = _mdataERC721A(tokenIds); ptr != ptrEnd; ptr += 0x20) {
                    if (!_checkContractOnERC721Received(from, to, _mloadERC721A(ptr), _data)) {
                        _revert(TransferToNonERC721ReceiverImplementer.selector);
                    }
                }
            }
        }
    }

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

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

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

    function _mint(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (quantity == uint256(0)) _revert(MintZeroQuantity.selector);

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Mask to the lower 160 bits, in case the upper bits somehow aren't clean.
            uint256 toMasked = uint160(to);

            if (toMasked == uint256(0)) _revert(MintToZeroAddress.selector);

            uint256 end = startTokenId + quantity;
            uint256 tokenId = startTokenId;

            if (end - 1 > _sequentialUpTo()) _revert(SequentialMintExceedsLimit.selector);

            do {
                assembly {
                    // Emit the `Transfer` event.
                    log4(
                        0, // Start of data (0, since no data).
                        0, // End of data (0, since no data).
                        _TRANSFER_EVENT_SIGNATURE, // Signature.
                        0, // `address(0)`.
                        toMasked, // `to`.
                        tokenId // `tokenId`.
                    )
                }
                // The `!=` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
            } while (++tokenId != end);

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


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

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

    /**
     * @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:
     *
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        bool approvalCheck
    ) internal virtual {
        address owner = ownerOf(tokenId);

        if (approvalCheck && _msgSenderERC721A() != owner)
            if (!isApprovedForAll(owner, _msgSenderERC721A())) {
                _revert(ApprovalCallerNotOwnerNorApproved.selector);
            }

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

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

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

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

        uint256 fromMasked = uint160(prevOwnershipPacked);
        address from = address(uint160(fromMasked));

        (uint256 approvedAddressSlot, uint256 approvedAddressValue) = _getApprovedSlotAndValue(tokenId);

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

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

        assembly {
            if approvedAddressValue {
                sstore(approvedAddressSlot, 0) // Equivalent to `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] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == uint256(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] == uint256(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 + _spotMinted` times.
        unchecked {
            _burnCounter++;
        }
    }

    /**
     * @dev Destroys `tokenIds`.
     * Approvals are not cleared when tokenIds are burned.
     *
     * Requirements:
     *
     * - `tokenIds` must exist.
     * - `tokenIds` must be strictly ascending.
     * - `by` must be approved to burn these tokens by either {approve} or {setApprovalForAll}.
     *
     * `by` is the address that to check token approval for.
     * If token approval check is not needed, pass in `address(0)` for `by`.
     *
     * Emits a {Transfer} event for each token burned.
     */
    function _batchBurn(address by, uint256[] memory tokenIds) internal virtual {
        // Early return if `tokenIds` is empty.
        if (tokenIds.length == uint256(0)) return;
        // The next `tokenId` to be minted (i.e. `_nextTokenId()`).
        uint256 end = _currentIndex;
        // Pointer to start and end (exclusive) of `tokenIds`.
        (uint256 ptr, uint256 ptrEnd) = _mdataERC721A(tokenIds);

        uint256 prevOwnershipPacked;
        address prevTokenOwner;
        uint256 prevTokenId;
        bool mayBurn;
        unchecked {
            do {
                uint256 tokenId = _mloadERC721A(ptr);
                uint256 miniBatchStart = tokenId;
                // Revert `tokenId` is out of bounds.
                if (_orERC721A(tokenId < _startTokenId(), end <= tokenId))
                    _revert(OwnerQueryForNonexistentToken.selector);
                // Revert if `tokenIds` is not strictly ascending.
                if (prevOwnershipPacked != 0)
                    if (tokenId <= prevTokenId) _revert(TokenIdsNotStrictlyAscending.selector);
                // Scan backwards for an initialized packed ownership slot.
                // ERC721A's invariant guarantees that there will always be an initialized slot as long as
                // the start of the backwards scan falls within `[_startTokenId() .. _nextTokenId())`.
                for (uint256 j = tokenId; (prevOwnershipPacked = _packedOwnerships[j]) == uint256(0); ) --j;
                // If the initialized slot is burned, revert.
                if (prevOwnershipPacked & _BITMASK_BURNED != 0) _revert(OwnerQueryForNonexistentToken.selector);

                address tokenOwner = address(uint160(prevOwnershipPacked));
                if (tokenOwner != prevTokenOwner) {
                    prevTokenOwner = tokenOwner;
                    mayBurn = _orERC721A(by == address(0), tokenOwner == by) || isApprovedForAll(tokenOwner, by);
                }

                do {
                    (uint256 approvedAddressSlot, uint256 approvedAddressValue) = _getApprovedSlotAndValue(tokenId);
                    _beforeTokenTransfers(tokenOwner, address(0), tokenId, 1);
                    // Revert if the sender is not authorized to transfer the token.
                    if (!mayBurn)
                        if (uint160(by) != approvedAddressValue) _revert(TransferCallerNotOwnerNorApproved.selector);
                    assembly {
                        if approvedAddressValue {
                            sstore(approvedAddressSlot, 0) // Equivalent to `delete _tokenApprovals[tokenId]`.
                        }
                        // Emit the `Transfer` event.
                        log4(0, 0, _TRANSFER_EVENT_SIGNATURE, and(_BITMASK_ADDRESS, tokenOwner), 0, tokenId)
                    }
                    if (_mloadERC721A(ptr += 0x20) != ++tokenId) break;
                    if (ptr == ptrEnd) break;
                } while (_packedOwnerships[tokenId] == uint256(0));

                // Updates tokenId:
                // - `address` to the same `tokenOwner`.
                // - `startTimestamp` to the timestamp of transferring.
                // - `burned` to `true`.
                // - `nextInitialized` to `false`, as it is optional.
                _packedOwnerships[miniBatchStart] = _packOwnershipData(
                    tokenOwner,
                    _BITMASK_BURNED | _nextExtraData(tokenOwner, address(0), prevOwnershipPacked)
                );
                uint256 miniBatchLength = tokenId - miniBatchStart;
                // Update the address data.
                _packedAddressData[tokenOwner] += (miniBatchLength << _BITPOS_NUMBER_BURNED) - miniBatchLength;
                // Initialize the next slot if needed.
                if (tokenId != end)
                    if (_packedOwnerships[tokenId] == uint256(0)) _packedOwnerships[tokenId] = prevOwnershipPacked;
                // Perform the after hook for the batch.
                _afterTokenTransfers(tokenOwner, address(0), miniBatchStart, miniBatchLength);
                // Set the `prevTokenId` for checking that the `tokenIds` is strictly ascending.
                prevTokenId = tokenId - 1;
            } while (ptr != ptrEnd);
            // Increment the overall burn counter.
            _burnCounter += tokenIds.length;
        }
    }

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

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

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

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

    // =============================================================
    //                        PRIVATE HELPERS
    // =============================================================

    /**
     * @dev Returns a memory pointer to the start of `a`'s data.
     */
    function _mdataERC721A(uint256[] memory a) private pure returns (uint256 start, uint256 end) {
        assembly {
            start := add(a, 0x20)
            end := add(start, shl(5, mload(a)))
        }
    }

    /**
     * @dev Returns the uint256 at `p` in memory.
     */
    function _mloadERC721A(uint256 p) private pure returns (uint256 result) {
        assembly {
            result := mload(p)
        }
    }

    /**
     * @dev Branchless boolean or.
     */
    function _orERC721A(bool a, bool b) private pure returns (bool result) {
        assembly {
            result := or(iszero(iszero(a)), iszero(iszero(b)))
        }
    }

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

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

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

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

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

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

    /**
     * @dev For more efficient reverts.
     */
    function _revert(bytes4 errorSelector) internal pure {
        assembly {
            mstore(0x00, errorSelector)
            revert(0x00, 0x04)
        }
    }
}

File 4 of 5 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * The `tokenIds` must be strictly ascending.
     */
    error TokenIdsNotStrictlyAscending();

    /**
     * `_sequentialUpTo()` must be greater than `_startTokenId()`.
     */
    error SequentialUpToTooSmall();

    /**
     * The `tokenId` of a sequential mint exceeds `_sequentialUpTo()`.
     */
    error SequentialMintExceedsLimit();

    /**
     * Spot minting requires a `tokenId` greater than `_sequentialUpTo()`.
     */
    error SpotMintTokenIdTooSmall();

    /**
     * Cannot mint over a token that already exists.
     */
    error TokenAlreadyExists();

    /**
     * The feature is not compatible with spot mints.
     */
    error NotCompatibleWithSpotMints();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 5 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  },
  "remappings": []
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NotCompatibleWithSpotMints","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"SequentialMintExceedsLimit","type":"error"},{"inputs":[],"name":"SequentialUpToTooSmall","type":"error"},{"inputs":[],"name":"SpotMintTokenIdTooSmall","type":"error"},{"inputs":[],"name":"TokenAlreadyExists","type":"error"},{"inputs":[],"name":"TokenIdsNotStrictlyAscending","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStagePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","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":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintsLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"result","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052602a600a556001600b556004600c556040518060a0016040528061010d61ffff1681526020016102b161ffff16815260200161056361ffff1681526020016106f361ffff1681526020016108ae61ffff16815250600d906005610068929190610397565b506040518060a001604052805f67ffffffffffffffff1681526020016705d423c655aa000067ffffffffffffffff1681526020016709935f581f05000067ffffffffffffffff168152602001670dbd2fc137a3000067ffffffffffffffff1681526020016711200c7644d5000067ffffffffffffffff16815250600e9060056100f29291906103e8565b5060405180602001604052805f815250600f90816101109190610694565b505f6010555f601155348015610124575f80fd5b506040516135ab3803806135ab833981810160405281019061014691906107c1565b806040518060400160405280600a81526020017f46656c6c6f7741706573000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f464100000000000000000000000000000000000000000000000000000000000081525081600290816101c29190610694565b5080600390816101d29190610694565b506101e16102a760201b60201c565b5f819055506101f46102a760201b60201c565b6102026102af60201b60201c565b101561021f5761021e63fed8210f60e01b6102c360201b60201c565b5b50505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610291575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161028891906107fb565b60405180910390fd5b6102a0816102cb60201b60201c565b5050610814565b5f6001905090565b5f6102be61038e60201b60201c565b905090565b805f5260045ffd5b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f6108ae905090565b828054828255905f5260205f209081019282156103d7579160200282015b828111156103d6578251829061ffff169055916020019190600101906103b5565b5b5090506103e4919061043f565b5090565b828054828255905f5260205f2090810192821561042e579160200282015b8281111561042d578251829067ffffffffffffffff16905591602001919060010190610406565b5b50905061043b919061043f565b5090565b5b80821115610456575f815f905550600101610440565b5090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806104d557607f821691505b6020821081036104e8576104e7610491565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f6008830261054a7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261050f565b610554868361050f565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61059861059361058e8461056c565b610575565b61056c565b9050919050565b5f819050919050565b6105b18361057e565b6105c56105bd8261059f565b84845461051b565b825550505050565b5f90565b6105d96105cd565b6105e48184846105a8565b505050565b5b81811015610607576105fc5f826105d1565b6001810190506105ea565b5050565b601f82111561064c5761061d816104ee565b61062684610500565b81016020851015610635578190505b61064961064185610500565b8301826105e9565b50505b505050565b5f82821c905092915050565b5f61066c5f1984600802610651565b1980831691505092915050565b5f610684838361065d565b9150826002028217905092915050565b61069d8261045a565b67ffffffffffffffff8111156106b6576106b5610464565b5b6106c082546104be565b6106cb82828561060b565b5f60209050601f8311600181146106fc575f84156106ea578287015190505b6106f48582610679565b86555061075b565b601f19841661070a866104ee565b5f5b828110156107315784890151825560018201915060208501945060208101905061070c565b8683101561074e578489015161074a601f89168261065d565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61079082610767565b9050919050565b6107a081610786565b81146107aa575f80fd5b50565b5f815190506107bb81610797565b92915050565b5f602082840312156107d6576107d5610763565b5b5f6107e3848285016107ad565b91505092915050565b6107f581610786565b82525050565b5f60208201905061080e5f8301846107ec565b92915050565b612d8a806108215f395ff3fe60806040526004361061019b575f3560e01c806370a08231116100eb578063ac44600211610089578063c87b56dd11610063578063c87b56dd14610539578063e6a72acf14610575578063e985e9c5146105b1578063f2fde38b146105ed5761019b565b8063ac446002146104dd578063b228d925146104f3578063b88d4fde1461051d5761019b565b806395d89b41116100c557806395d89b41146104455780639d5561e11461046f578063a0712d6814610499578063a22cb465146104b55761019b565b806370a08231146103c9578063715018a6146104055780638da5cb5b1461041b5761019b565b8063375a069a11610158578063558ae4f711610132578063558ae4f71461031157806355f804b31461033b5780635bf5d54c146103635780636352211e1461038d5761019b565b8063375a069a146102a357806342842e0e146102cb57806345c0f533146102e75761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b31461024157806318160ddd1461025d57806323b872dd14610287575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c09190612031565b610615565b6040516101d29190612076565b60405180910390f35b3480156101e6575f80fd5b506101ef6106a6565b6040516101fc91906120ff565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612152565b610736565b60405161023891906121bc565b60405180910390f35b61025b600480360381019061025691906121ff565b61078f565b005b348015610268575f80fd5b5061027161079f565b60405161027e919061224c565b60405180910390f35b6102a1600480360381019061029c9190612265565b6107ea565b005b3480156102ae575f80fd5b506102c960048036038101906102c49190612152565b610a6b565b005b6102e560048036038101906102e09190612265565b610aeb565b005b3480156102f2575f80fd5b506102fb610b0a565b604051610308919061224c565b60405180910390f35b34801561031c575f80fd5b50610325610b13565b604051610332919061224c565b60405180910390f35b348015610346575f80fd5b50610361600480360381019061035c9190612316565b610b38565b005b34801561036e575f80fd5b50610377610b56565b604051610384919061224c565b60405180910390f35b348015610398575f80fd5b506103b360048036038101906103ae9190612152565b610b5f565b6040516103c091906121bc565b60405180910390f35b3480156103d4575f80fd5b506103ef60048036038101906103ea9190612361565b610b70565b6040516103fc919061224c565b60405180910390f35b348015610410575f80fd5b50610419610c04565b005b348015610426575f80fd5b5061042f610c17565b60405161043c91906121bc565b60405180910390f35b348015610450575f80fd5b50610459610c3f565b60405161046691906120ff565b60405180910390f35b34801561047a575f80fd5b50610483610ccf565b604051610490919061224c565b60405180910390f35b6104b360048036038101906104ae9190612152565b610d50565b005b3480156104c0575f80fd5b506104db60048036038101906104d691906123b6565b610ebd565b005b3480156104e8575f80fd5b506104f1610fc3565b005b3480156104fe575f80fd5b506105076110b8565b604051610514919061224c565b60405180910390f35b6105376004803603810190610532919061251c565b6110c1565b005b348015610544575f80fd5b5061055f600480360381019061055a9190612152565b611112565b60405161056c91906120ff565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612152565b61118c565b6040516105a8919061224c565b60405180910390f35b3480156105bc575f80fd5b506105d760048036038101906105d2919061259c565b61136a565b6040516105e49190612076565b60405180910390f35b3480156105f8575f80fd5b50610613600480360381019061060e9190612361565b6113f8565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106b590612607565b80601f01602080910402602001604051908101604052809291908181526020018280546106e190612607565b801561072c5780601f106107035761010080835404028352916020019161072c565b820191905f5260205f20905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b5f6107408261147c565b6107555761075463cf4700e460e01b61151f565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61079b82826001611527565b5050565b5f6107a8611651565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107da611659565b146107e757600854810190505b90565b5f6107f482611667565b90505f8473ffffffffffffffffffffffffffffffffffffffff169050808273ffffffffffffffffffffffffffffffffffffffff161461083e5761083d63a114810060e01b61151f565b5b5f8061084985611776565b91509150610875818461085a611799565b73ffffffffffffffffffffffffffffffffffffffff166117a0565b6108a05761088a87610885611799565b61136a565b61089f5761089e6359c896be60e01b61151f565b5b5b6108ad87878760016117b1565b80156108b7575f82555b60055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061097f8661095b8989886117b7565b7c0200000000000000000000000000000000000000000000000000000000176117de565b60045f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008516036109fb575f6001860190505f60045f8381526020019081526020015f2054036109f9575f5481146109f8578460045f8381526020019081526020015f20819055505b5b505b5f8673ffffffffffffffffffffffffffffffffffffffff1690508581857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610a5457610a5363ea553b3460e01b61151f565b5b610a618888886001611808565b5050505050505050565b610a7361180e565b600a5481610a8033611895565b610a8a9190612664565b10610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906126e1565b60405180910390fd5b610ad433826118e9565b80601054610ae29190612664565b60108190555050565b610b0583838360405180602001604052805f8152506110c1565b505050565b5f6108ae905090565b5f600e60115481548110610b2a57610b296126ff565b5b905f5260205f200154905090565b610b4061180e565b8181600f9182610b519291906128d3565b505050565b5f601154905090565b5f610b6982611667565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb557610bb4638f4eb60460e01b61151f565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610c0c61180e565b610c155f611a47565b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c4e90612607565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7a90612607565b8015610cc55780601f10610c9c57610100808354040283529160200191610cc5565b820191905f5260205f20905b815481529060010190602001808311610ca857829003601f168201915b5050505050905090565b5f8060115403610d03575f610ce333611b0a565b67ffffffffffffffff1603610cfb5760019050610d4d565b5f9050610d4d565b5f600c54600b54610d149190612664565b905080610d1f611b54565b11610d3f57610d2c611b54565b81610d3791906129a0565b915050610d4d565b6803c367d99319ccc2ac9150505b90565b5f8114158015610d675750610d63610ccf565b8111155b610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612a1d565b60405180910390fd5b5f610db08261118c565b905080341015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90612a85565b60405180910390fd5b610dff33836118e9565b81601054610e0d9190612664565b6010819055505f60115403610e2857610e27336001611b92565b5b5f6011819055505f600190505b6005811015610eaf57600d600182610e4d91906129a0565b81548110610e5e57610e5d6126ff565b5b905f5260205f200154601054118015610e955750600d8181548110610e8657610e856126ff565b5b905f5260205f20015460105411155b15610ea257806011819055505b8080600101915050610e35565b50610eb981611c42565b5050565b8060075f610ec9611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f72611799565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fb79190612076565b60405180910390a35050565b610fcb61180e565b5f471161100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490612aed565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161103290612b38565b5f6040518083038185875af1925050503d805f811461106c576040519150601f19603f3d011682016040523d82523d5f602084013e611071565b606091505b50509050806110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90612b96565b60405180910390fd5b50565b5f600c54905090565b6110cc8484846107ea565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461110c576110f684848484611c9d565b61110b5761110a63d1a57ed660e01b61151f565b5b5b50505050565b606061111d8261147c565b6111325761113163a14c4b5060e01b61151f565b5b5f61113b611dc7565b90505f8151036111595760405180602001604052805f815250611184565b8061116384611e57565b604051602001611174929190612bee565b6040516020818303038152906040525b915050919050565b5f8082036111a5576803c367d99319ccc2ac9050611365565b5f601154036111ed576001821480156111cf57505f6111c333611b0a565b67ffffffffffffffff16145b156111dc575f9050611365565b6803c367d99319ccc2ac9050611365565b5f600e60115481548110611204576112036126ff565b5b905f5260205f200154611215611ea6565b8461122091906129a0565b61122a9190612c11565b9050601154611245846010546112409190612664565b611ed4565b14611360575f600d60115481548110611261576112606126ff565b5b905f5260205f200154846010546112789190612664565b61128291906129a0565b90505f818561129191906129a0565b9050600e60016011546112a49190612664565b815481106112b5576112b46126ff565b5b905f5260205f200154826112c99190612c11565b600e601154815481106112df576112de6126ff565b5b905f5260205f200154826112f39190612c11565b6112fd9190612664565b92505f611308611ea6565b03611313575f611350565b600e5f8203611323576001611325565b5f5b60ff166011546113359190612664565b81548110611346576113456126ff565b5b905f5260205f2001545b8361135b91906129a0565b925050505b809150505b919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61140061180e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611470575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161146791906121bc565b60405180910390fd5b61147981611a47565b50565b5f81611486611651565b1161151957611493611659565b8211156114bb576114b460045f8481526020019081526020015f2054611f6d565b905061151a565b5f54821015611518575f5b5f60045f8581526020019081526020015f2054915081036114f257826114eb90612c52565b92506114c6565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f61153183610b5f565b905081801561157357508073ffffffffffffffffffffffffffffffffffffffff1661155a611799565b73ffffffffffffffffffffffffffffffffffffffff1614155b1561159f5761158981611584611799565b61136a565b61159e5761159d63cfb3b94260e01b61151f565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b5f6001905090565b5f611662610b0a565b905090565b5f81611671611651565b116117605760045f8381526020019081526020015f20549050611692611659565b8211156116b7576116a281611f6d565b611771576116b663df2d9b4260e01b61151f565b5b5f8103611738575f5482106116d7576116d663df2d9b4260e01b61151f565b5b5b60045f836001900393508381526020019081526020015f205490505f810315611733575f7c0100000000000000000000000000000000000000000000000000000000821603156117715761173263df2d9b4260e01b61151f565b5b6116d8565b5f7c010000000000000000000000000000000000000000000000000000000082160315611771575b61177063df2d9b4260e01b61151f565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f8382148383141790509392505050565b50505050565b5f8060e883901c905060e86117cd868684611fad565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611816611fb5565b73ffffffffffffffffffffffffffffffffffffffff16611834610c17565b73ffffffffffffffffffffffffffffffffffffffff161461189357611857611fb5565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161188a91906121bc565b60405180910390fd5b565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805490505f82036119065761190563b562e8dd60e01b61151f565b5b6119125f8483856117b1565b611930836119215f865f6117b7565b61192a85611fbc565b176117de565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f8373ffffffffffffffffffffffffffffffffffffffff1690505f81036119cb576119ca632e07630060e01b61151f565b5b5f83830190505f8390506119dd611659565b6001830311156119f8576119f76381647e3a60e01b61151f565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a48181600101915081036119f957815f81905550505050611a425f848385611808565b505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60c060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c9050919050565b5f80611b5f33611b0a565b67ffffffffffffffff1614611b75576001611b77565b5f5b60ff16611b8333611895565b611b8d91906129a0565b905090565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f82905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff83161791508160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505050565b80341115611c9a573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611c7091906129a0565b90811502906040515f60405180830381858888f19350505050158015611c98573d5f803e3d5ffd5b505b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cc2611799565b8786866040518563ffffffff1660e01b8152600401611ce49493929190612ccb565b6020604051808303815f875af1925050508015611d1f57506040513d601f19601f82011682018060405250810190611d1c9190612d29565b60015b611d74573d805f8114611d4d576040519150601f19603f3d011682016040523d82523d5f602084013e611d52565b606091505b505f815103611d6c57611d6b63d1a57ed660e01b61151f565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611dd690612607565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0290612607565b8015611e4d5780601f10611e2457610100808354040283529160200191611e4d565b820191905f5260205f20905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b600115611e9157600184039350600a81066030018453600a8104905080611e6f575b50828103602084039350808452505050919050565b5f8060115414158015611ebf57505f611ebd611b54565b145b611ec9575f611ecc565b60015b60ff16905090565b5f805f90505f600190505b6005811015611f63575f8103611ef5575f611f1f565b600d600182611f0491906129a0565b81548110611f1557611f146126ff565b5b905f5260205f2001545b84118015611f495750600d8181548110611f3c57611f3b6126ff565b5b905f5260205f2001548411155b15611f5657809150611f63565b8080600101915050611edf565b5080915050919050565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61201081611fdc565b811461201a575f80fd5b50565b5f8135905061202b81612007565b92915050565b5f6020828403121561204657612045611fd4565b5b5f6120538482850161201d565b91505092915050565b5f8115159050919050565b6120708161205c565b82525050565b5f6020820190506120895f830184612067565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6120d18261208f565b6120db8185612099565b93506120eb8185602086016120a9565b6120f4816120b7565b840191505092915050565b5f6020820190508181035f83015261211781846120c7565b905092915050565b5f819050919050565b6121318161211f565b811461213b575f80fd5b50565b5f8135905061214c81612128565b92915050565b5f6020828403121561216757612166611fd4565b5b5f6121748482850161213e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6121a68261217d565b9050919050565b6121b68161219c565b82525050565b5f6020820190506121cf5f8301846121ad565b92915050565b6121de8161219c565b81146121e8575f80fd5b50565b5f813590506121f9816121d5565b92915050565b5f806040838503121561221557612214611fd4565b5b5f612222858286016121eb565b92505060206122338582860161213e565b9150509250929050565b6122468161211f565b82525050565b5f60208201905061225f5f83018461223d565b92915050565b5f805f6060848603121561227c5761227b611fd4565b5b5f612289868287016121eb565b935050602061229a868287016121eb565b92505060406122ab8682870161213e565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126122d6576122d56122b5565b5b8235905067ffffffffffffffff8111156122f3576122f26122b9565b5b60208301915083600182028301111561230f5761230e6122bd565b5b9250929050565b5f806020838503121561232c5761232b611fd4565b5b5f83013567ffffffffffffffff81111561234957612348611fd8565b5b612355858286016122c1565b92509250509250929050565b5f6020828403121561237657612375611fd4565b5b5f612383848285016121eb565b91505092915050565b6123958161205c565b811461239f575f80fd5b50565b5f813590506123b08161238c565b92915050565b5f80604083850312156123cc576123cb611fd4565b5b5f6123d9858286016121eb565b92505060206123ea858286016123a2565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61242e826120b7565b810181811067ffffffffffffffff8211171561244d5761244c6123f8565b5b80604052505050565b5f61245f611fcb565b905061246b8282612425565b919050565b5f67ffffffffffffffff82111561248a576124896123f8565b5b612493826120b7565b9050602081019050919050565b828183375f83830152505050565b5f6124c06124bb84612470565b612456565b9050828152602081018484840111156124dc576124db6123f4565b5b6124e78482856124a0565b509392505050565b5f82601f830112612503576125026122b5565b5b81356125138482602086016124ae565b91505092915050565b5f805f806080858703121561253457612533611fd4565b5b5f612541878288016121eb565b9450506020612552878288016121eb565b93505060406125638782880161213e565b925050606085013567ffffffffffffffff81111561258457612583611fd8565b5b612590878288016124ef565b91505092959194509250565b5f80604083850312156125b2576125b1611fd4565b5b5f6125bf858286016121eb565b92505060206125d0858286016121eb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061261e57607f821691505b602082108103612631576126306125da565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61266e8261211f565b91506126798361211f565b925082820190508082111561269157612690612637565b5b92915050565b7f444d4600000000000000000000000000000000000000000000000000000000005f82015250565b5f6126cb600383612099565b91506126d682612697565b602082019050919050565b5f6020820190508181035f8301526126f8816126bf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026127927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612757565b61279c8683612757565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6127d76127d26127cd8461211f565b6127b4565b61211f565b9050919050565b5f819050919050565b6127f0836127bd565b6128046127fc826127de565b848454612763565b825550505050565b5f90565b61281861280c565b6128238184846127e7565b505050565b5b818110156128465761283b5f82612810565b600181019050612829565b5050565b601f82111561288b5761285c81612736565b61286584612748565b81016020851015612874578190505b61288861288085612748565b830182612828565b50505b505050565b5f82821c905092915050565b5f6128ab5f1984600802612890565b1980831691505092915050565b5f6128c3838361289c565b9150826002028217905092915050565b6128dd838361272c565b67ffffffffffffffff8111156128f6576128f56123f8565b5b6129008254612607565b61290b82828561284a565b5f601f831160018114612938575f8415612926578287013590505b61293085826128b8565b865550612997565b601f19841661294686612736565b5f5b8281101561296d57848901358255600182019150602085019450602081019050612948565b8683101561298a5784890135612986601f89168261289c565b8355505b6001600288020188555050505b50505050505050565b5f6129aa8261211f565b91506129b58361211f565b92508282039050818111156129cd576129cc612637565b5b92915050565b7f51000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612a07600183612099565b9150612a12826129d3565b602082019050919050565b5f6020820190508181035f830152612a34816129fb565b9050919050565b7f50000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612a6f600183612099565b9150612a7a82612a3b565b602082019050919050565b5f6020820190508181035f830152612a9c81612a63565b9050919050565b7f57000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612ad7600183612099565b9150612ae282612aa3565b602082019050919050565b5f6020820190508181035f830152612b0481612acb565b9050919050565b5f81905092915050565b50565b5f612b235f83612b0b565b9150612b2e82612b15565b5f82019050919050565b5f612b4282612b18565b9150819050919050565b7f57460000000000000000000000000000000000000000000000000000000000005f82015250565b5f612b80600283612099565b9150612b8b82612b4c565b602082019050919050565b5f6020820190508181035f830152612bad81612b74565b9050919050565b5f81905092915050565b5f612bc88261208f565b612bd28185612bb4565b9350612be28185602086016120a9565b80840191505092915050565b5f612bf98285612bbe565b9150612c058284612bbe565b91508190509392505050565b5f612c1b8261211f565b9150612c268361211f565b9250828202612c348161211f565b91508282048414831517612c4b57612c4a612637565b5b5092915050565b5f612c5c8261211f565b91505f8203612c6e57612c6d612637565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612c9d82612c79565b612ca78185612c83565b9350612cb78185602086016120a9565b612cc0816120b7565b840191505092915050565b5f608082019050612cde5f8301876121ad565b612ceb60208301866121ad565b612cf8604083018561223d565b8181036060830152612d0a8184612c93565b905095945050505050565b5f81519050612d2381612007565b92915050565b5f60208284031215612d3e57612d3d611fd4565b5b5f612d4b84828501612d15565b9150509291505056fea264697066735822122088118f7a3020178db0593efd90dc4f7c80be0aa1c8153ee08bb0b4c84aabd64264736f6c634300081a0033000000000000000000000000089b271523b1d358ea09eb7d0086fe60a70ee4f2

Deployed Bytecode

0x60806040526004361061019b575f3560e01c806370a08231116100eb578063ac44600211610089578063c87b56dd11610063578063c87b56dd14610539578063e6a72acf14610575578063e985e9c5146105b1578063f2fde38b146105ed5761019b565b8063ac446002146104dd578063b228d925146104f3578063b88d4fde1461051d5761019b565b806395d89b41116100c557806395d89b41146104455780639d5561e11461046f578063a0712d6814610499578063a22cb465146104b55761019b565b806370a08231146103c9578063715018a6146104055780638da5cb5b1461041b5761019b565b8063375a069a11610158578063558ae4f711610132578063558ae4f71461031157806355f804b31461033b5780635bf5d54c146103635780636352211e1461038d5761019b565b8063375a069a146102a357806342842e0e146102cb57806345c0f533146102e75761019b565b806301ffc9a71461019f57806306fdde03146101db578063081812fc14610205578063095ea7b31461024157806318160ddd1461025d57806323b872dd14610287575b5f80fd5b3480156101aa575f80fd5b506101c560048036038101906101c09190612031565b610615565b6040516101d29190612076565b60405180910390f35b3480156101e6575f80fd5b506101ef6106a6565b6040516101fc91906120ff565b60405180910390f35b348015610210575f80fd5b5061022b60048036038101906102269190612152565b610736565b60405161023891906121bc565b60405180910390f35b61025b600480360381019061025691906121ff565b61078f565b005b348015610268575f80fd5b5061027161079f565b60405161027e919061224c565b60405180910390f35b6102a1600480360381019061029c9190612265565b6107ea565b005b3480156102ae575f80fd5b506102c960048036038101906102c49190612152565b610a6b565b005b6102e560048036038101906102e09190612265565b610aeb565b005b3480156102f2575f80fd5b506102fb610b0a565b604051610308919061224c565b60405180910390f35b34801561031c575f80fd5b50610325610b13565b604051610332919061224c565b60405180910390f35b348015610346575f80fd5b50610361600480360381019061035c9190612316565b610b38565b005b34801561036e575f80fd5b50610377610b56565b604051610384919061224c565b60405180910390f35b348015610398575f80fd5b506103b360048036038101906103ae9190612152565b610b5f565b6040516103c091906121bc565b60405180910390f35b3480156103d4575f80fd5b506103ef60048036038101906103ea9190612361565b610b70565b6040516103fc919061224c565b60405180910390f35b348015610410575f80fd5b50610419610c04565b005b348015610426575f80fd5b5061042f610c17565b60405161043c91906121bc565b60405180910390f35b348015610450575f80fd5b50610459610c3f565b60405161046691906120ff565b60405180910390f35b34801561047a575f80fd5b50610483610ccf565b604051610490919061224c565b60405180910390f35b6104b360048036038101906104ae9190612152565b610d50565b005b3480156104c0575f80fd5b506104db60048036038101906104d691906123b6565b610ebd565b005b3480156104e8575f80fd5b506104f1610fc3565b005b3480156104fe575f80fd5b506105076110b8565b604051610514919061224c565b60405180910390f35b6105376004803603810190610532919061251c565b6110c1565b005b348015610544575f80fd5b5061055f600480360381019061055a9190612152565b611112565b60405161056c91906120ff565b60405180910390f35b348015610580575f80fd5b5061059b60048036038101906105969190612152565b61118c565b6040516105a8919061224c565b60405180910390f35b3480156105bc575f80fd5b506105d760048036038101906105d2919061259c565b61136a565b6040516105e49190612076565b60405180910390f35b3480156105f8575f80fd5b50610613600480360381019061060e9190612361565b6113f8565b005b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061066f57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061069f5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546106b590612607565b80601f01602080910402602001604051908101604052809291908181526020018280546106e190612607565b801561072c5780601f106107035761010080835404028352916020019161072c565b820191905f5260205f20905b81548152906001019060200180831161070f57829003601f168201915b5050505050905090565b5f6107408261147c565b6107555761075463cf4700e460e01b61151f565b5b60065f8381526020019081526020015f205f015f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b61079b82826001611527565b5050565b5f6107a8611651565b6001545f54030390507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6107da611659565b146107e757600854810190505b90565b5f6107f482611667565b90505f8473ffffffffffffffffffffffffffffffffffffffff169050808273ffffffffffffffffffffffffffffffffffffffff161461083e5761083d63a114810060e01b61151f565b5b5f8061084985611776565b91509150610875818461085a611799565b73ffffffffffffffffffffffffffffffffffffffff166117a0565b6108a05761088a87610885611799565b61136a565b61089f5761089e6359c896be60e01b61151f565b5b5b6108ad87878760016117b1565b80156108b7575f82555b60055f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8154600190039190508190555060055f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f81546001019190508190555061097f8661095b8989886117b7565b7c0200000000000000000000000000000000000000000000000000000000176117de565b60045f8781526020019081526020015f20819055505f7c02000000000000000000000000000000000000000000000000000000008516036109fb575f6001860190505f60045f8381526020019081526020015f2054036109f9575f5481146109f8578460045f8381526020019081526020015f20819055505b5b505b5f8673ffffffffffffffffffffffffffffffffffffffff1690508581857fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a45f8103610a5457610a5363ea553b3460e01b61151f565b5b610a618888886001611808565b5050505050505050565b610a7361180e565b600a5481610a8033611895565b610a8a9190612664565b10610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac1906126e1565b60405180910390fd5b610ad433826118e9565b80601054610ae29190612664565b60108190555050565b610b0583838360405180602001604052805f8152506110c1565b505050565b5f6108ae905090565b5f600e60115481548110610b2a57610b296126ff565b5b905f5260205f200154905090565b610b4061180e565b8181600f9182610b519291906128d3565b505050565b5f601154905090565b5f610b6982611667565b9050919050565b5f8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb557610bb4638f4eb60460e01b61151f565b5b67ffffffffffffffff60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054169050919050565b610c0c61180e565b610c155f611a47565b565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060038054610c4e90612607565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7a90612607565b8015610cc55780601f10610c9c57610100808354040283529160200191610cc5565b820191905f5260205f20905b815481529060010190602001808311610ca857829003601f168201915b5050505050905090565b5f8060115403610d03575f610ce333611b0a565b67ffffffffffffffff1603610cfb5760019050610d4d565b5f9050610d4d565b5f600c54600b54610d149190612664565b905080610d1f611b54565b11610d3f57610d2c611b54565b81610d3791906129a0565b915050610d4d565b6803c367d99319ccc2ac9150505b90565b5f8114158015610d675750610d63610ccf565b8111155b610da6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9d90612a1d565b60405180910390fd5b5f610db08261118c565b905080341015610df5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dec90612a85565b60405180910390fd5b610dff33836118e9565b81601054610e0d9190612664565b6010819055505f60115403610e2857610e27336001611b92565b5b5f6011819055505f600190505b6005811015610eaf57600d600182610e4d91906129a0565b81548110610e5e57610e5d6126ff565b5b905f5260205f200154601054118015610e955750600d8181548110610e8657610e856126ff565b5b905f5260205f20015460105411155b15610ea257806011819055505b8080600101915050610e35565b50610eb981611c42565b5050565b8060075f610ec9611799565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f72611799565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fb79190612076565b60405180910390a35050565b610fcb61180e565b5f471161100d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100490612aed565b60405180910390fd5b5f3373ffffffffffffffffffffffffffffffffffffffff164760405161103290612b38565b5f6040518083038185875af1925050503d805f811461106c576040519150601f19603f3d011682016040523d82523d5f602084013e611071565b606091505b50509050806110b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ac90612b96565b60405180910390fd5b50565b5f600c54905090565b6110cc8484846107ea565b5f8373ffffffffffffffffffffffffffffffffffffffff163b1461110c576110f684848484611c9d565b61110b5761110a63d1a57ed660e01b61151f565b5b5b50505050565b606061111d8261147c565b6111325761113163a14c4b5060e01b61151f565b5b5f61113b611dc7565b90505f8151036111595760405180602001604052805f815250611184565b8061116384611e57565b604051602001611174929190612bee565b6040516020818303038152906040525b915050919050565b5f8082036111a5576803c367d99319ccc2ac9050611365565b5f601154036111ed576001821480156111cf57505f6111c333611b0a565b67ffffffffffffffff16145b156111dc575f9050611365565b6803c367d99319ccc2ac9050611365565b5f600e60115481548110611204576112036126ff565b5b905f5260205f200154611215611ea6565b8461122091906129a0565b61122a9190612c11565b9050601154611245846010546112409190612664565b611ed4565b14611360575f600d60115481548110611261576112606126ff565b5b905f5260205f200154846010546112789190612664565b61128291906129a0565b90505f818561129191906129a0565b9050600e60016011546112a49190612664565b815481106112b5576112b46126ff565b5b905f5260205f200154826112c99190612c11565b600e601154815481106112df576112de6126ff565b5b905f5260205f200154826112f39190612c11565b6112fd9190612664565b92505f611308611ea6565b03611313575f611350565b600e5f8203611323576001611325565b5f5b60ff166011546113359190612664565b81548110611346576113456126ff565b5b905f5260205f2001545b8361135b91906129a0565b925050505b809150505b919050565b5f60075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16905092915050565b61140061180e565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611470575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161146791906121bc565b60405180910390fd5b61147981611a47565b50565b5f81611486611651565b1161151957611493611659565b8211156114bb576114b460045f8481526020019081526020015f2054611f6d565b905061151a565b5f54821015611518575f5b5f60045f8581526020019081526020015f2054915081036114f257826114eb90612c52565b92506114c6565b5f7c01000000000000000000000000000000000000000000000000000000008216149150505b5b5b919050565b805f5260045ffd5b5f61153183610b5f565b905081801561157357508073ffffffffffffffffffffffffffffffffffffffff1661155a611799565b73ffffffffffffffffffffffffffffffffffffffff1614155b1561159f5761158981611584611799565b61136a565b61159e5761159d63cfb3b94260e01b61151f565b5b5b8360065f8581526020019081526020015f205f015f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550828473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a450505050565b5f6001905090565b5f611662610b0a565b905090565b5f81611671611651565b116117605760045f8381526020019081526020015f20549050611692611659565b8211156116b7576116a281611f6d565b611771576116b663df2d9b4260e01b61151f565b5b5f8103611738575f5482106116d7576116d663df2d9b4260e01b61151f565b5b5b60045f836001900393508381526020019081526020015f205490505f810315611733575f7c0100000000000000000000000000000000000000000000000000000000821603156117715761173263df2d9b4260e01b61151f565b5b6116d8565b5f7c010000000000000000000000000000000000000000000000000000000082160315611771575b61177063df2d9b4260e01b61151f565b5b919050565b5f805f60065f8581526020019081526020015f2090508092508254915050915091565b5f33905090565b5f8382148383141790509392505050565b50505050565b5f8060e883901c905060e86117cd868684611fad565b62ffffff16901b9150509392505050565b5f73ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611816611fb5565b73ffffffffffffffffffffffffffffffffffffffff16611834610c17565b73ffffffffffffffffffffffffffffffffffffffff161461189357611857611fb5565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161188a91906121bc565b60405180910390fd5b565b5f67ffffffffffffffff604060055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c169050919050565b5f805490505f82036119065761190563b562e8dd60e01b61151f565b5b6119125f8483856117b1565b611930836119215f865f6117b7565b61192a85611fbc565b176117de565b60045f8381526020019081526020015f2081905550600160406001901b17820260055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505f8373ffffffffffffffffffffffffffffffffffffffff1690505f81036119cb576119ca632e07630060e01b61151f565b5b5f83830190505f8390506119dd611659565b6001830311156119f8576119f76381647e3a60e01b61151f565b5b5b80835f7fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef5f80a48181600101915081036119f957815f81905550505050611a425f848385611808565b505050565b5f60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f60c060055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054901c9050919050565b5f80611b5f33611b0a565b67ffffffffffffffff1614611b75576001611b77565b5f5b60ff16611b8333611895565b611b8d91906129a0565b905090565b5f60055f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f82905060c081901b77ffffffffffffffffffffffffffffffffffffffffffffffff83161791508160055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555050505050565b80341115611c9a573373ffffffffffffffffffffffffffffffffffffffff166108fc8234611c7091906129a0565b90811502906040515f60405180830381858888f19350505050158015611c98573d5f803e3d5ffd5b505b50565b5f8373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611cc2611799565b8786866040518563ffffffff1660e01b8152600401611ce49493929190612ccb565b6020604051808303815f875af1925050508015611d1f57506040513d601f19601f82011682018060405250810190611d1c9190612d29565b60015b611d74573d805f8114611d4d576040519150601f19603f3d011682016040523d82523d5f602084013e611d52565b606091505b505f815103611d6c57611d6b63d1a57ed660e01b61151f565b5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600f8054611dd690612607565b80601f0160208091040260200160405190810160405280929190818152602001828054611e0290612607565b8015611e4d5780601f10611e2457610100808354040283529160200191611e4d565b820191905f5260205f20905b815481529060010190602001808311611e3057829003601f168201915b5050505050905090565b606060a060405101806040526020810391505f825281835b600115611e9157600184039350600a81066030018453600a8104905080611e6f575b50828103602084039350808452505050919050565b5f8060115414158015611ebf57505f611ebd611b54565b145b611ec9575f611ecc565b60015b60ff16905090565b5f805f90505f600190505b6005811015611f63575f8103611ef5575f611f1f565b600d600182611f0491906129a0565b81548110611f1557611f146126ff565b5b905f5260205f2001545b84118015611f495750600d8181548110611f3c57611f3b6126ff565b5b905f5260205f2001548411155b15611f5657809150611f63565b8080600101915050611edf565b5080915050919050565b5f7c0100000000000000000000000000000000000000000000000000000000821673ffffffffffffffffffffffffffffffffffffffff8316119050919050565b5f9392505050565b5f33905090565b5f6001821460e11b9050919050565b5f604051905090565b5f80fd5b5f80fd5b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61201081611fdc565b811461201a575f80fd5b50565b5f8135905061202b81612007565b92915050565b5f6020828403121561204657612045611fd4565b5b5f6120538482850161201d565b91505092915050565b5f8115159050919050565b6120708161205c565b82525050565b5f6020820190506120895f830184612067565b92915050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f6120d18261208f565b6120db8185612099565b93506120eb8185602086016120a9565b6120f4816120b7565b840191505092915050565b5f6020820190508181035f83015261211781846120c7565b905092915050565b5f819050919050565b6121318161211f565b811461213b575f80fd5b50565b5f8135905061214c81612128565b92915050565b5f6020828403121561216757612166611fd4565b5b5f6121748482850161213e565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6121a68261217d565b9050919050565b6121b68161219c565b82525050565b5f6020820190506121cf5f8301846121ad565b92915050565b6121de8161219c565b81146121e8575f80fd5b50565b5f813590506121f9816121d5565b92915050565b5f806040838503121561221557612214611fd4565b5b5f612222858286016121eb565b92505060206122338582860161213e565b9150509250929050565b6122468161211f565b82525050565b5f60208201905061225f5f83018461223d565b92915050565b5f805f6060848603121561227c5761227b611fd4565b5b5f612289868287016121eb565b935050602061229a868287016121eb565b92505060406122ab8682870161213e565b9150509250925092565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126122d6576122d56122b5565b5b8235905067ffffffffffffffff8111156122f3576122f26122b9565b5b60208301915083600182028301111561230f5761230e6122bd565b5b9250929050565b5f806020838503121561232c5761232b611fd4565b5b5f83013567ffffffffffffffff81111561234957612348611fd8565b5b612355858286016122c1565b92509250509250929050565b5f6020828403121561237657612375611fd4565b5b5f612383848285016121eb565b91505092915050565b6123958161205c565b811461239f575f80fd5b50565b5f813590506123b08161238c565b92915050565b5f80604083850312156123cc576123cb611fd4565b5b5f6123d9858286016121eb565b92505060206123ea858286016123a2565b9150509250929050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61242e826120b7565b810181811067ffffffffffffffff8211171561244d5761244c6123f8565b5b80604052505050565b5f61245f611fcb565b905061246b8282612425565b919050565b5f67ffffffffffffffff82111561248a576124896123f8565b5b612493826120b7565b9050602081019050919050565b828183375f83830152505050565b5f6124c06124bb84612470565b612456565b9050828152602081018484840111156124dc576124db6123f4565b5b6124e78482856124a0565b509392505050565b5f82601f830112612503576125026122b5565b5b81356125138482602086016124ae565b91505092915050565b5f805f806080858703121561253457612533611fd4565b5b5f612541878288016121eb565b9450506020612552878288016121eb565b93505060406125638782880161213e565b925050606085013567ffffffffffffffff81111561258457612583611fd8565b5b612590878288016124ef565b91505092959194509250565b5f80604083850312156125b2576125b1611fd4565b5b5f6125bf858286016121eb565b92505060206125d0858286016121eb565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061261e57607f821691505b602082108103612631576126306125da565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61266e8261211f565b91506126798361211f565b925082820190508082111561269157612690612637565b5b92915050565b7f444d4600000000000000000000000000000000000000000000000000000000005f82015250565b5f6126cb600383612099565b91506126d682612697565b602082019050919050565b5f6020820190508181035f8301526126f8816126bf565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f82905092915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026127927fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612757565b61279c8683612757565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6127d76127d26127cd8461211f565b6127b4565b61211f565b9050919050565b5f819050919050565b6127f0836127bd565b6128046127fc826127de565b848454612763565b825550505050565b5f90565b61281861280c565b6128238184846127e7565b505050565b5b818110156128465761283b5f82612810565b600181019050612829565b5050565b601f82111561288b5761285c81612736565b61286584612748565b81016020851015612874578190505b61288861288085612748565b830182612828565b50505b505050565b5f82821c905092915050565b5f6128ab5f1984600802612890565b1980831691505092915050565b5f6128c3838361289c565b9150826002028217905092915050565b6128dd838361272c565b67ffffffffffffffff8111156128f6576128f56123f8565b5b6129008254612607565b61290b82828561284a565b5f601f831160018114612938575f8415612926578287013590505b61293085826128b8565b865550612997565b601f19841661294686612736565b5f5b8281101561296d57848901358255600182019150602085019450602081019050612948565b8683101561298a5784890135612986601f89168261289c565b8355505b6001600288020188555050505b50505050505050565b5f6129aa8261211f565b91506129b58361211f565b92508282039050818111156129cd576129cc612637565b5b92915050565b7f51000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612a07600183612099565b9150612a12826129d3565b602082019050919050565b5f6020820190508181035f830152612a34816129fb565b9050919050565b7f50000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612a6f600183612099565b9150612a7a82612a3b565b602082019050919050565b5f6020820190508181035f830152612a9c81612a63565b9050919050565b7f57000000000000000000000000000000000000000000000000000000000000005f82015250565b5f612ad7600183612099565b9150612ae282612aa3565b602082019050919050565b5f6020820190508181035f830152612b0481612acb565b9050919050565b5f81905092915050565b50565b5f612b235f83612b0b565b9150612b2e82612b15565b5f82019050919050565b5f612b4282612b18565b9150819050919050565b7f57460000000000000000000000000000000000000000000000000000000000005f82015250565b5f612b80600283612099565b9150612b8b82612b4c565b602082019050919050565b5f6020820190508181035f830152612bad81612b74565b9050919050565b5f81905092915050565b5f612bc88261208f565b612bd28185612bb4565b9350612be28185602086016120a9565b80840191505092915050565b5f612bf98285612bbe565b9150612c058284612bbe565b91508190509392505050565b5f612c1b8261211f565b9150612c268361211f565b9250828202612c348161211f565b91508282048414831517612c4b57612c4a612637565b5b5092915050565b5f612c5c8261211f565b91505f8203612c6e57612c6d612637565b5b600182039050919050565b5f81519050919050565b5f82825260208201905092915050565b5f612c9d82612c79565b612ca78185612c83565b9350612cb78185602086016120a9565b612cc0816120b7565b840191505092915050565b5f608082019050612cde5f8301876121ad565b612ceb60208301866121ad565b612cf8604083018561223d565b8181036060830152612d0a8184612c93565b905095945050505050565b5f81519050612d2381612007565b92915050565b5f60208284031215612d3e57612d3d611fd4565b5b5f612d4b84828501612d15565b9150509291505056fea264697066735822122088118f7a3020178db0593efd90dc4f7c80be0aa1c8153ee08bb0b4c84aabd64264736f6c634300081a0033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000089b271523b1d358ea09eb7d0086fe60a70ee4f2

-----Decoded View---------------
Arg [0] : initialOwner (address): 0x089B271523b1D358EA09Eb7d0086fe60A70Ee4f2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000089b271523b1d358ea09eb7d0086fe60a70ee4f2


Deployed Bytecode Sourcemap

136:5650:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10689:630:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11573:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18899:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18627:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6890:564;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22786:3272;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1782:225:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26149:187:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5456:103:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4345:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2013:103;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4248:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13152:150:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8570:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2293:101:0;;;;;;;;;;;;;:::i;:::-;;1638:85;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11742:102:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3832:410:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;954:778;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19449:231:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2122:211:3;;;;;;;;;;;;;:::i;:::-;;4465:159;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26917:405:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11945:322;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2562:1264:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19830:162:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2543:215:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10689:630:2;10774:4;11107:10;11092:25;;:11;:25;;;;:101;;;;11183:10;11168:25;;:11;:25;;;;11092:101;:177;;;;11259:10;11244:25;;:11;:25;;;;11092:177;11073:196;;10689:630;;;:::o;11573:98::-;11627:13;11659:5;11652:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11573:98;:::o;18899:223::-;18975:7;18999:16;19007:7;18999;:16::i;:::-;18994:73;;19017:50;19025:41;;;19017:7;:50::i;:::-;18994:73;19085:15;:24;19101:7;19085:24;;;;;;;;;;;:30;;;;;;;;;;;;19078:37;;18899:223;;;:::o;18627:122::-;18715:27;18724:2;18728:7;18737:4;18715:8;:27::i;:::-;18627:122;;:::o;6890:564::-;6951:14;7343:15;:13;:15::i;:::-;7328:12;;7312:13;;:28;:46;7303:55;;7397:17;7376;:15;:17::i;:::-;:38;7372:65;;7426:11;;7416:21;;;;7372:65;6890:564;:::o;22786:3272::-;22923:27;22953;22972:7;22953:18;:27::i;:::-;22923:57;;22990:18;23019:4;22990:34;;;;23071:10;23047:19;23039:42;;;23035:92;;23083:44;23091:35;;;23083:7;:44::i;:::-;23035:92;23139:27;23168:28;23200:33;23225:7;23200:24;:33::i;:::-;23138:95;;;;23330:88;23355:20;23377:10;23397:19;:17;:19::i;:::-;23330:88;;:24;:88::i;:::-;23325:208;;23437:43;23454:4;23460:19;:17;:19::i;:::-;23437:16;:43::i;:::-;23432:101;;23482:51;23490:42;;;23482:7;:51::i;:::-;23432:101;23325:208;23544:43;23566:4;23572:2;23576:7;23585:1;23544:21;:43::i;:::-;23624:20;23621:138;;;23691:1;23670:19;23663:30;23621:138;24131:18;:24;24150:4;24131:24;;;;;;;;;;;;;;;;24129:26;;;;;;;;;;;;24199:18;:22;24218:2;24199:22;;;;;;;;;;;;;;;;24197:24;;;;;;;;;;;24514:143;24550:2;24598:45;24613:4;24619:2;24623:19;24598:14;:45::i;:::-;2550:8;24570:73;24514:18;:143::i;:::-;24485:17;:26;24503:7;24485:26;;;;;;;;;;;:172;;;;24833:1;2550:8;24774:19;:47;:61;24770:635;;24855:19;24887:1;24877:7;:11;24855:33;;25050:1;25008:17;:30;25026:11;25008:30;;;;;;;;;;;;:44;25004:387;;25153:13;;25138:11;:28;25134:239;;25331:19;25298:17;:30;25316:11;25298:30;;;;;;;;;;;:52;;;;25134:239;25004:387;24837:568;24770:635;25509:16;25536:2;25509:30;;;;25877:7;25842:8;25803:10;25746:25;25692:1;25636;25614:298;25955:1;25935:8;:22;25931:67;;25959:39;25967:30;;;25959:7;:39::i;:::-;25931:67;26009:42;26030:4;26036:2;26040:7;26049:1;26009:20;:42::i;:::-;22913:3145;;;;;22786:3272;;;:::o;1782:225:3:-;1531:13:0;:11;:13::i;:::-;1893:10:3::1;;1882:8;1854:25;1868:10;1854:13;:25::i;:::-;:36;;;;:::i;:::-;:49;1846:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1922:27;1928:10;1940:8;1922:5;:27::i;:::-;1992:8;1976:13;;:24;;;;:::i;:::-;1960:13;:40;;;;1782:225:::0;:::o;26149:187:2:-;26290:39;26307:4;26313:2;26317:7;26290:39;;;;;;;;;;;;:16;:39::i;:::-;26149:187;;;:::o;5456:103:3:-;5511:7;337:4;5530:22;;5456:103;:::o;4345:114::-;4395:7;4421:16;4438:13;;4421:31;;;;;;;;:::i;:::-;;;;;;;;;;4414:38;;4345:114;:::o;2013:103::-;1531:13:0;:11;:13::i;:::-;2103:6:3::1;;2086:14;:23;;;;;;;:::i;:::-;;2013:103:::0;;:::o;4248:91::-;4293:7;4319:13;;4312:20;;4248:91;:::o;13152:150:2:-;13224:7;13266:27;13285:7;13266:18;:27::i;:::-;13243:52;;13152:150;;;:::o;8570:239::-;8642:7;8682:1;8665:19;;:5;:19;;;8661:69;;8686:44;8694:35;;;8686:7;:44::i;:::-;8661:69;1518:13;8747:18;:25;8766:5;8747:25;;;;;;;;;;;;;;;;:55;8740:62;;8570:239;;;:::o;2293:101:0:-;1531:13;:11;:13::i;:::-;2357:30:::1;2384:1;2357:18;:30::i;:::-;2293:101::o:0;1638:85::-;1684:7;1710:6;;;;;;;;;;;1703:13;;1638:85;:::o;11742:102:2:-;11798:13;11830:7;11823:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11742:102;:::o;3832:410:3:-;3874:7;3914:1;3897:13;;:18;3893:114;;3958:1;3935:19;3943:10;3935:7;:19::i;:::-;:24;;;3931:65;;3968:1;3961:8;;;;3931:65;3995:1;3988:8;;;;3893:114;4016:15;4054:17;;4034;;:37;;;;:::i;:::-;4016:55;;4111:10;4085:22;:20;:22::i;:::-;:36;4081:152;;4159:22;:20;:22::i;:::-;4146:10;:35;;;;:::i;:::-;4139:42;;;;;4081:152;388:20;4213;;;3832:410;;:::o;954:778::-;1033:1;1021:8;:13;;:40;;;;;1050:11;:9;:11::i;:::-;1038:8;:23;;1021:40;1013:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;1182:18;1203:19;1213:8;1203:9;:19::i;:::-;1182:40;;1254:10;1241:9;:23;;1233:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;1289:27;1295:10;1307:8;1289:5;:27::i;:::-;1359:8;1343:13;;:24;;;;:::i;:::-;1327:13;:40;;;;1399:1;1382:13;;:18;1378:71;;1416:22;1424:10;1436:1;1416:7;:22::i;:::-;1378:71;1475:1;1459:13;:17;;;;1491:9;1503:1;1491:13;;1486:205;1510:1;1506;:5;1486:205;;;1569:16;1590:1;1586;:5;;;;:::i;:::-;1569:23;;;;;;;;:::i;:::-;;;;;;;;;;1553:13;;:39;:95;;;;;1629:16;1646:1;1629:19;;;;;;;;:::i;:::-;;;;;;;;;;1612:13;;:36;;1553:95;1532:148;;;1679:1;1663:13;:17;;;;1532:148;1513:3;;;;;;;1486:205;;;;1701:24;1714:10;1701:12;:24::i;:::-;1003:729;954:778;:::o;19449:231:2:-;19595:8;19543:18;:39;19562:19;:17;:19::i;:::-;19543:39;;;;;;;;;;;;;;;:49;19583:8;19543:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;19654:8;19618:55;;19633:19;:17;:19::i;:::-;19618:55;;;19664:8;19618:55;;;;;;:::i;:::-;;;;;;;;19449:231;;:::o;2122:211:3:-;1531:13:0;:11;:13::i;:::-;2208:1:3::1;2184:21;:25;2176:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;2227:12;2245:10;:15;;2268:21;2245:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2226:68;;;2312:7;2304:22;;;;;;;;;;;;:::i;:::-;;;;;;;;;2166:167;2122:211::o:0;4465:159::-;4531:7;4586:17;;4579:24;;4465:159;:::o;26917:405:2:-;27086:31;27099:4;27105:2;27109:7;27086:12;:31::i;:::-;27149:1;27131:2;:14;;;:19;27127:189;;27169:56;27200:4;27206:2;27210:7;27219:5;27169:30;:56::i;:::-;27164:152;;27245:56;27253:47;;;27245:7;:56::i;:::-;27164:152;27127:189;26917:405;;;;:::o;11945:322::-;12018:13;12048:16;12056:7;12048;:16::i;:::-;12043:68;;12066:45;12074:36;;;12066:7;:45::i;:::-;12043:68;12122:21;12146:10;:8;:10::i;:::-;12122:34;;12198:1;12179:7;12173:21;:26;:87;;;;;;;;;;;;;;;;;12226:7;12235:18;12245:7;12235:9;:18::i;:::-;12209:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;12173:87;12166:94;;;11945:322;;;:::o;2562:1264:3:-;2661:7;2700:1;2688:8;:13;2684:39;;388:20;2703;;;;2684:39;2755:1;2738:13;;:18;2734:143;;2788:1;2776:8;:13;:41;;;;;2816:1;2793:19;2801:10;2793:7;:19::i;:::-;:24;;;2776:41;2772:94;;;2826:1;2819:8;;;;2772:94;388:20;2846;;;;2734:143;2972:13;3033:16;3050:13;;3033:31;;;;;;;;:::i;:::-;;;;;;;;;;3000:16;:14;:16::i;:::-;2989:8;:27;;;;:::i;:::-;2988:77;;;;:::i;:::-;2972:93;;3119:13;;3080:35;3106:8;3090:13;;:24;;;;:::i;:::-;3080:9;:35::i;:::-;:52;3076:643;;3198:22;3268:16;3285:13;;3268:31;;;;;;;;:::i;:::-;;;;;;;;;;3240:8;3224:13;;:24;;;;:::i;:::-;3223:76;;;;:::i;:::-;3198:101;;3313:22;3349:14;3338:8;:25;;;;:::i;:::-;3313:50;;3488:16;3521:1;3505:13;;:17;;;;:::i;:::-;3488:35;;;;;;;;:::i;:::-;;;;;;;;;;3471:14;:52;;;;:::i;:::-;3419:16;3436:13;;3419:31;;;;;;;;:::i;:::-;;;;;;;;;;3402:14;:48;;;;:::i;:::-;3401:123;;;;:::i;:::-;3377:147;;3567:1;3547:16;:14;:16::i;:::-;:21;:161;;3707:1;3547:161;;;3587:16;3660:1;3642:14;:19;:27;;3668:1;3642:27;;;3664:1;3642:27;3625:45;;:13;;:45;;;;:::i;:::-;3587:101;;;;;;;;:::i;:::-;;;;;;;;;;3547:161;3538:170;;;;;:::i;:::-;;;3134:585;;3076:643;3736:5;3729:12;;;2562:1264;;;;:::o;19830:162:2:-;19927:4;19950:18;:25;19969:5;19950:25;;;;;;;;;;;;;;;:35;19976:8;19950:35;;;;;;;;;;;;;;;;;;;;;;;;;19943:42;;19830:162;;;;:::o;2543:215:0:-;1531:13;:11;:13::i;:::-;2647:1:::1;2627:22;;:8;:22;;::::0;2623:91:::1;;2700:1;2672:31;;;;;;;;;;;:::i;:::-;;;;;;;;2623:91;2723:28;2742:8;2723:18;:28::i;:::-;2543:215:::0;:::o;20241:483:2:-;20306:11;20352:7;20333:15;:13;:15::i;:::-;:26;20329:389;;20389:17;:15;:17::i;:::-;20379:7;:27;20375:90;;;20415:50;20438:17;:26;20456:7;20438:26;;;;;;;;;;;;20415:22;:50::i;:::-;20408:57;;;;20375:90;20494:13;;20484:7;:23;20480:228;;;20527:14;20559:69;20615:1;20576:17;:26;20594:7;20576:26;;;;;;;;;;;;20567:35;;;20566:51;20559:69;;20619:9;;;;:::i;:::-;;;20559:69;;;20691:1;2276:8;20655:6;:24;:38;20646:47;;20509:199;20480:228;20329:389;20241:483;;;;:::o;54483:160::-;54582:13;54576:4;54569:27;54622:4;54616;54609:18;40256:460;40380:13;40396:16;40404:7;40396;:16::i;:::-;40380:32;;40427:13;:45;;;;;40467:5;40444:28;;:19;:17;:19::i;:::-;:28;;;;40427:45;40423:198;;;40491:44;40508:5;40515:19;:17;:19::i;:::-;40491:16;:44::i;:::-;40486:135;;40555:51;40563:42;;;40555:7;:51::i;:::-;40486:135;40423:198;40664:2;40631:15;:24;40647:7;40631:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;40701:7;40697:2;40681:28;;40690:5;40681:28;;;;;;;;;;;;40370:346;40256:460;;;:::o;5966:90::-;6022:7;6048:1;6041:8;;5966:90;:::o;5565:108:3:-;5624:7;5650:16;:14;:16::i;:::-;5643:23;;5565:108;:::o;14607:2209:2:-;14674:14;14723:7;14704:15;:13;:15::i;:::-;:26;14700:2053;;14755:17;:26;14773:7;14755:26;;;;;;;;;;;;14746:35;;14810:17;:15;:17::i;:::-;14800:7;:27;14796:180;;;14851:30;14874:6;14851:22;:30::i;:::-;14883:13;14847:49;14914:47;14922:38;;;14914:7;:47::i;:::-;14796:180;15092:1;15074:6;:20;15070:1297;;15129:13;;15118:7;:24;15114:77;;15144:47;15152:38;;;15144:7;:47::i;:::-;15114:77;15738:615;15814:17;:28;15832:9;;;;;;;15814:28;;;;;;;;;;;;15805:37;;15908:1;15890:6;:20;15886:34;15912:8;15886:34;15982:1;2276:8;15946:6;:24;:38;15942:57;15986:13;15942:57;16287:47;16295:38;;;16287:7;:47::i;:::-;15738:615;;;15070:1297;16725:1;2276:8;16689:6;:24;:38;16685:57;16729:13;16685:57;14700:2053;16762:47;16770:38;;;16762:7;:47::i;:::-;14607:2209;;;;:::o;21689:496::-;21786:27;21815:28;21859:38;21900:15;:24;21916:7;21900:24;;;;;;;;;;;21859:65;;22088:18;22065:41;;22149:19;22143:26;22119:50;;22051:128;21689:496;;;:::o;52513:103::-;52573:7;52599:10;52592:17;;52513:103;:::o;21248:313::-;21410:11;21523:20;21506:15;21503:41;21489:11;21472:15;21469:32;21466:79;21456:89;;21248:313;;;;;:::o;35077:154::-;;;;;:::o;50919:304::-;51050:7;51069:16;2671:3;51095:19;:41;;51069:68;;2671:3;51162:31;51173:4;51179:2;51183:9;51162:10;:31::i;:::-;51154:40;;:62;;51147:69;;;50919:304;;;;;:::o;17349:443::-;17429:14;17594:16;17587:5;17583:28;17574:37;;17769:5;17755:11;17730:23;17726:41;17723:52;17716:5;17713:63;17703:73;;17349:443;;;;:::o;35878:153::-;;;;;:::o;1796:162:0:-;1866:12;:10;:12::i;:::-;1855:23;;:7;:5;:7::i;:::-;:23;;;1851:101;;1928:12;:10;:12::i;:::-;1901:40;;;;;;;;;;;:::i;:::-;;;;;;;;1851:101;1796:162::o;8886:176:2:-;8947:7;1518:13;1653:2;8974:18;:25;8993:5;8974:25;;;;;;;;;;;;;;;;:50;;8973:82;8966:89;;8886:176;;;:::o;37147:2328::-;37219:20;37242:13;;37219:36;;37289:1;37269:8;:22;37265:62;;37293:34;37301:25;;;37293:7;:34::i;:::-;37265:62;37338:61;37368:1;37372:2;37376:12;37390:8;37338:21;:61::i;:::-;37861:136;37897:2;37950:33;37973:1;37977:2;37981:1;37950:14;:33::i;:::-;37917:30;37938:8;37917:20;:30::i;:::-;:66;37861:18;:136::i;:::-;37827:17;:31;37845:12;37827:31;;;;;;;;;;;:170;;;;38277:1;1653:2;38247:1;:26;;38246:32;38234:8;:45;38208:18;:22;38227:2;38208:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38382:16;38409:2;38382:30;;;;38451:1;38431:8;:22;38427:63;;38455:35;38463:26;;;38455:7;:35::i;:::-;38427:63;38505:11;38534:8;38519:12;:23;38505:37;;38556:15;38574:12;38556:30;;38615:17;:15;:17::i;:::-;38611:1;38605:3;:7;:27;38601:77;;;38634:44;38642:35;;;38634:7;:44::i;:::-;38601:77;38693:662;39103:7;39060:8;39016:1;38951:25;38889:1;38825;38795:351;39350:3;39337:9;;;;;;:16;38693:662;;39385:3;39369:13;:19;;;;37582:1817;;;39408:60;39437:1;39441:2;39445:12;39459:8;39408:20;:60::i;:::-;37209:2266;37147:2328;;:::o;2912:187:0:-;2985:16;3004:6;;;;;;;;;;;2985:25;;3029:8;3020:6;;:17;;;;;;;;;;;;;;;;;;3083:8;3052:40;;3073:8;3052:40;;;;;;;;;;;;2975:124;2912:187;:::o;9444:135:2:-;9499:6;1883:3;9531:18;:25;9550:5;9531:25;;;;;;;;;;;;;;;;:40;;9517:55;;9444:135;;;:::o;5227:223:3:-;5282:7;5433:1;5410:19;5418:10;5410:7;:19::i;:::-;:24;;;:32;;5441:1;5410:32;;;5437:1;5410:32;5381:62;;:25;5395:10;5381:13;:25::i;:::-;:62;;;;:::i;:::-;5374:69;;5227:223;:::o;9761:395:2:-;9832:14;9849:18;:25;9868:5;9849:25;;;;;;;;;;;;;;;;9832:42;;9884:17;10011:3;9998:16;;1883:3;10080:9;:24;;2025:14;10043:6;:32;10042:63;10033:72;;10143:6;10115:18;:25;10134:5;10115:25;;;;;;;;;;;;;;;:34;;;;9822:334;;9761:395;;:::o;2373:157:3:-;2445:5;2433:9;:17;2429:95;;;2474:10;2466:28;;:47;2507:5;2495:9;:17;;;;:::i;:::-;2466:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2429:95;2373:157;:::o;36459:682:2:-;36617:4;36662:2;36637:45;;;36683:19;:17;:19::i;:::-;36704:4;36710:7;36719:5;36637:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36633:502;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36940:1;36915:6;:13;:27;36911:122;;36962:56;36970:47;;;36962:7;:56::i;:::-;36911:122;37103:6;37097:13;37088:6;37084:2;37080:15;37073:38;36633:502;36803:54;;;36793:64;;;:6;:64;;;;36786:71;;;36459:682;;;;;;:::o;5679:105:3:-;5731:13;5763:14;5756:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5679:105;:::o;52713:1708:2:-;52778:17;53206:4;53199;53193:11;53189:22;53296:1;53290:4;53283:15;53369:4;53366:1;53362:12;53355:19;;53449:1;53444:3;53437:14;53550:3;53784:5;53766:419;53792:1;53766:419;;;53831:1;53826:3;53822:11;53815:18;;53999:2;53993:4;53989:13;53985:2;53981:22;53976:3;53968:36;54091:2;54085:4;54081:13;54073:21;;54156:4;53766:419;54146:25;53766:419;53770:21;54222:3;54217;54213:13;54335:4;54330:3;54326:14;54319:21;;54398:6;54393:3;54386:19;52816:1599;;;52713:1708;;;:::o;5018:203:3:-;5067:7;5174:1;5157:13;;:18;;:49;;;;;5205:1;5179:22;:20;:22::i;:::-;:27;5157:49;:57;;5213:1;5157:57;;;5209:1;5157:57;5150:64;;;;5018:203;:::o;4630:382::-;4687:7;4706:13;4722:1;4706:17;;4738:9;4750:1;4738:13;;4733:251;4757:1;4753;:5;4733:251;;;4814:1;4809;:6;:36;;4844:1;4809:36;;;4818:16;4839:1;4835;:5;;;;:::i;:::-;4818:23;;;;;;;;:::i;:::-;;;;;;;;;;4809:36;4800:5;:46;:94;;;;;4875:16;4892:1;4875:19;;;;;;;;:::i;:::-;;;;;;;;;;4866:5;:28;;4800:94;4779:195;;;4935:1;4927:9;;4954:5;;4779:195;4760:3;;;;;;;4733:251;;;;5000:5;4993:12;;;4630:382;;;:::o;20815:329:2:-;20885:11;21111:15;21103:6;21099:28;21080:16;21072:6;21068:29;21065:63;21055:73;;20815:329;;;:::o;50630:143::-;50763:6;50630:143;;;;;:::o;656:96:1:-;709:7;735:10;728:17;;656:96;:::o;17889:318:2:-;17959:14;18188:1;18178:8;18175:15;18149:24;18145:46;18135:56;;17889:318;;;:::o;7:75:5:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:139::-;1887:6;1882:3;1877;1871:23;1928:1;1919:6;1914:3;1910:16;1903:27;1798:139;;;:::o;1943:102::-;1984:6;2035:2;2031:7;2026:2;2019:5;2015:14;2011:28;2001:38;;1943:102;;;:::o;2051:377::-;2139:3;2167:39;2200:5;2167:39;:::i;:::-;2222:71;2286:6;2281:3;2222:71;:::i;:::-;2215:78;;2302:65;2360:6;2355:3;2348:4;2341:5;2337:16;2302:65;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2143:285;2051:377;;;;:::o;2434:313::-;2547:4;2585:2;2574:9;2570:18;2562:26;;2634:9;2628:4;2624:20;2620:1;2609:9;2605:17;2598:47;2662:78;2735:4;2726:6;2662:78;:::i;:::-;2654:86;;2434:313;;;;:::o;2753:77::-;2790:7;2819:5;2808:16;;2753:77;;;:::o;2836:122::-;2909:24;2927:5;2909:24;:::i;:::-;2902:5;2899:35;2889:63;;2948:1;2945;2938:12;2889:63;2836:122;:::o;2964:139::-;3010:5;3048:6;3035:20;3026:29;;3064:33;3091:5;3064:33;:::i;:::-;2964:139;;;;:::o;3109:329::-;3168:6;3217:2;3205:9;3196:7;3192:23;3188:32;3185:119;;;3223:79;;:::i;:::-;3185:119;3343:1;3368:53;3413:7;3404:6;3393:9;3389:22;3368:53;:::i;:::-;3358:63;;3314:117;3109:329;;;;:::o;3444:126::-;3481:7;3521:42;3514:5;3510:54;3499:65;;3444:126;;;:::o;3576:96::-;3613:7;3642:24;3660:5;3642:24;:::i;:::-;3631:35;;3576:96;;;:::o;3678:118::-;3765:24;3783:5;3765:24;:::i;:::-;3760:3;3753:37;3678:118;;:::o;3802:222::-;3895:4;3933:2;3922:9;3918:18;3910:26;;3946:71;4014:1;4003:9;3999:17;3990:6;3946:71;:::i;:::-;3802:222;;;;:::o;4030:122::-;4103:24;4121:5;4103:24;:::i;:::-;4096:5;4093:35;4083:63;;4142:1;4139;4132:12;4083:63;4030:122;:::o;4158:139::-;4204:5;4242:6;4229:20;4220:29;;4258:33;4285:5;4258:33;:::i;:::-;4158:139;;;;:::o;4303:474::-;4371:6;4379;4428:2;4416:9;4407:7;4403:23;4399:32;4396:119;;;4434:79;;:::i;:::-;4396:119;4554:1;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4525:117;4681:2;4707:53;4752:7;4743:6;4732:9;4728:22;4707:53;:::i;:::-;4697:63;;4652:118;4303:474;;;;;:::o;4783:118::-;4870:24;4888:5;4870:24;:::i;:::-;4865:3;4858:37;4783:118;;:::o;4907:222::-;5000:4;5038:2;5027:9;5023:18;5015:26;;5051:71;5119:1;5108:9;5104:17;5095:6;5051:71;:::i;:::-;4907:222;;;;:::o;5135:619::-;5212:6;5220;5228;5277:2;5265:9;5256:7;5252:23;5248:32;5245:119;;;5283:79;;:::i;:::-;5245:119;5403:1;5428:53;5473:7;5464:6;5453:9;5449:22;5428:53;:::i;:::-;5418:63;;5374:117;5530:2;5556:53;5601:7;5592:6;5581:9;5577:22;5556:53;:::i;:::-;5546:63;;5501:118;5658:2;5684:53;5729:7;5720:6;5709:9;5705:22;5684:53;:::i;:::-;5674:63;;5629:118;5135:619;;;;;:::o;5760:117::-;5869:1;5866;5859:12;5883:117;5992:1;5989;5982:12;6006:117;6115:1;6112;6105:12;6143:553;6201:8;6211:6;6261:3;6254:4;6246:6;6242:17;6238:27;6228:122;;6269:79;;:::i;:::-;6228:122;6382:6;6369:20;6359:30;;6412:18;6404:6;6401:30;6398:117;;;6434:79;;:::i;:::-;6398:117;6548:4;6540:6;6536:17;6524:29;;6602:3;6594:4;6586:6;6582:17;6572:8;6568:32;6565:41;6562:128;;;6609:79;;:::i;:::-;6562:128;6143:553;;;;;:::o;6702:529::-;6773:6;6781;6830:2;6818:9;6809:7;6805:23;6801:32;6798:119;;;6836:79;;:::i;:::-;6798:119;6984:1;6973:9;6969:17;6956:31;7014:18;7006:6;7003:30;7000:117;;;7036:79;;:::i;:::-;7000:117;7149:65;7206:7;7197:6;7186:9;7182:22;7149:65;:::i;:::-;7131:83;;;;6927:297;6702:529;;;;;:::o;7237:329::-;7296:6;7345:2;7333:9;7324:7;7320:23;7316:32;7313:119;;;7351:79;;:::i;:::-;7313:119;7471:1;7496:53;7541:7;7532:6;7521:9;7517:22;7496:53;:::i;:::-;7486:63;;7442:117;7237:329;;;;:::o;7572:116::-;7642:21;7657:5;7642:21;:::i;:::-;7635:5;7632:32;7622:60;;7678:1;7675;7668:12;7622:60;7572:116;:::o;7694:133::-;7737:5;7775:6;7762:20;7753:29;;7791:30;7815:5;7791:30;:::i;:::-;7694:133;;;;:::o;7833:468::-;7898:6;7906;7955:2;7943:9;7934:7;7930:23;7926:32;7923:119;;;7961:79;;:::i;:::-;7923:119;8081:1;8106:53;8151:7;8142:6;8131:9;8127:22;8106:53;:::i;:::-;8096:63;;8052:117;8208:2;8234:50;8276:7;8267:6;8256:9;8252:22;8234:50;:::i;:::-;8224:60;;8179:115;7833:468;;;;;:::o;8307:117::-;8416:1;8413;8406:12;8430:180;8478:77;8475:1;8468:88;8575:4;8572:1;8565:15;8599:4;8596:1;8589:15;8616:281;8699:27;8721:4;8699:27;:::i;:::-;8691:6;8687:40;8829:6;8817:10;8814:22;8793:18;8781:10;8778:34;8775:62;8772:88;;;8840:18;;:::i;:::-;8772:88;8880:10;8876:2;8869:22;8659:238;8616:281;;:::o;8903:129::-;8937:6;8964:20;;:::i;:::-;8954:30;;8993:33;9021:4;9013:6;8993:33;:::i;:::-;8903:129;;;:::o;9038:307::-;9099:4;9189:18;9181:6;9178:30;9175:56;;;9211:18;;:::i;:::-;9175:56;9249:29;9271:6;9249:29;:::i;:::-;9241:37;;9333:4;9327;9323:15;9315:23;;9038:307;;;:::o;9351:148::-;9449:6;9444:3;9439;9426:30;9490:1;9481:6;9476:3;9472:16;9465:27;9351:148;;;:::o;9505:423::-;9582:5;9607:65;9623:48;9664:6;9623:48;:::i;:::-;9607:65;:::i;:::-;9598:74;;9695:6;9688:5;9681:21;9733:4;9726:5;9722:16;9771:3;9762:6;9757:3;9753:16;9750:25;9747:112;;;9778:79;;:::i;:::-;9747:112;9868:54;9915:6;9910:3;9905;9868:54;:::i;:::-;9588:340;9505:423;;;;;:::o;9947:338::-;10002:5;10051:3;10044:4;10036:6;10032:17;10028:27;10018:122;;10059:79;;:::i;:::-;10018:122;10176:6;10163:20;10201:78;10275:3;10267:6;10260:4;10252:6;10248:17;10201:78;:::i;:::-;10192:87;;10008:277;9947:338;;;;:::o;10291:943::-;10386:6;10394;10402;10410;10459:3;10447:9;10438:7;10434:23;10430:33;10427:120;;;10466:79;;:::i;:::-;10427:120;10586:1;10611:53;10656:7;10647:6;10636:9;10632:22;10611:53;:::i;:::-;10601:63;;10557:117;10713:2;10739:53;10784:7;10775:6;10764:9;10760:22;10739:53;:::i;:::-;10729:63;;10684:118;10841:2;10867:53;10912:7;10903:6;10892:9;10888:22;10867:53;:::i;:::-;10857:63;;10812:118;10997:2;10986:9;10982:18;10969:32;11028:18;11020:6;11017:30;11014:117;;;11050:79;;:::i;:::-;11014:117;11155:62;11209:7;11200:6;11189:9;11185:22;11155:62;:::i;:::-;11145:72;;10940:287;10291:943;;;;;;;:::o;11240:474::-;11308:6;11316;11365:2;11353:9;11344:7;11340:23;11336:32;11333:119;;;11371:79;;:::i;:::-;11333:119;11491:1;11516:53;11561:7;11552:6;11541:9;11537:22;11516:53;:::i;:::-;11506:63;;11462:117;11618:2;11644:53;11689:7;11680:6;11669:9;11665:22;11644:53;:::i;:::-;11634:63;;11589:118;11240:474;;;;;:::o;11720:180::-;11768:77;11765:1;11758:88;11865:4;11862:1;11855:15;11889:4;11886:1;11879:15;11906:320;11950:6;11987:1;11981:4;11977:12;11967:22;;12034:1;12028:4;12024:12;12055:18;12045:81;;12111:4;12103:6;12099:17;12089:27;;12045:81;12173:2;12165:6;12162:14;12142:18;12139:38;12136:84;;12192:18;;:::i;:::-;12136:84;11957:269;11906:320;;;:::o;12232:180::-;12280:77;12277:1;12270:88;12377:4;12374:1;12367:15;12401:4;12398:1;12391:15;12418:191;12458:3;12477:20;12495:1;12477:20;:::i;:::-;12472:25;;12511:20;12529:1;12511:20;:::i;:::-;12506:25;;12554:1;12551;12547:9;12540:16;;12575:3;12572:1;12569:10;12566:36;;;12582:18;;:::i;:::-;12566:36;12418:191;;;;:::o;12615:153::-;12755:5;12751:1;12743:6;12739:14;12732:29;12615:153;:::o;12774:365::-;12916:3;12937:66;13001:1;12996:3;12937:66;:::i;:::-;12930:73;;13012:93;13101:3;13012:93;:::i;:::-;13130:2;13125:3;13121:12;13114:19;;12774:365;;;:::o;13145:419::-;13311:4;13349:2;13338:9;13334:18;13326:26;;13398:9;13392:4;13388:20;13384:1;13373:9;13369:17;13362:47;13426:131;13552:4;13426:131;:::i;:::-;13418:139;;13145:419;;;:::o;13570:180::-;13618:77;13615:1;13608:88;13715:4;13712:1;13705:15;13739:4;13736:1;13729:15;13756:97;13815:6;13843:3;13833:13;;13756:97;;;;:::o;13859:141::-;13908:4;13931:3;13923:11;;13954:3;13951:1;13944:14;13988:4;13985:1;13975:18;13967:26;;13859:141;;;:::o;14006:93::-;14043:6;14090:2;14085;14078:5;14074:14;14070:23;14060:33;;14006:93;;;:::o;14105:107::-;14149:8;14199:5;14193:4;14189:16;14168:37;;14105:107;;;;:::o;14218:393::-;14287:6;14337:1;14325:10;14321:18;14360:97;14390:66;14379:9;14360:97;:::i;:::-;14478:39;14508:8;14497:9;14478:39;:::i;:::-;14466:51;;14550:4;14546:9;14539:5;14535:21;14526:30;;14599:4;14589:8;14585:19;14578:5;14575:30;14565:40;;14294:317;;14218:393;;;;;:::o;14617:60::-;14645:3;14666:5;14659:12;;14617:60;;;:::o;14683:142::-;14733:9;14766:53;14784:34;14793:24;14811:5;14793:24;:::i;:::-;14784:34;:::i;:::-;14766:53;:::i;:::-;14753:66;;14683:142;;;:::o;14831:75::-;14874:3;14895:5;14888:12;;14831:75;;;:::o;14912:269::-;15022:39;15053:7;15022:39;:::i;:::-;15083:91;15132:41;15156:16;15132:41;:::i;:::-;15124:6;15117:4;15111:11;15083:91;:::i;:::-;15077:4;15070:105;14988:193;14912:269;;;:::o;15187:73::-;15232:3;15187:73;:::o;15266:189::-;15343:32;;:::i;:::-;15384:65;15442:6;15434;15428:4;15384:65;:::i;:::-;15319:136;15266:189;;:::o;15461:186::-;15521:120;15538:3;15531:5;15528:14;15521:120;;;15592:39;15629:1;15622:5;15592:39;:::i;:::-;15565:1;15558:5;15554:13;15545:22;;15521:120;;;15461:186;;:::o;15653:543::-;15754:2;15749:3;15746:11;15743:446;;;15788:38;15820:5;15788:38;:::i;:::-;15872:29;15890:10;15872:29;:::i;:::-;15862:8;15858:44;16055:2;16043:10;16040:18;16037:49;;;16076:8;16061:23;;16037:49;16099:80;16155:22;16173:3;16155:22;:::i;:::-;16145:8;16141:37;16128:11;16099:80;:::i;:::-;15758:431;;15743:446;15653:543;;;:::o;16202:117::-;16256:8;16306:5;16300:4;16296:16;16275:37;;16202:117;;;;:::o;16325:169::-;16369:6;16402:51;16450:1;16446:6;16438:5;16435:1;16431:13;16402:51;:::i;:::-;16398:56;16483:4;16477;16473:15;16463:25;;16376:118;16325:169;;;;:::o;16499:295::-;16575:4;16721:29;16746:3;16740:4;16721:29;:::i;:::-;16713:37;;16783:3;16780:1;16776:11;16770:4;16767:21;16759:29;;16499:295;;;;:::o;16799:1403::-;16923:44;16963:3;16958;16923:44;:::i;:::-;17032:18;17024:6;17021:30;17018:56;;;17054:18;;:::i;:::-;17018:56;17098:38;17130:4;17124:11;17098:38;:::i;:::-;17183:67;17243:6;17235;17229:4;17183:67;:::i;:::-;17277:1;17306:2;17298:6;17295:14;17323:1;17318:632;;;;17994:1;18011:6;18008:84;;;18067:9;18062:3;18058:19;18045:33;18036:42;;18008:84;18118:67;18178:6;18171:5;18118:67;:::i;:::-;18112:4;18105:81;17967:229;17288:908;;17318:632;17370:4;17366:9;17358:6;17354:22;17404:37;17436:4;17404:37;:::i;:::-;17463:1;17477:215;17491:7;17488:1;17485:14;17477:215;;;17577:9;17572:3;17568:19;17555:33;17547:6;17540:49;17628:1;17620:6;17616:14;17606:24;;17675:2;17664:9;17660:18;17647:31;;17514:4;17511:1;17507:12;17502:17;;17477:215;;;17720:6;17711:7;17708:19;17705:186;;;17785:9;17780:3;17776:19;17763:33;17828:48;17870:4;17862:6;17858:17;17847:9;17828:48;:::i;:::-;17820:6;17813:64;17728:163;17705:186;17937:1;17933;17925:6;17921:14;17917:22;17911:4;17904:36;17325:625;;;17288:908;;16898:1304;;;16799:1403;;;:::o;18208:194::-;18248:4;18268:20;18286:1;18268:20;:::i;:::-;18263:25;;18302:20;18320:1;18302:20;:::i;:::-;18297:25;;18346:1;18343;18339:9;18331:17;;18370:1;18364:4;18361:11;18358:37;;;18375:18;;:::i;:::-;18358:37;18208:194;;;;:::o;18408:151::-;18548:3;18544:1;18536:6;18532:14;18525:27;18408:151;:::o;18565:365::-;18707:3;18728:66;18792:1;18787:3;18728:66;:::i;:::-;18721:73;;18803:93;18892:3;18803:93;:::i;:::-;18921:2;18916:3;18912:12;18905:19;;18565:365;;;:::o;18936:419::-;19102:4;19140:2;19129:9;19125:18;19117:26;;19189:9;19183:4;19179:20;19175:1;19164:9;19160:17;19153:47;19217:131;19343:4;19217:131;:::i;:::-;19209:139;;18936:419;;;:::o;19361:151::-;19501:3;19497:1;19489:6;19485:14;19478:27;19361:151;:::o;19518:365::-;19660:3;19681:66;19745:1;19740:3;19681:66;:::i;:::-;19674:73;;19756:93;19845:3;19756:93;:::i;:::-;19874:2;19869:3;19865:12;19858:19;;19518:365;;;:::o;19889:419::-;20055:4;20093:2;20082:9;20078:18;20070:26;;20142:9;20136:4;20132:20;20128:1;20117:9;20113:17;20106:47;20170:131;20296:4;20170:131;:::i;:::-;20162:139;;19889:419;;;:::o;20314:151::-;20454:3;20450:1;20442:6;20438:14;20431:27;20314:151;:::o;20471:365::-;20613:3;20634:66;20698:1;20693:3;20634:66;:::i;:::-;20627:73;;20709:93;20798:3;20709:93;:::i;:::-;20827:2;20822:3;20818:12;20811:19;;20471:365;;;:::o;20842:419::-;21008:4;21046:2;21035:9;21031:18;21023:26;;21095:9;21089:4;21085:20;21081:1;21070:9;21066:17;21059:47;21123:131;21249:4;21123:131;:::i;:::-;21115:139;;20842:419;;;:::o;21267:147::-;21368:11;21405:3;21390:18;;21267:147;;;;:::o;21420:114::-;;:::o;21540:398::-;21699:3;21720:83;21801:1;21796:3;21720:83;:::i;:::-;21713:90;;21812:93;21901:3;21812:93;:::i;:::-;21930:1;21925:3;21921:11;21914:18;;21540:398;;;:::o;21944:379::-;22128:3;22150:147;22293:3;22150:147;:::i;:::-;22143:154;;22314:3;22307:10;;21944:379;;;:::o;22329:152::-;22469:4;22465:1;22457:6;22453:14;22446:28;22329:152;:::o;22487:365::-;22629:3;22650:66;22714:1;22709:3;22650:66;:::i;:::-;22643:73;;22725:93;22814:3;22725:93;:::i;:::-;22843:2;22838:3;22834:12;22827:19;;22487:365;;;:::o;22858:419::-;23024:4;23062:2;23051:9;23047:18;23039:26;;23111:9;23105:4;23101:20;23097:1;23086:9;23082:17;23075:47;23139:131;23265:4;23139:131;:::i;:::-;23131:139;;22858:419;;;:::o;23283:148::-;23385:11;23422:3;23407:18;;23283:148;;;;:::o;23437:390::-;23543:3;23571:39;23604:5;23571:39;:::i;:::-;23626:89;23708:6;23703:3;23626:89;:::i;:::-;23619:96;;23724:65;23782:6;23777:3;23770:4;23763:5;23759:16;23724:65;:::i;:::-;23814:6;23809:3;23805:16;23798:23;;23547:280;23437:390;;;;:::o;23833:435::-;24013:3;24035:95;24126:3;24117:6;24035:95;:::i;:::-;24028:102;;24147:95;24238:3;24229:6;24147:95;:::i;:::-;24140:102;;24259:3;24252:10;;23833:435;;;;;:::o;24274:410::-;24314:7;24337:20;24355:1;24337:20;:::i;:::-;24332:25;;24371:20;24389:1;24371:20;:::i;:::-;24366:25;;24426:1;24423;24419:9;24448:30;24466:11;24448:30;:::i;:::-;24437:41;;24627:1;24618:7;24614:15;24611:1;24608:22;24588:1;24581:9;24561:83;24538:139;;24657:18;;:::i;:::-;24538:139;24322:362;24274:410;;;;:::o;24690:171::-;24729:3;24752:24;24770:5;24752:24;:::i;:::-;24743:33;;24798:4;24791:5;24788:15;24785:41;;24806:18;;:::i;:::-;24785:41;24853:1;24846:5;24842:13;24835:20;;24690:171;;;:::o;24867:98::-;24918:6;24952:5;24946:12;24936:22;;24867:98;;;:::o;24971:168::-;25054:11;25088:6;25083:3;25076:19;25128:4;25123:3;25119:14;25104:29;;24971:168;;;;:::o;25145:373::-;25231:3;25259:38;25291:5;25259:38;:::i;:::-;25313:70;25376:6;25371:3;25313:70;:::i;:::-;25306:77;;25392:65;25450:6;25445:3;25438:4;25431:5;25427:16;25392:65;:::i;:::-;25482:29;25504:6;25482:29;:::i;:::-;25477:3;25473:39;25466:46;;25235:283;25145:373;;;;:::o;25524:640::-;25719:4;25757:3;25746:9;25742:19;25734:27;;25771:71;25839:1;25828:9;25824:17;25815:6;25771:71;:::i;:::-;25852:72;25920:2;25909:9;25905:18;25896:6;25852:72;:::i;:::-;25934;26002:2;25991:9;25987:18;25978:6;25934:72;:::i;:::-;26053:9;26047:4;26043:20;26038:2;26027:9;26023:18;26016:48;26081:76;26152:4;26143:6;26081:76;:::i;:::-;26073:84;;25524:640;;;;;;;:::o;26170:141::-;26226:5;26257:6;26251:13;26242:22;;26273:32;26299:5;26273:32;:::i;:::-;26170:141;;;;:::o;26317:349::-;26386:6;26435:2;26423:9;26414:7;26410:23;26406:32;26403:119;;;26441:79;;:::i;:::-;26403:119;26561:1;26586:63;26641:7;26632:6;26621:9;26617:22;26586:63;:::i;:::-;26576:73;;26532:127;26317:349;;;;:::o

Swarm Source

ipfs://88118f7a3020178db0593efd90dc4f7c80be0aa1c8153ee08bb0b4c84aabd642
[ 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.