ETH Price: $2,901.24 (-10.48%)
Gas: 24 Gwei

Token

Dead Founders YC (DFYC)
 

Overview

Max Total Supply

8,000 DFYC

Holders

2,631

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hideoutfucks.eth
Balance
4 DFYC
0xb7b1568e2a54784b29aec162ac34012fa9938b90
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

8,000 DFYC are here to forever solidify this historical meme-racle on Ethereum.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DFYC

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 6 : DFYC.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

contract DFYC is ERC721A, Ownable, ReentrancyGuard {

    bool public Minting  = false;
    uint256[] public freeMintArray = [3,2,1];
    uint256[] public supplyMintArray = [6000,7000,7500];
    uint256 public price = 2500000000000000;
    string public baseURI;  
    uint256 public maxPerTx = 20;  
    uint256 public maxSupply = 8000;
    uint256 public teamSupply = 100;  
    mapping (address => uint256) public minted;

    constructor() ERC721A("Dead Founders YC", "DFYC"){}

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

    function mint(uint256 qty) external payable
    {
        require(Minting , "DFYC Minting Close !");
        require(qty <= maxPerTx, "DFYC Max Per Tx !");
        require(totalSupply() + qty <= maxSupply-teamSupply,"DFYC Soldout !");
        _safemint(qty);
    }

    function _safemint(uint256 qty) internal  {
        uint freeMint = FreeMintBatch();
        if(minted[msg.sender] < freeMint) 
        {
            if(qty < freeMint) qty = freeMint;
           require(msg.value >= (qty - freeMint) * price,"DFYC Insufficient Funds !");
            minted[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * price,"DFYC Insufficient Funds !");
            minted[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
    }

    function FreeMintBatch() public view returns (uint256) {
        if(totalSupply() < supplyMintArray[0])
        {
            return freeMintArray[0];
        }
        else if (totalSupply() < supplyMintArray[1])
        {
            return freeMintArray[1];
        }
        else if (totalSupply() < supplyMintArray[2])
        {
            return freeMintArray[2];
        }
        else
        {
            return 0;
        }
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

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

    function airdrop(address[] memory listedAirdrop ,uint256[] memory qty) external onlyOwner {
        for (uint256 i = 0; i < listedAirdrop.length; i++) {
           _safeMint(listedAirdrop[i], qty[i]);
        }
    }

    function OwnerBatchMint(uint256 qty) external onlyOwner
    {
        _safeMint(msg.sender, qty);
    }

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

    function setPrice(uint256 price_) external onlyOwner {
        price = price_;
    }

    function setmaxPerTx(uint256 maxPerTx_) external onlyOwner {
        maxPerTx = maxPerTx_;
    }

    function setsupplyMintArray(uint256[] memory supplyMintArray_) external onlyOwner {
        supplyMintArray = supplyMintArray_;
    }
    
    function setfreeMintArray(uint256[] memory freeMintArray_) external onlyOwner {
        freeMintArray = freeMintArray_;
    }

    function setMaxSupply(uint256 maxMint_) external onlyOwner {
        maxSupply = maxMint_;
    }

    function setTeamSupply(uint256 maxTeam_) external onlyOwner {
        teamSupply = maxTeam_;
    }

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

File 2 of 6 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// 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()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 6 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FreeMintBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Minting","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"OwnerBatchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"listedAirdrop","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"freeMintArray","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint_","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price_","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPublicMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTeam_","type":"uint256"}],"name":"setTeamSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"freeMintArray_","type":"uint256[]"}],"name":"setfreeMintArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerTx_","type":"uint256"}],"name":"setmaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"supplyMintArray_","type":"uint256[]"}],"name":"setsupplyMintArray","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"supplyMintArray","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"teamSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506040518060600160405280600360ff168152602001600260ff168152602001600160ff16815250600b906003620000589291906200027d565b50604051806060016040528061177061ffff168152602001611b5861ffff168152602001611d4c61ffff16815250600c90600362000098929190620002d4565b506608e1bc9bf04000600d556014600f55611f406010556064601155348015620000c157600080fd5b506040518060400160405280601081526020017f4465616420466f756e64657273205943000000000000000000000000000000008152506040518060400160405280600481526020017f44465943000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001469291906200032c565b5080600390805190602001906200015f9291906200032c565b5062000170620001a660201b60201c565b6000819055505050620001986200018c620001af60201b60201c565b620001b760201b60201c565b600160098190555062000441565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620002c1579160200282015b82811115620002c0578251829060ff169055916020019190600101906200029e565b5b509050620002d09190620003bd565b5090565b82805482825590600052602060002090810192821562000319579160200282015b8281111562000318578251829061ffff16905591602001919060010190620002f5565b5b509050620003289190620003bd565b5090565b8280546200033a90620003dc565b90600052602060002090601f0160209004810192826200035e5760008555620003aa565b82601f106200037957805160ff1916838001178555620003aa565b82800160010185558215620003aa579182015b82811115620003a95782518255916020019190600101906200038c565b5b509050620003b99190620003bd565b5090565b5b80821115620003d8576000816000905550600101620003be565b5090565b60006002820490506001821680620003f557607f821691505b602082108114156200040c576200040b62000412565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61338880620004516000396000f3fe60806040526004361061023b5760003560e01c8063805dcae51161012e578063ac915c06116100ab578063e63b211f1161006f578063e63b211f1461082c578063e985e9c514610855578063f2fde38b14610892578063f8f103dd146108bb578063f968adbe146108e45761023b565b8063ac915c0614610754578063b88d4fde1461076b578063c87b56dd14610787578063d5abeb01146107c4578063dc33e681146107ef5761023b565b806391b7f5ed116100f257806391b7f5ed1461069057806395d89b41146106b9578063a035b1fe146106e4578063a0712d681461070f578063a22cb4651461072b5761023b565b8063805dcae5146105ab57806380c90d30146105d45780638171609b146105ff5780638da5cb5b146106285780638e7d556e146106535761023b565b80633ccfd60b116101bc5780636c0360eb116101805780636c0360eb146104da5780636f8b44b01461050557806370a082311461052e578063715018a61461056b5780637eb63c66146105825761023b565b80633ccfd60b1461041857806342842e0e1461042f57806355f804b31461044b5780636352211e1461047457806367243482146104b15761023b565b806315da2ec91161020357806315da2ec91461033e57806318160ddd146103695780631e7269c51461039457806323b872dd146103d15780632cfac6ec146103ed5761023b565b806301ffc9a714610240578063040755cb1461027d57806306fdde03146102ba578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612977565b61090f565b6040516102749190612c74565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612a1a565b6109a1565b6040516102b19190612d71565b60405180910390f35b3480156102c657600080fd5b506102cf6109c5565b6040516102dc9190612c8f565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612a1a565b610a57565b6040516103199190612c0d565b60405180910390f35b61033c60048036038101906103379190612876565b610ad6565b005b34801561034a57600080fd5b50610353610c1a565b6040516103609190612d71565b60405180910390f35b34801561037557600080fd5b5061037e610d23565b60405161038b9190612d71565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906126f3565b610d3a565b6040516103c89190612d71565b60405180910390f35b6103eb60048036038101906103e69190612760565b610d52565b005b3480156103f957600080fd5b50610402611077565b60405161040f9190612d71565b60405180910390f35b34801561042457600080fd5b5061042d61107d565b005b61044960048036038101906104449190612760565b6110e5565b005b34801561045757600080fd5b50610472600480360381019061046d91906129d1565b611105565b005b34801561048057600080fd5b5061049b60048036038101906104969190612a1a565b611127565b6040516104a89190612c0d565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906128b6565b611139565b005b3480156104e657600080fd5b506104ef6111a3565b6040516104fc9190612c8f565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612a1a565b611231565b005b34801561053a57600080fd5b50610555600480360381019061055091906126f3565b611243565b6040516105629190612d71565b60405180910390f35b34801561057757600080fd5b506105806112fc565b005b34801561058e57600080fd5b506105a960048036038101906105a4919061292e565b611310565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612a1a565b611332565b005b3480156105e057600080fd5b506105e9611344565b6040516105f69190612c74565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612a1a565b611357565b005b34801561063457600080fd5b5061063d61136c565b60405161064a9190612c0d565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612a1a565b611396565b6040516106879190612d71565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612a1a565b6113ba565b005b3480156106c557600080fd5b506106ce6113cc565b6040516106db9190612c8f565b60405180910390f35b3480156106f057600080fd5b506106f961145e565b6040516107069190612d71565b60405180910390f35b61072960048036038101906107249190612a1a565b611464565b005b34801561073757600080fd5b50610752600480360381019061074d9190612836565b611568565b005b34801561076057600080fd5b50610769611673565b005b610785600480360381019061078091906127b3565b6116a7565b005b34801561079357600080fd5b506107ae60048036038101906107a99190612a1a565b61171a565b6040516107bb9190612c8f565b60405180910390f35b3480156107d057600080fd5b506107d96117b9565b6040516107e69190612d71565b60405180910390f35b3480156107fb57600080fd5b50610816600480360381019061081191906126f3565b6117bf565b6040516108239190612d71565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e919061292e565b6117d1565b005b34801561086157600080fd5b5061087c60048036038101906108779190612720565b6117f3565b6040516108899190612c74565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b491906126f3565b611887565b005b3480156108c757600080fd5b506108e260048036038101906108dd9190612a1a565b61190b565b005b3480156108f057600080fd5b506108f961191d565b6040516109069190612d71565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b81815481106109b157600080fd5b906000526020600020016000915090505481565b6060600280546109d490613048565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090613048565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b6000610a6282611923565b610a98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae182611127565b90508073ffffffffffffffffffffffffffffffffffffffff16610b02611982565b73ffffffffffffffffffffffffffffffffffffffff1614610b6557610b2e81610b29611982565b6117f3565b610b64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600c600081548110610c3157610c30613152565b5b9060005260206000200154610c44610d23565b1015610c7157600b600081548110610c5f57610c5e613152565b5b90600052602060002001549050610d20565b600c600181548110610c8657610c85613152565b5b9060005260206000200154610c99610d23565b1015610cc657600b600181548110610cb457610cb3613152565b5b90600052602060002001549050610d20565b600c600281548110610cdb57610cda613152565b5b9060005260206000200154610cee610d23565b1015610d1b57600b600281548110610d0957610d08613152565b5b90600052602060002001549050610d20565b600090505b90565b6000610d2d61198a565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610d5d82611993565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dd084611a61565b91509150610de68187610de1611982565b611a88565b610e3257610dfb86610df6611982565b6117f3565b610e31576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e99576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ea68686866001611acc565b8015610eb157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7f85610f5b888887611ad2565b7c020000000000000000000000000000000000000000000000000000000017611afa565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611007576000600185019050600060046000838152602001908152602001600020541415611005576000548114611004578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106f8686866001611b25565b505050505050565b60115481565b611085611b2b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501580156110e2573d6000803e3d6000fd5b50565b611100838383604051806020016040528060008152506116a7565b505050565b61110d611b2b565b80600e908051906020019061112392919061237e565b5050565b600061113282611993565b9050919050565b611141611b2b565b60005b825181101561119e5761118b83828151811061116357611162613152565b5b602002602001015183838151811061117e5761117d613152565b5b6020026020010151611ba9565b8080611196906130ab565b915050611144565b505050565b600e80546111b090613048565b80601f01602080910402602001604051908101604052809291908181526020018280546111dc90613048565b80156112295780601f106111fe57610100808354040283529160200191611229565b820191906000526020600020905b81548152906001019060200180831161120c57829003601f168201915b505050505081565b611239611b2b565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611304611b2b565b61130e6000611bc7565b565b611318611b2b565b80600c908051906020019061132e929190612404565b5050565b61133a611b2b565b80600f8190555050565b600a60009054906101000a900460ff1681565b61135f611b2b565b6113693382611ba9565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c81815481106113a657600080fd5b906000526020600020016000915090505481565b6113c2611b2b565b80600d8190555050565b6060600380546113db90613048565b80601f016020809104026020016040519081016040528092919081815260200182805461140790613048565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b5050505050905090565b600d5481565b600a60009054906101000a900460ff166114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612cd1565b60405180910390fd5b600f548111156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90612d11565b60405180910390fd5b6011546010546115089190612f5e565b81611511610d23565b61151b9190612eae565b111561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390612cf1565b60405180910390fd5b61156581611c8d565b50565b8060076000611575611982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611622611982565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116679190612c74565b60405180910390a35050565b61167b611b2b565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6116b2848484610d52565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611714576116dd84848484611e61565b611713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061172582611923565b61175b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611765611fc1565b905060008151141561178657604051806020016040528060008152506117b1565b8061179084612053565b6040516020016117a1929190612be9565b6040516020818303038152906040525b915050919050565b60105481565b60006117ca826120ac565b9050919050565b6117d9611b2b565b80600b90805190602001906117ef929190612404565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188f611b2b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690612cb1565b60405180910390fd5b61190881611bc7565b50565b611913611b2b565b8060118190555050565b600f5481565b60008161192e61198a565b1115801561193d575060005482105b801561197b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119a261198a565b11611a2a57600054811015611a295760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a27575b6000811415611a1d5760046000836001900393508381526020019081526020016000205490506119f2565b8092505050611a5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ae9868684612103565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b3361210c565b73ffffffffffffffffffffffffffffffffffffffff16611b5161136c565b73ffffffffffffffffffffffffffffffffffffffff1614611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90612d31565b60405180910390fd5b565b611bc3828260405180602001604052806000815250612114565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611c97610c1a565b905080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611dac5780821015611cec578091505b600d548183611cfb9190612f5e565b611d059190612f04565b341015611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90612d51565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d969190612eae565b92505081905550611da73383611ba9565b611e5d565b600d5482611dba9190612f04565b341015611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390612d51565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4b9190612eae565b92505081905550611e5c3383611ba9565b5b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e87611982565b8786866040518563ffffffff1660e01b8152600401611ea99493929190612c28565b602060405180830381600087803b158015611ec357600080fd5b505af1925050508015611ef457506040513d601f19601f82011682018060405250810190611ef191906129a4565b60015b611f6e573d8060008114611f24576040519150601f19603f3d011682016040523d82523d6000602084013e611f29565b606091505b50600081511415611f66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611fd090613048565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffc90613048565b80156120495780601f1061201e57610100808354040283529160200191612049565b820191906000526020600020905b81548152906001019060200180831161202c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561209757600184039350600a81066030018453600a810490508061209257612097565b61206c565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b61211e83836121b1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121ac57600080549050600083820390505b61215e6000868380600101945086611e61565b612194576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061214b5781600054146121a957600080fd5b50505b505050565b60008054905060008214156121f2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121ff6000848385611acc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612276836122676000866000611ad2565b6122708561236e565b17611afa565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122dc565b506000821415612353576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123696000848385611b25565b505050565b60006001821460e11b9050919050565b82805461238a90613048565b90600052602060002090601f0160209004810192826123ac57600085556123f3565b82601f106123c557805160ff19168380011785556123f3565b828001600101855582156123f3579182015b828111156123f25782518255916020019190600101906123d7565b5b5090506124009190612451565b5090565b828054828255906000526020600020908101928215612440579160200282015b8281111561243f578251825591602001919060010190612424565b5b50905061244d9190612451565b5090565b5b8082111561246a576000816000905550600101612452565b5090565b600061248161247c84612db1565b612d8c565b905080838252602082019050828560208602820111156124a4576124a36131b5565b5b60005b858110156124d457816124ba88826125d2565b8452602084019350602083019250506001810190506124a7565b5050509392505050565b60006124f16124ec84612ddd565b612d8c565b90508083825260208201905082856020860282011115612514576125136131b5565b5b60005b85811015612544578161252a88826126de565b845260208401935060208301925050600181019050612517565b5050509392505050565b600061256161255c84612e09565b612d8c565b90508281526020810184848401111561257d5761257c6131ba565b5b612588848285613006565b509392505050565b60006125a361259e84612e3a565b612d8c565b9050828152602081018484840111156125bf576125be6131ba565b5b6125ca848285613006565b509392505050565b6000813590506125e1816132f6565b92915050565b600082601f8301126125fc576125fb6131b0565b5b813561260c84826020860161246e565b91505092915050565b600082601f83011261262a576126296131b0565b5b813561263a8482602086016124de565b91505092915050565b6000813590506126528161330d565b92915050565b60008135905061266781613324565b92915050565b60008151905061267c81613324565b92915050565b600082601f830112612697576126966131b0565b5b81356126a784826020860161254e565b91505092915050565b600082601f8301126126c5576126c46131b0565b5b81356126d5848260208601612590565b91505092915050565b6000813590506126ed8161333b565b92915050565b600060208284031215612709576127086131c4565b5b6000612717848285016125d2565b91505092915050565b60008060408385031215612737576127366131c4565b5b6000612745858286016125d2565b9250506020612756858286016125d2565b9150509250929050565b600080600060608486031215612779576127786131c4565b5b6000612787868287016125d2565b9350506020612798868287016125d2565b92505060406127a9868287016126de565b9150509250925092565b600080600080608085870312156127cd576127cc6131c4565b5b60006127db878288016125d2565b94505060206127ec878288016125d2565b93505060406127fd878288016126de565b925050606085013567ffffffffffffffff81111561281e5761281d6131bf565b5b61282a87828801612682565b91505092959194509250565b6000806040838503121561284d5761284c6131c4565b5b600061285b858286016125d2565b925050602061286c85828601612643565b9150509250929050565b6000806040838503121561288d5761288c6131c4565b5b600061289b858286016125d2565b92505060206128ac858286016126de565b9150509250929050565b600080604083850312156128cd576128cc6131c4565b5b600083013567ffffffffffffffff8111156128eb576128ea6131bf565b5b6128f7858286016125e7565b925050602083013567ffffffffffffffff811115612918576129176131bf565b5b61292485828601612615565b9150509250929050565b600060208284031215612944576129436131c4565b5b600082013567ffffffffffffffff811115612962576129616131bf565b5b61296e84828501612615565b91505092915050565b60006020828403121561298d5761298c6131c4565b5b600061299b84828501612658565b91505092915050565b6000602082840312156129ba576129b96131c4565b5b60006129c88482850161266d565b91505092915050565b6000602082840312156129e7576129e66131c4565b5b600082013567ffffffffffffffff811115612a0557612a046131bf565b5b612a11848285016126b0565b91505092915050565b600060208284031215612a3057612a2f6131c4565b5b6000612a3e848285016126de565b91505092915050565b612a5081612f92565b82525050565b612a5f81612fa4565b82525050565b6000612a7082612e6b565b612a7a8185612e81565b9350612a8a818560208601613015565b612a93816131c9565b840191505092915050565b6000612aa982612e76565b612ab38185612e92565b9350612ac3818560208601613015565b612acc816131c9565b840191505092915050565b6000612ae282612e76565b612aec8185612ea3565b9350612afc818560208601613015565b80840191505092915050565b6000612b15602683612e92565b9150612b20826131da565b604082019050919050565b6000612b38601483612e92565b9150612b4382613229565b602082019050919050565b6000612b5b600e83612e92565b9150612b6682613252565b602082019050919050565b6000612b7e601183612e92565b9150612b898261327b565b602082019050919050565b6000612ba1602083612e92565b9150612bac826132a4565b602082019050919050565b6000612bc4601983612e92565b9150612bcf826132cd565b602082019050919050565b612be381612ffc565b82525050565b6000612bf58285612ad7565b9150612c018284612ad7565b91508190509392505050565b6000602082019050612c226000830184612a47565b92915050565b6000608082019050612c3d6000830187612a47565b612c4a6020830186612a47565b612c576040830185612bda565b8181036060830152612c698184612a65565b905095945050505050565b6000602082019050612c896000830184612a56565b92915050565b60006020820190508181036000830152612ca98184612a9e565b905092915050565b60006020820190508181036000830152612cca81612b08565b9050919050565b60006020820190508181036000830152612cea81612b2b565b9050919050565b60006020820190508181036000830152612d0a81612b4e565b9050919050565b60006020820190508181036000830152612d2a81612b71565b9050919050565b60006020820190508181036000830152612d4a81612b94565b9050919050565b60006020820190508181036000830152612d6a81612bb7565b9050919050565b6000602082019050612d866000830184612bda565b92915050565b6000612d96612da7565b9050612da2828261307a565b919050565b6000604051905090565b600067ffffffffffffffff821115612dcc57612dcb613181565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612df857612df7613181565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e2457612e23613181565b5b612e2d826131c9565b9050602081019050919050565b600067ffffffffffffffff821115612e5557612e54613181565b5b612e5e826131c9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eb982612ffc565b9150612ec483612ffc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ef957612ef86130f4565b5b828201905092915050565b6000612f0f82612ffc565b9150612f1a83612ffc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f5357612f526130f4565b5b828202905092915050565b6000612f6982612ffc565b9150612f7483612ffc565b925082821015612f8757612f866130f4565b5b828203905092915050565b6000612f9d82612fdc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613033578082015181840152602081019050613018565b83811115613042576000848401525b50505050565b6000600282049050600182168061306057607f821691505b6020821081141561307457613073613123565b5b50919050565b613083826131c9565b810181811067ffffffffffffffff821117156130a2576130a1613181565b5b80604052505050565b60006130b682612ffc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130e9576130e86130f4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44465943204d696e74696e6720436c6f73652021000000000000000000000000600082015250565b7f4446594320536f6c646f75742021000000000000000000000000000000000000600082015250565b7f44465943204d6178205065722054782021000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4446594320496e73756666696369656e742046756e6473202100000000000000600082015250565b6132ff81612f92565b811461330a57600080fd5b50565b61331681612fa4565b811461332157600080fd5b50565b61332d81612fb0565b811461333857600080fd5b50565b61334481612ffc565b811461334f57600080fd5b5056fea2646970667358221220095269fa3e5634bd54acd365b14874786fdc42f9a80b583647d4cca78284a3db64736f6c63430008070033

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063805dcae51161012e578063ac915c06116100ab578063e63b211f1161006f578063e63b211f1461082c578063e985e9c514610855578063f2fde38b14610892578063f8f103dd146108bb578063f968adbe146108e45761023b565b8063ac915c0614610754578063b88d4fde1461076b578063c87b56dd14610787578063d5abeb01146107c4578063dc33e681146107ef5761023b565b806391b7f5ed116100f257806391b7f5ed1461069057806395d89b41146106b9578063a035b1fe146106e4578063a0712d681461070f578063a22cb4651461072b5761023b565b8063805dcae5146105ab57806380c90d30146105d45780638171609b146105ff5780638da5cb5b146106285780638e7d556e146106535761023b565b80633ccfd60b116101bc5780636c0360eb116101805780636c0360eb146104da5780636f8b44b01461050557806370a082311461052e578063715018a61461056b5780637eb63c66146105825761023b565b80633ccfd60b1461041857806342842e0e1461042f57806355f804b31461044b5780636352211e1461047457806367243482146104b15761023b565b806315da2ec91161020357806315da2ec91461033e57806318160ddd146103695780631e7269c51461039457806323b872dd146103d15780632cfac6ec146103ed5761023b565b806301ffc9a714610240578063040755cb1461027d57806306fdde03146102ba578063081812fc146102e5578063095ea7b314610322575b600080fd5b34801561024c57600080fd5b5061026760048036038101906102629190612977565b61090f565b6040516102749190612c74565b60405180910390f35b34801561028957600080fd5b506102a4600480360381019061029f9190612a1a565b6109a1565b6040516102b19190612d71565b60405180910390f35b3480156102c657600080fd5b506102cf6109c5565b6040516102dc9190612c8f565b60405180910390f35b3480156102f157600080fd5b5061030c60048036038101906103079190612a1a565b610a57565b6040516103199190612c0d565b60405180910390f35b61033c60048036038101906103379190612876565b610ad6565b005b34801561034a57600080fd5b50610353610c1a565b6040516103609190612d71565b60405180910390f35b34801561037557600080fd5b5061037e610d23565b60405161038b9190612d71565b60405180910390f35b3480156103a057600080fd5b506103bb60048036038101906103b691906126f3565b610d3a565b6040516103c89190612d71565b60405180910390f35b6103eb60048036038101906103e69190612760565b610d52565b005b3480156103f957600080fd5b50610402611077565b60405161040f9190612d71565b60405180910390f35b34801561042457600080fd5b5061042d61107d565b005b61044960048036038101906104449190612760565b6110e5565b005b34801561045757600080fd5b50610472600480360381019061046d91906129d1565b611105565b005b34801561048057600080fd5b5061049b60048036038101906104969190612a1a565b611127565b6040516104a89190612c0d565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d391906128b6565b611139565b005b3480156104e657600080fd5b506104ef6111a3565b6040516104fc9190612c8f565b60405180910390f35b34801561051157600080fd5b5061052c60048036038101906105279190612a1a565b611231565b005b34801561053a57600080fd5b50610555600480360381019061055091906126f3565b611243565b6040516105629190612d71565b60405180910390f35b34801561057757600080fd5b506105806112fc565b005b34801561058e57600080fd5b506105a960048036038101906105a4919061292e565b611310565b005b3480156105b757600080fd5b506105d260048036038101906105cd9190612a1a565b611332565b005b3480156105e057600080fd5b506105e9611344565b6040516105f69190612c74565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190612a1a565b611357565b005b34801561063457600080fd5b5061063d61136c565b60405161064a9190612c0d565b60405180910390f35b34801561065f57600080fd5b5061067a60048036038101906106759190612a1a565b611396565b6040516106879190612d71565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b29190612a1a565b6113ba565b005b3480156106c557600080fd5b506106ce6113cc565b6040516106db9190612c8f565b60405180910390f35b3480156106f057600080fd5b506106f961145e565b6040516107069190612d71565b60405180910390f35b61072960048036038101906107249190612a1a565b611464565b005b34801561073757600080fd5b50610752600480360381019061074d9190612836565b611568565b005b34801561076057600080fd5b50610769611673565b005b610785600480360381019061078091906127b3565b6116a7565b005b34801561079357600080fd5b506107ae60048036038101906107a99190612a1a565b61171a565b6040516107bb9190612c8f565b60405180910390f35b3480156107d057600080fd5b506107d96117b9565b6040516107e69190612d71565b60405180910390f35b3480156107fb57600080fd5b50610816600480360381019061081191906126f3565b6117bf565b6040516108239190612d71565b60405180910390f35b34801561083857600080fd5b50610853600480360381019061084e919061292e565b6117d1565b005b34801561086157600080fd5b5061087c60048036038101906108779190612720565b6117f3565b6040516108899190612c74565b60405180910390f35b34801561089e57600080fd5b506108b960048036038101906108b491906126f3565b611887565b005b3480156108c757600080fd5b506108e260048036038101906108dd9190612a1a565b61190b565b005b3480156108f057600080fd5b506108f961191d565b6040516109069190612d71565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b81815481106109b157600080fd5b906000526020600020016000915090505481565b6060600280546109d490613048565b80601f0160208091040260200160405190810160405280929190818152602001828054610a0090613048565b8015610a4d5780601f10610a2257610100808354040283529160200191610a4d565b820191906000526020600020905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b6000610a6282611923565b610a98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ae182611127565b90508073ffffffffffffffffffffffffffffffffffffffff16610b02611982565b73ffffffffffffffffffffffffffffffffffffffff1614610b6557610b2e81610b29611982565b6117f3565b610b64576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600c600081548110610c3157610c30613152565b5b9060005260206000200154610c44610d23565b1015610c7157600b600081548110610c5f57610c5e613152565b5b90600052602060002001549050610d20565b600c600181548110610c8657610c85613152565b5b9060005260206000200154610c99610d23565b1015610cc657600b600181548110610cb457610cb3613152565b5b90600052602060002001549050610d20565b600c600281548110610cdb57610cda613152565b5b9060005260206000200154610cee610d23565b1015610d1b57600b600281548110610d0957610d08613152565b5b90600052602060002001549050610d20565b600090505b90565b6000610d2d61198a565b6001546000540303905090565b60126020528060005260406000206000915090505481565b6000610d5d82611993565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dc4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dd084611a61565b91509150610de68187610de1611982565b611a88565b610e3257610dfb86610df6611982565b6117f3565b610e31576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e99576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ea68686866001611acc565b8015610eb157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7f85610f5b888887611ad2565b7c020000000000000000000000000000000000000000000000000000000017611afa565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611007576000600185019050600060046000838152602001908152602001600020541415611005576000548114611004578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106f8686866001611b25565b505050505050565b60115481565b611085611b2b565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f193505050501580156110e2573d6000803e3d6000fd5b50565b611100838383604051806020016040528060008152506116a7565b505050565b61110d611b2b565b80600e908051906020019061112392919061237e565b5050565b600061113282611993565b9050919050565b611141611b2b565b60005b825181101561119e5761118b83828151811061116357611162613152565b5b602002602001015183838151811061117e5761117d613152565b5b6020026020010151611ba9565b8080611196906130ab565b915050611144565b505050565b600e80546111b090613048565b80601f01602080910402602001604051908101604052809291908181526020018280546111dc90613048565b80156112295780601f106111fe57610100808354040283529160200191611229565b820191906000526020600020905b81548152906001019060200180831161120c57829003601f168201915b505050505081565b611239611b2b565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112ab576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611304611b2b565b61130e6000611bc7565b565b611318611b2b565b80600c908051906020019061132e929190612404565b5050565b61133a611b2b565b80600f8190555050565b600a60009054906101000a900460ff1681565b61135f611b2b565b6113693382611ba9565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c81815481106113a657600080fd5b906000526020600020016000915090505481565b6113c2611b2b565b80600d8190555050565b6060600380546113db90613048565b80601f016020809104026020016040519081016040528092919081815260200182805461140790613048565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b5050505050905090565b600d5481565b600a60009054906101000a900460ff166114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90612cd1565b60405180910390fd5b600f548111156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90612d11565b60405180910390fd5b6011546010546115089190612f5e565b81611511610d23565b61151b9190612eae565b111561155c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155390612cf1565b60405180910390fd5b61156581611c8d565b50565b8060076000611575611982565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611622611982565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116679190612c74565b60405180910390a35050565b61167b611b2b565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b6116b2848484610d52565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611714576116dd84848484611e61565b611713576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606061172582611923565b61175b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611765611fc1565b905060008151141561178657604051806020016040528060008152506117b1565b8061179084612053565b6040516020016117a1929190612be9565b6040516020818303038152906040525b915050919050565b60105481565b60006117ca826120ac565b9050919050565b6117d9611b2b565b80600b90805190602001906117ef929190612404565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61188f611b2b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f690612cb1565b60405180910390fd5b61190881611bc7565b50565b611913611b2b565b8060118190555050565b600f5481565b60008161192e61198a565b1115801561193d575060005482105b801561197b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119a261198a565b11611a2a57600054811015611a295760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611a27575b6000811415611a1d5760046000836001900393508381526020019081526020016000205490506119f2565b8092505050611a5c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ae9868684612103565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611b3361210c565b73ffffffffffffffffffffffffffffffffffffffff16611b5161136c565b73ffffffffffffffffffffffffffffffffffffffff1614611ba7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9e90612d31565b60405180910390fd5b565b611bc3828260405180602001604052806000815250612114565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611c97610c1a565b905080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611dac5780821015611cec578091505b600d548183611cfb9190612f5e565b611d059190612f04565b341015611d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3e90612d51565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d969190612eae565b92505081905550611da73383611ba9565b611e5d565b600d5482611dba9190612f04565b341015611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390612d51565b60405180910390fd5b81601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e4b9190612eae565b92505081905550611e5c3383611ba9565b5b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e87611982565b8786866040518563ffffffff1660e01b8152600401611ea99493929190612c28565b602060405180830381600087803b158015611ec357600080fd5b505af1925050508015611ef457506040513d601f19601f82011682018060405250810190611ef191906129a4565b60015b611f6e573d8060008114611f24576040519150601f19603f3d011682016040523d82523d6000602084013e611f29565b606091505b50600081511415611f66576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611fd090613048565b80601f0160208091040260200160405190810160405280929190818152602001828054611ffc90613048565b80156120495780601f1061201e57610100808354040283529160200191612049565b820191906000526020600020905b81548152906001019060200180831161202c57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561209757600184039350600a81066030018453600a810490508061209257612097565b61206c565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b61211e83836121b1565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121ac57600080549050600083820390505b61215e6000868380600101945086611e61565b612194576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061214b5781600054146121a957600080fd5b50505b505050565b60008054905060008214156121f2576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121ff6000848385611acc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612276836122676000866000611ad2565b6122708561236e565b17611afa565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461231757808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506122dc565b506000821415612353576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506123696000848385611b25565b505050565b60006001821460e11b9050919050565b82805461238a90613048565b90600052602060002090601f0160209004810192826123ac57600085556123f3565b82601f106123c557805160ff19168380011785556123f3565b828001600101855582156123f3579182015b828111156123f25782518255916020019190600101906123d7565b5b5090506124009190612451565b5090565b828054828255906000526020600020908101928215612440579160200282015b8281111561243f578251825591602001919060010190612424565b5b50905061244d9190612451565b5090565b5b8082111561246a576000816000905550600101612452565b5090565b600061248161247c84612db1565b612d8c565b905080838252602082019050828560208602820111156124a4576124a36131b5565b5b60005b858110156124d457816124ba88826125d2565b8452602084019350602083019250506001810190506124a7565b5050509392505050565b60006124f16124ec84612ddd565b612d8c565b90508083825260208201905082856020860282011115612514576125136131b5565b5b60005b85811015612544578161252a88826126de565b845260208401935060208301925050600181019050612517565b5050509392505050565b600061256161255c84612e09565b612d8c565b90508281526020810184848401111561257d5761257c6131ba565b5b612588848285613006565b509392505050565b60006125a361259e84612e3a565b612d8c565b9050828152602081018484840111156125bf576125be6131ba565b5b6125ca848285613006565b509392505050565b6000813590506125e1816132f6565b92915050565b600082601f8301126125fc576125fb6131b0565b5b813561260c84826020860161246e565b91505092915050565b600082601f83011261262a576126296131b0565b5b813561263a8482602086016124de565b91505092915050565b6000813590506126528161330d565b92915050565b60008135905061266781613324565b92915050565b60008151905061267c81613324565b92915050565b600082601f830112612697576126966131b0565b5b81356126a784826020860161254e565b91505092915050565b600082601f8301126126c5576126c46131b0565b5b81356126d5848260208601612590565b91505092915050565b6000813590506126ed8161333b565b92915050565b600060208284031215612709576127086131c4565b5b6000612717848285016125d2565b91505092915050565b60008060408385031215612737576127366131c4565b5b6000612745858286016125d2565b9250506020612756858286016125d2565b9150509250929050565b600080600060608486031215612779576127786131c4565b5b6000612787868287016125d2565b9350506020612798868287016125d2565b92505060406127a9868287016126de565b9150509250925092565b600080600080608085870312156127cd576127cc6131c4565b5b60006127db878288016125d2565b94505060206127ec878288016125d2565b93505060406127fd878288016126de565b925050606085013567ffffffffffffffff81111561281e5761281d6131bf565b5b61282a87828801612682565b91505092959194509250565b6000806040838503121561284d5761284c6131c4565b5b600061285b858286016125d2565b925050602061286c85828601612643565b9150509250929050565b6000806040838503121561288d5761288c6131c4565b5b600061289b858286016125d2565b92505060206128ac858286016126de565b9150509250929050565b600080604083850312156128cd576128cc6131c4565b5b600083013567ffffffffffffffff8111156128eb576128ea6131bf565b5b6128f7858286016125e7565b925050602083013567ffffffffffffffff811115612918576129176131bf565b5b61292485828601612615565b9150509250929050565b600060208284031215612944576129436131c4565b5b600082013567ffffffffffffffff811115612962576129616131bf565b5b61296e84828501612615565b91505092915050565b60006020828403121561298d5761298c6131c4565b5b600061299b84828501612658565b91505092915050565b6000602082840312156129ba576129b96131c4565b5b60006129c88482850161266d565b91505092915050565b6000602082840312156129e7576129e66131c4565b5b600082013567ffffffffffffffff811115612a0557612a046131bf565b5b612a11848285016126b0565b91505092915050565b600060208284031215612a3057612a2f6131c4565b5b6000612a3e848285016126de565b91505092915050565b612a5081612f92565b82525050565b612a5f81612fa4565b82525050565b6000612a7082612e6b565b612a7a8185612e81565b9350612a8a818560208601613015565b612a93816131c9565b840191505092915050565b6000612aa982612e76565b612ab38185612e92565b9350612ac3818560208601613015565b612acc816131c9565b840191505092915050565b6000612ae282612e76565b612aec8185612ea3565b9350612afc818560208601613015565b80840191505092915050565b6000612b15602683612e92565b9150612b20826131da565b604082019050919050565b6000612b38601483612e92565b9150612b4382613229565b602082019050919050565b6000612b5b600e83612e92565b9150612b6682613252565b602082019050919050565b6000612b7e601183612e92565b9150612b898261327b565b602082019050919050565b6000612ba1602083612e92565b9150612bac826132a4565b602082019050919050565b6000612bc4601983612e92565b9150612bcf826132cd565b602082019050919050565b612be381612ffc565b82525050565b6000612bf58285612ad7565b9150612c018284612ad7565b91508190509392505050565b6000602082019050612c226000830184612a47565b92915050565b6000608082019050612c3d6000830187612a47565b612c4a6020830186612a47565b612c576040830185612bda565b8181036060830152612c698184612a65565b905095945050505050565b6000602082019050612c896000830184612a56565b92915050565b60006020820190508181036000830152612ca98184612a9e565b905092915050565b60006020820190508181036000830152612cca81612b08565b9050919050565b60006020820190508181036000830152612cea81612b2b565b9050919050565b60006020820190508181036000830152612d0a81612b4e565b9050919050565b60006020820190508181036000830152612d2a81612b71565b9050919050565b60006020820190508181036000830152612d4a81612b94565b9050919050565b60006020820190508181036000830152612d6a81612bb7565b9050919050565b6000602082019050612d866000830184612bda565b92915050565b6000612d96612da7565b9050612da2828261307a565b919050565b6000604051905090565b600067ffffffffffffffff821115612dcc57612dcb613181565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612df857612df7613181565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612e2457612e23613181565b5b612e2d826131c9565b9050602081019050919050565b600067ffffffffffffffff821115612e5557612e54613181565b5b612e5e826131c9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612eb982612ffc565b9150612ec483612ffc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ef957612ef86130f4565b5b828201905092915050565b6000612f0f82612ffc565b9150612f1a83612ffc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f5357612f526130f4565b5b828202905092915050565b6000612f6982612ffc565b9150612f7483612ffc565b925082821015612f8757612f866130f4565b5b828203905092915050565b6000612f9d82612fdc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613033578082015181840152602081019050613018565b83811115613042576000848401525b50505050565b6000600282049050600182168061306057607f821691505b6020821081141561307457613073613123565b5b50919050565b613083826131c9565b810181811067ffffffffffffffff821117156130a2576130a1613181565b5b80604052505050565b60006130b682612ffc565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130e9576130e86130f4565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44465943204d696e74696e6720436c6f73652021000000000000000000000000600082015250565b7f4446594320536f6c646f75742021000000000000000000000000000000000000600082015250565b7f44465943204d6178205065722054782021000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4446594320496e73756666696369656e742046756e6473202100000000000000600082015250565b6132ff81612f92565b811461330a57600080fd5b50565b61331681612fa4565b811461332157600080fd5b50565b61332d81612fb0565b811461333857600080fd5b50565b61334481612ffc565b811461334f57600080fd5b5056fea2646970667358221220095269fa3e5634bd54acd365b14874786fdc42f9a80b583647d4cca78284a3db64736f6c63430008070033

Deployed Bytecode Sourcemap

223:3527:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;318:40:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1684:458:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;614:42:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;574:31:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3631:116;;;;;;;;;;;;;:::i;:::-;;22758:187:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2827:100:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2387:220:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;469:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3417:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;3135:135:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3029:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;283:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2615:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;365:51:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2935:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;423:39:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;833:270;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2729:86:3;;;;;;;;;;;;;:::i;:::-;;23526:396:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;536:31:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2150:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3282:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3523:100:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;499:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:4;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;318:40:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10039:98:4:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;1684:458:3:-;1730:7;1769:15;1785:1;1769:18;;;;;;;;:::i;:::-;;;;;;;;;;1753:13;:11;:13::i;:::-;:34;1750:385;;;1820:13;1834:1;1820:16;;;;;;;;:::i;:::-;;;;;;;;;;1813:23;;;;1750:385;1883:15;1899:1;1883:18;;;;;;;;:::i;:::-;;;;;;;;;;1867:13;:11;:13::i;:::-;:34;1863:272;;;1934:13;1948:1;1934:16;;;;;;;;:::i;:::-;;;;;;;;;;1927:23;;;;1863:272;1997:15;2013:1;1997:18;;;;;;;;:::i;:::-;;;;;;;;;;1981:13;:11;:13::i;:::-;:34;1977:158;;;2048:13;2062:1;2048:16;;;;;;;;:::i;:::-;;;;;;;;;;2041:23;;;;1977:158;2122:1;2115:8;;1684:458;;:::o;5894:317:4:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;614:42:3:-;;;;;;;;;;;;;;;;;:::o;19903:2764:4:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;574:31:3:-;;;;:::o;3631:116::-;1094:13:0;:11;:13::i;:::-;3687:10:3::1;3679:28;;:60;3724:4;3708:30;;;3679:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3631:116::o:0;22758:187:4:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;2827:100:3:-;1094:13:0;:11;:13::i;:::-;2911:8:3::1;2901:7;:18;;;;;;;;;;;;:::i;:::-;;2827:100:::0;:::o;11391:150:4:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;2387:220:3:-;1094:13:0;:11;:13::i;:::-;2493:9:3::1;2488:112;2512:13;:20;2508:1;:24;2488:112;;;2553:35;2563:13;2577:1;2563:16;;;;;;;;:::i;:::-;;;;;;;;2581:3;2585:1;2581:6;;;;;;;;:::i;:::-;;;;;;;;2553:9;:35::i;:::-;2534:3;;;;;:::i;:::-;;;;2488:112;;;;2387:220:::0;;:::o;469:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3417:98::-;1094:13:0;:11;:13::i;:::-;3499:8:3::1;3487:9;:20;;;;3417:98:::0;:::o;7045:230:4:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1831:101:0:-;1094:13;:11;:13::i;:::-;1895:30:::1;1922:1;1895:18;:30::i;:::-;1831:101::o:0;3135:135:3:-;1094:13:0;:11;:13::i;:::-;3246:16:3::1;3228:15;:34;;;;;;;;;;;;:::i;:::-;;3135:135:::0;:::o;3029:98::-;1094:13:0;:11;:13::i;:::-;3110:9:3::1;3099:8;:20;;;;3029:98:::0;:::o;283:28::-;;;;;;;;;;;;;:::o;2615:106::-;1094:13:0;:11;:13::i;:::-;2687:26:3::1;2697:10;2709:3;2687:9;:26::i;:::-;2615:106:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;365:51:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2935:86::-;1094:13:0;:11;:13::i;:::-;3007:6:3::1;2999:5;:14;;;;2935:86:::0;:::o;10208:102:4:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;423:39:3:-;;;;:::o;833:270::-;901:7;;;;;;;;;;;893:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;960:8;;953:3;:15;;945:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;1042:10;;1032:9;;:20;;;;:::i;:::-;1025:3;1009:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:43;;1001:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;1081:14;1091:3;1081:9;:14::i;:::-;833:270;:::o;16901:231:4:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;2729:86:3:-;1094:13:0;:11;:13::i;:::-;2799:7:3::1;;;;;;;;;;;2798:8;2787:7;;:19;;;;;;;;;;;;;;;;;;2729:86::o:0;23526:396:4:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;10411:313::-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;536:31:3:-;;;;:::o;2150:113::-;2208:7;2235:20;2249:5;2235:13;:20::i;:::-;2228:27;;2150:113;;;:::o;3282:127::-;1094:13:0;:11;:13::i;:::-;3387:14:3::1;3371:13;:30;;;;;;;;;;;;:::i;:::-;;3282:127:::0;:::o;17282:162:4:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;2081:198:0:-;1094:13;:11;:13::i;:::-;2189:1:::1;2169:22;;:8;:22;;;;2161:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2244:28;2263:8;2244:18;:28::i;:::-;2081:198:::0;:::o;3523:100:3:-;1094:13:0;:11;:13::i;:::-;3607:8:3::1;3594:10;:21;;;;3523:100:::0;:::o;499:28::-;;;;:::o;17693:277:4:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;724:101:3:-;789:7;816:1;809:8;;724:101;:::o;12515:1249:4:-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;;13510:111;13527:1;13517:6;:11;13510:111;;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;1359:130:0:-;1433:12;:10;:12::i;:::-;1422:23;;:7;:5;:7::i;:::-;:23;;;1414:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1359:130::o;33423:110:4:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;2433:187:0:-;2506:16;2525:6;;;;;;;;;;;2506:25;;2550:8;2541:6;;:17;;;;;;;;;;;;;;;;;;2604:8;2573:40;;2594:8;2573:40;;;;;;;;;;;;2496:124;2433:187;:::o;1111:565:3:-;1164:13;1180:15;:13;:15::i;:::-;1164:31;;1230:8;1209:6;:18;1216:10;1209:18;;;;;;;;;;;;;;;;:29;1206:463;;;1274:8;1268:3;:14;1265:33;;;1290:8;1284:14;;1265:33;1352:5;;1340:8;1334:3;:14;;;;:::i;:::-;1333:24;;;;:::i;:::-;1320:9;:37;;1312:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1423:3;1401:6;:18;1408:10;1401:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;1440:26;1450:10;1462:3;1440:9;:26::i;:::-;1206:463;;;1543:5;;1537:3;:11;;;;:::i;:::-;1524:9;:24;;1516:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;1614:3;1592:6;:18;1599:10;1592:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;1631:26;1641:10;1653:3;1631:9;:26::i;:::-;1206:463;1153:523;1111:565;:::o;25948:697:4:-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;2271:108:3:-;2331:13;2364:7;2357:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2271:108;:::o;39637:1708:4:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;41070:25;;41088:5;;41070:25;40690:419;;;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;7352:176::-;7413:7;1360:13;1495:2;7440:18;:25;7459:5;7440:25;;;;;;;;;;;;;;;;:50;;7439:82;7432:89;;7352:176;;;:::o;38475:143::-;38608:6;38475:143;;;;;:::o;640:96:2:-;693:7;719:10;712:17;;640:96;:::o;32675:669:4:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;27091:2902::-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;14837:318::-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:6:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;769:::-;865:5;890:81;906:64;963:6;906:64;:::i;:::-;890:81;:::i;:::-;881:90;;991:5;1020:6;1013:5;1006:21;1054:4;1047:5;1043:16;1036:23;;1080:6;1130:3;1122:4;1114:6;1110:17;1105:3;1101:27;1098:36;1095:143;;;1149:79;;:::i;:::-;1095:143;1262:1;1247:238;1272:6;1269:1;1266:13;1247:238;;;1340:3;1369:37;1402:3;1390:10;1369:37;:::i;:::-;1364:3;1357:50;1436:4;1431:3;1427:14;1420:21;;1470:4;1465:3;1461:14;1454:21;;1307:178;1294:1;1291;1287:9;1282:14;;1247:238;;;1251:14;871:620;;769:722;;;;;:::o;1497:410::-;1574:5;1599:65;1615:48;1656:6;1615:48;:::i;:::-;1599:65;:::i;:::-;1590:74;;1687:6;1680:5;1673:21;1725:4;1718:5;1714:16;1763:3;1754:6;1749:3;1745:16;1742:25;1739:112;;;1770:79;;:::i;:::-;1739:112;1860:41;1894:6;1889:3;1884;1860:41;:::i;:::-;1580:327;1497:410;;;;;:::o;1913:412::-;1991:5;2016:66;2032:49;2074:6;2032:49;:::i;:::-;2016:66;:::i;:::-;2007:75;;2105:6;2098:5;2091:21;2143:4;2136:5;2132:16;2181:3;2172:6;2167:3;2163:16;2160:25;2157:112;;;2188:79;;:::i;:::-;2157:112;2278:41;2312:6;2307:3;2302;2278:41;:::i;:::-;1997:328;1913:412;;;;;:::o;2331:139::-;2377:5;2415:6;2402:20;2393:29;;2431:33;2458:5;2431:33;:::i;:::-;2331:139;;;;:::o;2493:370::-;2564:5;2613:3;2606:4;2598:6;2594:17;2590:27;2580:122;;2621:79;;:::i;:::-;2580:122;2738:6;2725:20;2763:94;2853:3;2845:6;2838:4;2830:6;2826:17;2763:94;:::i;:::-;2754:103;;2570:293;2493:370;;;;:::o;2886:::-;2957:5;3006:3;2999:4;2991:6;2987:17;2983:27;2973:122;;3014:79;;:::i;:::-;2973:122;3131:6;3118:20;3156:94;3246:3;3238:6;3231:4;3223:6;3219:17;3156:94;:::i;:::-;3147:103;;2963:293;2886:370;;;;:::o;3262:133::-;3305:5;3343:6;3330:20;3321:29;;3359:30;3383:5;3359:30;:::i;:::-;3262:133;;;;:::o;3401:137::-;3446:5;3484:6;3471:20;3462:29;;3500:32;3526:5;3500:32;:::i;:::-;3401:137;;;;:::o;3544:141::-;3600:5;3631:6;3625:13;3616:22;;3647:32;3673:5;3647:32;:::i;:::-;3544:141;;;;:::o;3704:338::-;3759:5;3808:3;3801:4;3793:6;3789:17;3785:27;3775:122;;3816:79;;:::i;:::-;3775:122;3933:6;3920:20;3958:78;4032:3;4024:6;4017:4;4009:6;4005:17;3958:78;:::i;:::-;3949:87;;3765:277;3704:338;;;;:::o;4062:340::-;4118:5;4167:3;4160:4;4152:6;4148:17;4144:27;4134:122;;4175:79;;:::i;:::-;4134:122;4292:6;4279:20;4317:79;4392:3;4384:6;4377:4;4369:6;4365:17;4317:79;:::i;:::-;4308:88;;4124:278;4062:340;;;;:::o;4408:139::-;4454:5;4492:6;4479:20;4470:29;;4508:33;4535:5;4508:33;:::i;:::-;4408:139;;;;:::o;4553:329::-;4612:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:119;;;4667:79;;:::i;:::-;4629:119;4787:1;4812:53;4857:7;4848:6;4837:9;4833:22;4812:53;:::i;:::-;4802:63;;4758:117;4553:329;;;;:::o;4888:474::-;4956:6;4964;5013:2;5001:9;4992:7;4988:23;4984:32;4981:119;;;5019:79;;:::i;:::-;4981:119;5139:1;5164:53;5209:7;5200:6;5189:9;5185:22;5164:53;:::i;:::-;5154:63;;5110:117;5266:2;5292:53;5337:7;5328:6;5317:9;5313:22;5292:53;:::i;:::-;5282:63;;5237:118;4888:474;;;;;:::o;5368:619::-;5445:6;5453;5461;5510:2;5498:9;5489:7;5485:23;5481:32;5478:119;;;5516:79;;:::i;:::-;5478:119;5636:1;5661:53;5706:7;5697:6;5686:9;5682:22;5661:53;:::i;:::-;5651:63;;5607:117;5763:2;5789:53;5834:7;5825:6;5814:9;5810:22;5789:53;:::i;:::-;5779:63;;5734:118;5891:2;5917:53;5962:7;5953:6;5942:9;5938:22;5917:53;:::i;:::-;5907:63;;5862:118;5368:619;;;;;:::o;5993:943::-;6088:6;6096;6104;6112;6161:3;6149:9;6140:7;6136:23;6132:33;6129:120;;;6168:79;;:::i;:::-;6129:120;6288:1;6313:53;6358:7;6349:6;6338:9;6334:22;6313:53;:::i;:::-;6303:63;;6259:117;6415:2;6441:53;6486:7;6477:6;6466:9;6462:22;6441:53;:::i;:::-;6431:63;;6386:118;6543:2;6569:53;6614:7;6605:6;6594:9;6590:22;6569:53;:::i;:::-;6559:63;;6514:118;6699:2;6688:9;6684:18;6671:32;6730:18;6722:6;6719:30;6716:117;;;6752:79;;:::i;:::-;6716:117;6857:62;6911:7;6902:6;6891:9;6887:22;6857:62;:::i;:::-;6847:72;;6642:287;5993:943;;;;;;;:::o;6942:468::-;7007:6;7015;7064:2;7052:9;7043:7;7039:23;7035:32;7032:119;;;7070:79;;:::i;:::-;7032:119;7190:1;7215:53;7260:7;7251:6;7240:9;7236:22;7215:53;:::i;:::-;7205:63;;7161:117;7317:2;7343:50;7385:7;7376:6;7365:9;7361:22;7343:50;:::i;:::-;7333:60;;7288:115;6942:468;;;;;:::o;7416:474::-;7484:6;7492;7541:2;7529:9;7520:7;7516:23;7512:32;7509:119;;;7547:79;;:::i;:::-;7509:119;7667:1;7692:53;7737:7;7728:6;7717:9;7713:22;7692:53;:::i;:::-;7682:63;;7638:117;7794:2;7820:53;7865:7;7856:6;7845:9;7841:22;7820:53;:::i;:::-;7810:63;;7765:118;7416:474;;;;;:::o;7896:894::-;8014:6;8022;8071:2;8059:9;8050:7;8046:23;8042:32;8039:119;;;8077:79;;:::i;:::-;8039:119;8225:1;8214:9;8210:17;8197:31;8255:18;8247:6;8244:30;8241:117;;;8277:79;;:::i;:::-;8241:117;8382:78;8452:7;8443:6;8432:9;8428:22;8382:78;:::i;:::-;8372:88;;8168:302;8537:2;8526:9;8522:18;8509:32;8568:18;8560:6;8557:30;8554:117;;;8590:79;;:::i;:::-;8554:117;8695:78;8765:7;8756:6;8745:9;8741:22;8695:78;:::i;:::-;8685:88;;8480:303;7896:894;;;;;:::o;8796:539::-;8880:6;8929:2;8917:9;8908:7;8904:23;8900:32;8897:119;;;8935:79;;:::i;:::-;8897:119;9083:1;9072:9;9068:17;9055:31;9113:18;9105:6;9102:30;9099:117;;;9135:79;;:::i;:::-;9099:117;9240:78;9310:7;9301:6;9290:9;9286:22;9240:78;:::i;:::-;9230:88;;9026:302;8796:539;;;;:::o;9341:327::-;9399:6;9448:2;9436:9;9427:7;9423:23;9419:32;9416:119;;;9454:79;;:::i;:::-;9416:119;9574:1;9599:52;9643:7;9634:6;9623:9;9619:22;9599:52;:::i;:::-;9589:62;;9545:116;9341:327;;;;:::o;9674:349::-;9743:6;9792:2;9780:9;9771:7;9767:23;9763:32;9760:119;;;9798:79;;:::i;:::-;9760:119;9918:1;9943:63;9998:7;9989:6;9978:9;9974:22;9943:63;:::i;:::-;9933:73;;9889:127;9674:349;;;;:::o;10029:509::-;10098:6;10147:2;10135:9;10126:7;10122:23;10118:32;10115:119;;;10153:79;;:::i;:::-;10115:119;10301:1;10290:9;10286:17;10273:31;10331:18;10323:6;10320:30;10317:117;;;10353:79;;:::i;:::-;10317:117;10458:63;10513:7;10504:6;10493:9;10489:22;10458:63;:::i;:::-;10448:73;;10244:287;10029:509;;;;:::o;10544:329::-;10603:6;10652:2;10640:9;10631:7;10627:23;10623:32;10620:119;;;10658:79;;:::i;:::-;10620:119;10778:1;10803:53;10848:7;10839:6;10828:9;10824:22;10803:53;:::i;:::-;10793:63;;10749:117;10544:329;;;;:::o;10879:118::-;10966:24;10984:5;10966:24;:::i;:::-;10961:3;10954:37;10879:118;;:::o;11003:109::-;11084:21;11099:5;11084:21;:::i;:::-;11079:3;11072:34;11003:109;;:::o;11118:360::-;11204:3;11232:38;11264:5;11232:38;:::i;:::-;11286:70;11349:6;11344:3;11286:70;:::i;:::-;11279:77;;11365:52;11410:6;11405:3;11398:4;11391:5;11387:16;11365:52;:::i;:::-;11442:29;11464:6;11442:29;:::i;:::-;11437:3;11433:39;11426:46;;11208:270;11118:360;;;;:::o;11484:364::-;11572:3;11600:39;11633:5;11600:39;:::i;:::-;11655:71;11719:6;11714:3;11655:71;:::i;:::-;11648:78;;11735:52;11780:6;11775:3;11768:4;11761:5;11757:16;11735:52;:::i;:::-;11812:29;11834:6;11812:29;:::i;:::-;11807:3;11803:39;11796:46;;11576:272;11484:364;;;;:::o;11854:377::-;11960:3;11988:39;12021:5;11988:39;:::i;:::-;12043:89;12125:6;12120:3;12043:89;:::i;:::-;12036:96;;12141:52;12186:6;12181:3;12174:4;12167:5;12163:16;12141:52;:::i;:::-;12218:6;12213:3;12209:16;12202:23;;11964:267;11854:377;;;;:::o;12237:366::-;12379:3;12400:67;12464:2;12459:3;12400:67;:::i;:::-;12393:74;;12476:93;12565:3;12476:93;:::i;:::-;12594:2;12589:3;12585:12;12578:19;;12237:366;;;:::o;12609:::-;12751:3;12772:67;12836:2;12831:3;12772:67;:::i;:::-;12765:74;;12848:93;12937:3;12848:93;:::i;:::-;12966:2;12961:3;12957:12;12950:19;;12609:366;;;:::o;12981:::-;13123:3;13144:67;13208:2;13203:3;13144:67;:::i;:::-;13137:74;;13220:93;13309:3;13220:93;:::i;:::-;13338:2;13333:3;13329:12;13322:19;;12981:366;;;:::o;13353:::-;13495:3;13516:67;13580:2;13575:3;13516:67;:::i;:::-;13509:74;;13592:93;13681:3;13592:93;:::i;:::-;13710:2;13705:3;13701:12;13694:19;;13353:366;;;:::o;13725:::-;13867:3;13888:67;13952:2;13947:3;13888:67;:::i;:::-;13881:74;;13964:93;14053:3;13964:93;:::i;:::-;14082:2;14077:3;14073:12;14066:19;;13725:366;;;:::o;14097:::-;14239:3;14260:67;14324:2;14319:3;14260:67;:::i;:::-;14253:74;;14336:93;14425:3;14336:93;:::i;:::-;14454:2;14449:3;14445:12;14438:19;;14097:366;;;:::o;14469:118::-;14556:24;14574:5;14556:24;:::i;:::-;14551:3;14544:37;14469:118;;:::o;14593:435::-;14773:3;14795:95;14886:3;14877:6;14795:95;:::i;:::-;14788:102;;14907:95;14998:3;14989:6;14907:95;:::i;:::-;14900:102;;15019:3;15012:10;;14593:435;;;;;:::o;15034:222::-;15127:4;15165:2;15154:9;15150:18;15142:26;;15178:71;15246:1;15235:9;15231:17;15222:6;15178:71;:::i;:::-;15034:222;;;;:::o;15262:640::-;15457:4;15495:3;15484:9;15480:19;15472:27;;15509:71;15577:1;15566:9;15562:17;15553:6;15509:71;:::i;:::-;15590:72;15658:2;15647:9;15643:18;15634:6;15590:72;:::i;:::-;15672;15740:2;15729:9;15725:18;15716:6;15672:72;:::i;:::-;15791:9;15785:4;15781:20;15776:2;15765:9;15761:18;15754:48;15819:76;15890:4;15881:6;15819:76;:::i;:::-;15811:84;;15262:640;;;;;;;:::o;15908:210::-;15995:4;16033:2;16022:9;16018:18;16010:26;;16046:65;16108:1;16097:9;16093:17;16084:6;16046:65;:::i;:::-;15908:210;;;;:::o;16124:313::-;16237:4;16275:2;16264:9;16260:18;16252:26;;16324:9;16318:4;16314:20;16310:1;16299:9;16295:17;16288:47;16352:78;16425:4;16416:6;16352:78;:::i;:::-;16344:86;;16124:313;;;;:::o;16443:419::-;16609:4;16647:2;16636:9;16632:18;16624:26;;16696:9;16690:4;16686:20;16682:1;16671:9;16667:17;16660:47;16724:131;16850:4;16724:131;:::i;:::-;16716:139;;16443:419;;;:::o;16868:::-;17034:4;17072:2;17061:9;17057:18;17049:26;;17121:9;17115:4;17111:20;17107:1;17096:9;17092:17;17085:47;17149:131;17275:4;17149:131;:::i;:::-;17141:139;;16868:419;;;:::o;17293:::-;17459:4;17497:2;17486:9;17482:18;17474:26;;17546:9;17540:4;17536:20;17532:1;17521:9;17517:17;17510:47;17574:131;17700:4;17574:131;:::i;:::-;17566:139;;17293:419;;;:::o;17718:::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:222::-;19086:4;19124:2;19113:9;19109:18;19101:26;;19137:71;19205:1;19194:9;19190:17;19181:6;19137:71;:::i;:::-;18993:222;;;;:::o;19221:129::-;19255:6;19282:20;;:::i;:::-;19272:30;;19311:33;19339:4;19331:6;19311:33;:::i;:::-;19221:129;;;:::o;19356:75::-;19389:6;19422:2;19416:9;19406:19;;19356:75;:::o;19437:311::-;19514:4;19604:18;19596:6;19593:30;19590:56;;;19626:18;;:::i;:::-;19590:56;19676:4;19668:6;19664:17;19656:25;;19736:4;19730;19726:15;19718:23;;19437:311;;;:::o;19754:::-;19831:4;19921:18;19913:6;19910:30;19907:56;;;19943:18;;:::i;:::-;19907:56;19993:4;19985:6;19981:17;19973:25;;20053:4;20047;20043:15;20035:23;;19754:311;;;:::o;20071:307::-;20132:4;20222:18;20214:6;20211:30;20208:56;;;20244:18;;:::i;:::-;20208:56;20282:29;20304:6;20282:29;:::i;:::-;20274:37;;20366:4;20360;20356:15;20348:23;;20071:307;;;:::o;20384:308::-;20446:4;20536:18;20528:6;20525:30;20522:56;;;20558:18;;:::i;:::-;20522:56;20596:29;20618:6;20596:29;:::i;:::-;20588:37;;20680:4;20674;20670:15;20662:23;;20384:308;;;:::o;20698:98::-;20749:6;20783:5;20777:12;20767:22;;20698:98;;;:::o;20802:99::-;20854:6;20888:5;20882:12;20872:22;;20802:99;;;:::o;20907:168::-;20990:11;21024:6;21019:3;21012:19;21064:4;21059:3;21055:14;21040:29;;20907:168;;;;:::o;21081:169::-;21165:11;21199:6;21194:3;21187:19;21239:4;21234:3;21230:14;21215:29;;21081:169;;;;:::o;21256:148::-;21358:11;21395:3;21380:18;;21256:148;;;;:::o;21410:305::-;21450:3;21469:20;21487:1;21469:20;:::i;:::-;21464:25;;21503:20;21521:1;21503:20;:::i;:::-;21498:25;;21657:1;21589:66;21585:74;21582:1;21579:81;21576:107;;;21663:18;;:::i;:::-;21576:107;21707:1;21704;21700:9;21693:16;;21410:305;;;;:::o;21721:348::-;21761:7;21784:20;21802:1;21784:20;:::i;:::-;21779:25;;21818:20;21836:1;21818:20;:::i;:::-;21813:25;;22006:1;21938:66;21934:74;21931:1;21928:81;21923:1;21916:9;21909:17;21905:105;21902:131;;;22013:18;;:::i;:::-;21902:131;22061:1;22058;22054:9;22043:20;;21721:348;;;;:::o;22075:191::-;22115:4;22135:20;22153:1;22135:20;:::i;:::-;22130:25;;22169:20;22187:1;22169:20;:::i;:::-;22164:25;;22208:1;22205;22202:8;22199:34;;;22213:18;;:::i;:::-;22199:34;22258:1;22255;22251:9;22243:17;;22075:191;;;;:::o;22272:96::-;22309:7;22338:24;22356:5;22338:24;:::i;:::-;22327:35;;22272:96;;;:::o;22374:90::-;22408:7;22451:5;22444:13;22437:21;22426:32;;22374:90;;;:::o;22470:149::-;22506:7;22546:66;22539:5;22535:78;22524:89;;22470:149;;;:::o;22625:126::-;22662:7;22702:42;22695:5;22691:54;22680:65;;22625:126;;;:::o;22757:77::-;22794:7;22823:5;22812:16;;22757:77;;;:::o;22840:154::-;22924:6;22919:3;22914;22901:30;22986:1;22977:6;22972:3;22968:16;22961:27;22840:154;;;:::o;23000:307::-;23068:1;23078:113;23092:6;23089:1;23086:13;23078:113;;;23177:1;23172:3;23168:11;23162:18;23158:1;23153:3;23149:11;23142:39;23114:2;23111:1;23107:10;23102:15;;23078:113;;;23209:6;23206:1;23203:13;23200:101;;;23289:1;23280:6;23275:3;23271:16;23264:27;23200:101;23049:258;23000:307;;;:::o;23313:320::-;23357:6;23394:1;23388:4;23384:12;23374:22;;23441:1;23435:4;23431:12;23462:18;23452:81;;23518:4;23510:6;23506:17;23496:27;;23452:81;23580:2;23572:6;23569:14;23549:18;23546:38;23543:84;;;23599:18;;:::i;:::-;23543:84;23364:269;23313:320;;;:::o;23639:281::-;23722:27;23744:4;23722:27;:::i;:::-;23714:6;23710:40;23852:6;23840:10;23837:22;23816:18;23804:10;23801:34;23798:62;23795:88;;;23863:18;;:::i;:::-;23795:88;23903:10;23899:2;23892:22;23682:238;23639:281;;:::o;23926:233::-;23965:3;23988:24;24006:5;23988:24;:::i;:::-;23979:33;;24034:66;24027:5;24024:77;24021:103;;;24104:18;;:::i;:::-;24021:103;24151:1;24144:5;24140:13;24133:20;;23926:233;;;:::o;24165:180::-;24213:77;24210:1;24203:88;24310:4;24307:1;24300:15;24334:4;24331:1;24324:15;24351:180;24399:77;24396:1;24389:88;24496:4;24493:1;24486:15;24520:4;24517:1;24510:15;24537:180;24585:77;24582:1;24575:88;24682:4;24679:1;24672:15;24706:4;24703:1;24696:15;24723:180;24771:77;24768:1;24761:88;24868:4;24865:1;24858:15;24892:4;24889:1;24882:15;24909:117;25018:1;25015;25008:12;25032:117;25141:1;25138;25131:12;25155:117;25264:1;25261;25254:12;25278:117;25387:1;25384;25377:12;25401:117;25510:1;25507;25500:12;25524:102;25565:6;25616:2;25612:7;25607:2;25600:5;25596:14;25592:28;25582:38;;25524:102;;;:::o;25632:225::-;25772:34;25768:1;25760:6;25756:14;25749:58;25841:8;25836:2;25828:6;25824:15;25817:33;25632:225;:::o;25863:170::-;26003:22;25999:1;25991:6;25987:14;25980:46;25863:170;:::o;26039:164::-;26179:16;26175:1;26167:6;26163:14;26156:40;26039:164;:::o;26209:167::-;26349:19;26345:1;26337:6;26333:14;26326:43;26209:167;:::o;26382:182::-;26522:34;26518:1;26510:6;26506:14;26499:58;26382:182;:::o;26570:175::-;26710:27;26706:1;26698:6;26694:14;26687:51;26570:175;:::o;26751:122::-;26824:24;26842:5;26824:24;:::i;:::-;26817:5;26814:35;26804:63;;26863:1;26860;26853:12;26804:63;26751:122;:::o;26879:116::-;26949:21;26964:5;26949:21;:::i;:::-;26942:5;26939:32;26929:60;;26985:1;26982;26975:12;26929:60;26879:116;:::o;27001:120::-;27073:23;27090:5;27073:23;:::i;:::-;27066:5;27063:34;27053:62;;27111:1;27108;27101:12;27053:62;27001:120;:::o;27127:122::-;27200:24;27218:5;27200:24;:::i;:::-;27193:5;27190:35;27180:63;;27239:1;27236;27229:12;27180:63;27127:122;:::o

Swarm Source

ipfs://095269fa3e5634bd54acd365b14874786fdc42f9a80b583647d4cca78284a3db
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.