ETH Price: $3,088.65 (+0.91%)
Gas: 3 Gwei

Token

Pudgy Azurbala (Pudgy Azurbala)
 

Overview

Max Total Supply

4,422 Pudgy Azurbala

Holders

1,708

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
oluwabukola.eth
Balance
2 Pudgy Azurbala
0x1664eafc12cf3b2991fee868460a4de72ffe5816
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PudgyAzurbala

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
File 1 of 6 : PudgyAzurbala.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 PudgyAzurbala is ERC721A, Ownable, ReentrancyGuard {

    constructor() ERC721A("Pudgy Azurbala", "Pudgy Azurbala"){}

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

    function mint(uint256 qty) external payable
    {
        require(Minting , "Pudgy Azurbala Minting Close !");
        require(qty <= maxPerTx, "Pudgy Azurbala Max Per Tx !");
        require(totalSupply() + qty <= maxSupply,"Pudgy Azurbala 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,"Pudgy Azurbala Insufficient Funds !");
            minted[msg.sender] += qty;
           _safeMint(msg.sender, qty);
        }
        else
        {
           require(msg.value >= qty * price,"Pudgy Azurbala 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 withdraw() public onlyOwner {
        payable(msg.sender).transfer(payable(address(this)).balance);
    }

    bool public Minting  = false;
    uint256[] public freeMintArray = [3,2,1];
    uint256[] public supplyMintArray = [2222,4444,6666];
    uint256 public price = 2200000000000000;
    string public baseURI;  
    uint256 public maxPerTx = 22;  
    uint256 public maxSupply = 8888;
    mapping (address => uint256) public minted;
}

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":"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":[{"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"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506040518060600160405280600360ff168152602001600260ff168152602001600160ff16815250600b9060036200005892919062000278565b5060405180606001604052806108ae61ffff16815260200161115c61ffff168152602001611a0a61ffff16815250600c90600362000098929190620002cf565b506607d0e36a818000600d556016600f556122b8601055348015620000bc57600080fd5b506040518060400160405280600e81526020017f507564677920417a757262616c610000000000000000000000000000000000008152506040518060400160405280600e81526020017f507564677920417a757262616c6100000000000000000000000000000000000081525081600290805190602001906200014192919062000327565b5080600390805190602001906200015a92919062000327565b506200016b620001a160201b60201c565b60008190555050506200019362000187620001aa60201b60201c565b620001b260201b60201c565b60016009819055506200043c565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620002bc579160200282015b82811115620002bb578251829060ff1690559160200191906001019062000299565b5b509050620002cb9190620003b8565b5090565b82805482825590600052602060002090810192821562000314579160200282015b8281111562000313578251829061ffff16905591602001919060010190620002f0565b5b509050620003239190620003b8565b5090565b8280546200033590620003d7565b90600052602060002090601f016020900481019282620003595760008555620003a5565b82601f106200037457805160ff1916838001178555620003a5565b82800160010185558215620003a5579182015b82811115620003a457825182559160200191906001019062000387565b5b509050620003b49190620003b8565b5090565b5b80821115620003d3576000816000905550600101620003b9565b5090565b60006002820490506001821680620003f057607f821691505b602082108114156200040757620004066200040d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61331f806200044c6000396000f3fe6080604052600436106102255760003560e01c8063805dcae511610123578063a22cb465116100ab578063dc33e6811161006f578063dc33e681146107ae578063e63b211f146107eb578063e985e9c514610814578063f2fde38b14610851578063f968adbe1461087a57610225565b8063a22cb465146106ea578063ac915c0614610713578063b88d4fde1461072a578063c87b56dd14610746578063d5abeb011461078357610225565b80638e7d556e116100f25780638e7d556e1461061257806391b7f5ed1461064f57806395d89b4114610678578063a035b1fe146106a3578063a0712d68146106ce57610225565b8063805dcae51461056a57806380c90d30146105935780638171609b146105be5780638da5cb5b146105e757610225565b80633ccfd60b116101b15780636c0360eb116101755780636c0360eb146104995780636f8b44b0146104c457806370a08231146104ed578063715018a61461052a5780637eb63c661461054157610225565b80633ccfd60b146103d757806342842e0e146103ee57806355f804b31461040a5780636352211e14610433578063672434821461047057610225565b8063095ea7b3116101f8578063095ea7b31461030c57806315da2ec91461032857806318160ddd146103535780631e7269c51461037e57806323b872dd146103bb57610225565b806301ffc9a71461022a578063040755cb1461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906128e8565b6108a5565b60405161025e9190612be5565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061298b565b610937565b60405161029b9190612ce2565b60405180910390f35b3480156102b057600080fd5b506102b961095b565b6040516102c69190612c00565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061298b565b6109ed565b6040516103039190612b7e565b60405180910390f35b610326600480360381019061032191906127e7565b610a6c565b005b34801561033457600080fd5b5061033d610bb0565b60405161034a9190612ce2565b60405180910390f35b34801561035f57600080fd5b50610368610cb9565b6040516103759190612ce2565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612664565b610cd0565b6040516103b29190612ce2565b60405180910390f35b6103d560048036038101906103d091906126d1565b610ce8565b005b3480156103e357600080fd5b506103ec61100d565b005b610408600480360381019061040391906126d1565b611075565b005b34801561041657600080fd5b50610431600480360381019061042c9190612942565b611095565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061298b565b6110b7565b6040516104679190612b7e565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612827565b6110c9565b005b3480156104a557600080fd5b506104ae611133565b6040516104bb9190612c00565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e6919061298b565b6111c1565b005b3480156104f957600080fd5b50610514600480360381019061050f9190612664565b6111d3565b6040516105219190612ce2565b60405180910390f35b34801561053657600080fd5b5061053f61128c565b005b34801561054d57600080fd5b506105686004803603810190610563919061289f565b6112a0565b005b34801561057657600080fd5b50610591600480360381019061058c919061298b565b6112c2565b005b34801561059f57600080fd5b506105a86112d4565b6040516105b59190612be5565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e0919061298b565b6112e7565b005b3480156105f357600080fd5b506105fc6112fc565b6040516106099190612b7e565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061298b565b611326565b6040516106469190612ce2565b60405180910390f35b34801561065b57600080fd5b506106766004803603810190610671919061298b565b61134a565b005b34801561068457600080fd5b5061068d61135c565b60405161069a9190612c00565b60405180910390f35b3480156106af57600080fd5b506106b86113ee565b6040516106c59190612ce2565b60405180910390f35b6106e860048036038101906106e3919061298b565b6113f4565b005b3480156106f657600080fd5b50610711600480360381019061070c91906127a7565b6114eb565b005b34801561071f57600080fd5b506107286115f6565b005b610744600480360381019061073f9190612724565b61162a565b005b34801561075257600080fd5b5061076d6004803603810190610768919061298b565b61169d565b60405161077a9190612c00565b60405180910390f35b34801561078f57600080fd5b5061079861173c565b6040516107a59190612ce2565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190612664565b611742565b6040516107e29190612ce2565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d919061289f565b611754565b005b34801561082057600080fd5b5061083b60048036038101906108369190612691565b611776565b6040516108489190612be5565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190612664565b61180a565b005b34801561088657600080fd5b5061088f61188e565b60405161089c9190612ce2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b818154811061094757600080fd5b906000526020600020016000915090505481565b60606002805461096a90612fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461099690612fb9565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b60006109f882611894565b610a2e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a77826110b7565b90508073ffffffffffffffffffffffffffffffffffffffff16610a986118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610afb57610ac481610abf6118f3565b611776565b610afa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600c600081548110610bc757610bc66130c3565b5b9060005260206000200154610bda610cb9565b1015610c0757600b600081548110610bf557610bf46130c3565b5b90600052602060002001549050610cb6565b600c600181548110610c1c57610c1b6130c3565b5b9060005260206000200154610c2f610cb9565b1015610c5c57600b600181548110610c4a57610c496130c3565b5b90600052602060002001549050610cb6565b600c600281548110610c7157610c706130c3565b5b9060005260206000200154610c84610cb9565b1015610cb157600b600281548110610c9f57610c9e6130c3565b5b90600052602060002001549050610cb6565b600090505b90565b6000610cc36118fb565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610cf382611904565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d66846119d2565b91509150610d7c8187610d776118f3565b6119f9565b610dc857610d9186610d8c6118f3565b611776565b610dc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e3c8686866001611a3d565b8015610e4757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1585610ef1888887611a43565b7c020000000000000000000000000000000000000000000000000000000017611a6b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f9d576000600185019050600060046000838152602001908152602001600020541415610f9b576000548114610f9a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110058686866001611a96565b505050505050565b611015611a9c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611072573d6000803e3d6000fd5b50565b6110908383836040518060200160405280600081525061162a565b505050565b61109d611a9c565b80600e90805190602001906110b39291906122ef565b5050565b60006110c282611904565b9050919050565b6110d1611a9c565b60005b825181101561112e5761111b8382815181106110f3576110f26130c3565b5b602002602001015183838151811061110e5761110d6130c3565b5b6020026020010151611b1a565b80806111269061301c565b9150506110d4565b505050565b600e805461114090612fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461116c90612fb9565b80156111b95780601f1061118e576101008083540402835291602001916111b9565b820191906000526020600020905b81548152906001019060200180831161119c57829003601f168201915b505050505081565b6111c9611a9c565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611294611a9c565b61129e6000611b38565b565b6112a8611a9c565b80600c90805190602001906112be929190612375565b5050565b6112ca611a9c565b80600f8190555050565b600a60009054906101000a900460ff1681565b6112ef611a9c565b6112f93382611b1a565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c818154811061133657600080fd5b906000526020600020016000915090505481565b611352611a9c565b80600d8190555050565b60606003805461136b90612fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461139790612fb9565b80156113e45780601f106113b9576101008083540402835291602001916113e4565b820191906000526020600020905b8154815290600101906020018083116113c757829003601f168201915b5050505050905090565b600d5481565b600a60009054906101000a900460ff16611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612c62565b60405180910390fd5b600f54811115611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90612ca2565b60405180910390fd5b60105481611494610cb9565b61149e9190612e1f565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612c42565b60405180910390fd5b6114e881611bfe565b50565b80600760006114f86118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a56118f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ea9190612be5565b60405180910390a35050565b6115fe611a9c565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611635848484610ce8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116975761166084848484611dd2565b611696576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116a882611894565b6116de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116e8611f32565b90506000815114156117095760405180602001604052806000815250611734565b8061171384611fc4565b604051602001611724929190612b5a565b6040516020818303038152906040525b915050919050565b60105481565b600061174d8261201d565b9050919050565b61175c611a9c565b80600b9080519060200190611772929190612375565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611812611a9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990612c22565b60405180910390fd5b61188b81611b38565b50565b600f5481565b60008161189f6118fb565b111580156118ae575060005482105b80156118ec575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119136118fb565b1161199b5760005481101561199a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611998575b600081141561198e576004600083600190039350838152602001908152602001600020549050611963565b80925050506119cd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a5a868684612074565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aa461207d565b73ffffffffffffffffffffffffffffffffffffffff16611ac26112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90612c82565b60405180910390fd5b565b611b34828260405180602001604052806000815250612085565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611c08610bb0565b905080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611d1d5780821015611c5d578091505b600d548183611c6c9190612ecf565b611c769190612e75565b341015611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90612cc2565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d079190612e1f565b92505081905550611d183383611b1a565b611dce565b600d5482611d2b9190612e75565b341015611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490612cc2565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dbc9190612e1f565b92505081905550611dcd3383611b1a565b5b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611df86118f3565b8786866040518563ffffffff1660e01b8152600401611e1a9493929190612b99565b602060405180830381600087803b158015611e3457600080fd5b505af1925050508015611e6557506040513d601f19601f82011682018060405250810190611e629190612915565b60015b611edf573d8060008114611e95576040519150601f19603f3d011682016040523d82523d6000602084013e611e9a565b606091505b50600081511415611ed7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611f4190612fb9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6d90612fb9565b8015611fba5780601f10611f8f57610100808354040283529160200191611fba565b820191906000526020600020905b815481529060010190602001808311611f9d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561200857600184039350600a81066030018453600a810490508061200357612008565b611fdd565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b61208f8383612122565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211d57600080549050600083820390505b6120cf6000868380600101945086611dd2565b612105576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120bc57816000541461211a57600080fd5b50505b505050565b6000805490506000821415612163576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121706000848385611a3d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121e7836121d86000866000611a43565b6121e1856122df565b17611a6b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461228857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061224d565b5060008214156122c4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122da6000848385611a96565b505050565b60006001821460e11b9050919050565b8280546122fb90612fb9565b90600052602060002090601f01602090048101928261231d5760008555612364565b82601f1061233657805160ff1916838001178555612364565b82800160010185558215612364579182015b82811115612363578251825591602001919060010190612348565b5b50905061237191906123c2565b5090565b8280548282559060005260206000209081019282156123b1579160200282015b828111156123b0578251825591602001919060010190612395565b5b5090506123be91906123c2565b5090565b5b808211156123db5760008160009055506001016123c3565b5090565b60006123f26123ed84612d22565b612cfd565b9050808382526020820190508285602086028201111561241557612414613126565b5b60005b85811015612445578161242b8882612543565b845260208401935060208301925050600181019050612418565b5050509392505050565b600061246261245d84612d4e565b612cfd565b9050808382526020820190508285602086028201111561248557612484613126565b5b60005b858110156124b5578161249b888261264f565b845260208401935060208301925050600181019050612488565b5050509392505050565b60006124d26124cd84612d7a565b612cfd565b9050828152602081018484840111156124ee576124ed61312b565b5b6124f9848285612f77565b509392505050565b600061251461250f84612dab565b612cfd565b9050828152602081018484840111156125305761252f61312b565b5b61253b848285612f77565b509392505050565b6000813590506125528161328d565b92915050565b600082601f83011261256d5761256c613121565b5b813561257d8482602086016123df565b91505092915050565b600082601f83011261259b5761259a613121565b5b81356125ab84826020860161244f565b91505092915050565b6000813590506125c3816132a4565b92915050565b6000813590506125d8816132bb565b92915050565b6000815190506125ed816132bb565b92915050565b600082601f83011261260857612607613121565b5b81356126188482602086016124bf565b91505092915050565b600082601f83011261263657612635613121565b5b8135612646848260208601612501565b91505092915050565b60008135905061265e816132d2565b92915050565b60006020828403121561267a57612679613135565b5b600061268884828501612543565b91505092915050565b600080604083850312156126a8576126a7613135565b5b60006126b685828601612543565b92505060206126c785828601612543565b9150509250929050565b6000806000606084860312156126ea576126e9613135565b5b60006126f886828701612543565b935050602061270986828701612543565b925050604061271a8682870161264f565b9150509250925092565b6000806000806080858703121561273e5761273d613135565b5b600061274c87828801612543565b945050602061275d87828801612543565b935050604061276e8782880161264f565b925050606085013567ffffffffffffffff81111561278f5761278e613130565b5b61279b878288016125f3565b91505092959194509250565b600080604083850312156127be576127bd613135565b5b60006127cc85828601612543565b92505060206127dd858286016125b4565b9150509250929050565b600080604083850312156127fe576127fd613135565b5b600061280c85828601612543565b925050602061281d8582860161264f565b9150509250929050565b6000806040838503121561283e5761283d613135565b5b600083013567ffffffffffffffff81111561285c5761285b613130565b5b61286885828601612558565b925050602083013567ffffffffffffffff81111561288957612888613130565b5b61289585828601612586565b9150509250929050565b6000602082840312156128b5576128b4613135565b5b600082013567ffffffffffffffff8111156128d3576128d2613130565b5b6128df84828501612586565b91505092915050565b6000602082840312156128fe576128fd613135565b5b600061290c848285016125c9565b91505092915050565b60006020828403121561292b5761292a613135565b5b6000612939848285016125de565b91505092915050565b60006020828403121561295857612957613135565b5b600082013567ffffffffffffffff81111561297657612975613130565b5b61298284828501612621565b91505092915050565b6000602082840312156129a1576129a0613135565b5b60006129af8482850161264f565b91505092915050565b6129c181612f03565b82525050565b6129d081612f15565b82525050565b60006129e182612ddc565b6129eb8185612df2565b93506129fb818560208601612f86565b612a048161313a565b840191505092915050565b6000612a1a82612de7565b612a248185612e03565b9350612a34818560208601612f86565b612a3d8161313a565b840191505092915050565b6000612a5382612de7565b612a5d8185612e14565b9350612a6d818560208601612f86565b80840191505092915050565b6000612a86602683612e03565b9150612a918261314b565b604082019050919050565b6000612aa9601883612e03565b9150612ab48261319a565b602082019050919050565b6000612acc601e83612e03565b9150612ad7826131c3565b602082019050919050565b6000612aef602083612e03565b9150612afa826131ec565b602082019050919050565b6000612b12601b83612e03565b9150612b1d82613215565b602082019050919050565b6000612b35602383612e03565b9150612b408261323e565b604082019050919050565b612b5481612f6d565b82525050565b6000612b668285612a48565b9150612b728284612a48565b91508190509392505050565b6000602082019050612b9360008301846129b8565b92915050565b6000608082019050612bae60008301876129b8565b612bbb60208301866129b8565b612bc86040830185612b4b565b8181036060830152612bda81846129d6565b905095945050505050565b6000602082019050612bfa60008301846129c7565b92915050565b60006020820190508181036000830152612c1a8184612a0f565b905092915050565b60006020820190508181036000830152612c3b81612a79565b9050919050565b60006020820190508181036000830152612c5b81612a9c565b9050919050565b60006020820190508181036000830152612c7b81612abf565b9050919050565b60006020820190508181036000830152612c9b81612ae2565b9050919050565b60006020820190508181036000830152612cbb81612b05565b9050919050565b60006020820190508181036000830152612cdb81612b28565b9050919050565b6000602082019050612cf76000830184612b4b565b92915050565b6000612d07612d18565b9050612d138282612feb565b919050565b6000604051905090565b600067ffffffffffffffff821115612d3d57612d3c6130f2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612d6957612d686130f2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612d9557612d946130f2565b5b612d9e8261313a565b9050602081019050919050565b600067ffffffffffffffff821115612dc657612dc56130f2565b5b612dcf8261313a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e2a82612f6d565b9150612e3583612f6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e6a57612e69613065565b5b828201905092915050565b6000612e8082612f6d565b9150612e8b83612f6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ec457612ec3613065565b5b828202905092915050565b6000612eda82612f6d565b9150612ee583612f6d565b925082821015612ef857612ef7613065565b5b828203905092915050565b6000612f0e82612f4d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fa4578082015181840152602081019050612f89565b83811115612fb3576000848401525b50505050565b60006002820490506001821680612fd157607f821691505b60208210811415612fe557612fe4613094565b5b50919050565b612ff48261313a565b810181811067ffffffffffffffff82111715613013576130126130f2565b5b80604052505050565b600061302782612f6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561305a57613059613065565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507564677920417a757262616c6120536f6c646f757420210000000000000000600082015250565b7f507564677920417a757262616c61204d696e74696e6720436c6f736520210000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f507564677920417a757262616c61204d61782050657220547820210000000000600082015250565b7f507564677920417a757262616c6120496e73756666696369656e742046756e6460008201527f7320210000000000000000000000000000000000000000000000000000000000602082015250565b61329681612f03565b81146132a157600080fd5b50565b6132ad81612f15565b81146132b857600080fd5b50565b6132c481612f21565b81146132cf57600080fd5b50565b6132db81612f6d565b81146132e657600080fd5b5056fea264697066735822122084b2a3b7fb18244035da91be4dca940c43f91b49105e613975620962846478bd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063805dcae511610123578063a22cb465116100ab578063dc33e6811161006f578063dc33e681146107ae578063e63b211f146107eb578063e985e9c514610814578063f2fde38b14610851578063f968adbe1461087a57610225565b8063a22cb465146106ea578063ac915c0614610713578063b88d4fde1461072a578063c87b56dd14610746578063d5abeb011461078357610225565b80638e7d556e116100f25780638e7d556e1461061257806391b7f5ed1461064f57806395d89b4114610678578063a035b1fe146106a3578063a0712d68146106ce57610225565b8063805dcae51461056a57806380c90d30146105935780638171609b146105be5780638da5cb5b146105e757610225565b80633ccfd60b116101b15780636c0360eb116101755780636c0360eb146104995780636f8b44b0146104c457806370a08231146104ed578063715018a61461052a5780637eb63c661461054157610225565b80633ccfd60b146103d757806342842e0e146103ee57806355f804b31461040a5780636352211e14610433578063672434821461047057610225565b8063095ea7b3116101f8578063095ea7b31461030c57806315da2ec91461032857806318160ddd146103535780631e7269c51461037e57806323b872dd146103bb57610225565b806301ffc9a71461022a578063040755cb1461026757806306fdde03146102a4578063081812fc146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906128e8565b6108a5565b60405161025e9190612be5565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061298b565b610937565b60405161029b9190612ce2565b60405180910390f35b3480156102b057600080fd5b506102b961095b565b6040516102c69190612c00565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f1919061298b565b6109ed565b6040516103039190612b7e565b60405180910390f35b610326600480360381019061032191906127e7565b610a6c565b005b34801561033457600080fd5b5061033d610bb0565b60405161034a9190612ce2565b60405180910390f35b34801561035f57600080fd5b50610368610cb9565b6040516103759190612ce2565b60405180910390f35b34801561038a57600080fd5b506103a560048036038101906103a09190612664565b610cd0565b6040516103b29190612ce2565b60405180910390f35b6103d560048036038101906103d091906126d1565b610ce8565b005b3480156103e357600080fd5b506103ec61100d565b005b610408600480360381019061040391906126d1565b611075565b005b34801561041657600080fd5b50610431600480360381019061042c9190612942565b611095565b005b34801561043f57600080fd5b5061045a6004803603810190610455919061298b565b6110b7565b6040516104679190612b7e565b60405180910390f35b34801561047c57600080fd5b5061049760048036038101906104929190612827565b6110c9565b005b3480156104a557600080fd5b506104ae611133565b6040516104bb9190612c00565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e6919061298b565b6111c1565b005b3480156104f957600080fd5b50610514600480360381019061050f9190612664565b6111d3565b6040516105219190612ce2565b60405180910390f35b34801561053657600080fd5b5061053f61128c565b005b34801561054d57600080fd5b506105686004803603810190610563919061289f565b6112a0565b005b34801561057657600080fd5b50610591600480360381019061058c919061298b565b6112c2565b005b34801561059f57600080fd5b506105a86112d4565b6040516105b59190612be5565b60405180910390f35b3480156105ca57600080fd5b506105e560048036038101906105e0919061298b565b6112e7565b005b3480156105f357600080fd5b506105fc6112fc565b6040516106099190612b7e565b60405180910390f35b34801561061e57600080fd5b506106396004803603810190610634919061298b565b611326565b6040516106469190612ce2565b60405180910390f35b34801561065b57600080fd5b506106766004803603810190610671919061298b565b61134a565b005b34801561068457600080fd5b5061068d61135c565b60405161069a9190612c00565b60405180910390f35b3480156106af57600080fd5b506106b86113ee565b6040516106c59190612ce2565b60405180910390f35b6106e860048036038101906106e3919061298b565b6113f4565b005b3480156106f657600080fd5b50610711600480360381019061070c91906127a7565b6114eb565b005b34801561071f57600080fd5b506107286115f6565b005b610744600480360381019061073f9190612724565b61162a565b005b34801561075257600080fd5b5061076d6004803603810190610768919061298b565b61169d565b60405161077a9190612c00565b60405180910390f35b34801561078f57600080fd5b5061079861173c565b6040516107a59190612ce2565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190612664565b611742565b6040516107e29190612ce2565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d919061289f565b611754565b005b34801561082057600080fd5b5061083b60048036038101906108369190612691565b611776565b6040516108489190612be5565b60405180910390f35b34801561085d57600080fd5b5061087860048036038101906108739190612664565b61180a565b005b34801561088657600080fd5b5061088f61188e565b60405161089c9190612ce2565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090057506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109305750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b600b818154811061094757600080fd5b906000526020600020016000915090505481565b60606002805461096a90612fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461099690612fb9565b80156109e35780601f106109b8576101008083540402835291602001916109e3565b820191906000526020600020905b8154815290600101906020018083116109c657829003601f168201915b5050505050905090565b60006109f882611894565b610a2e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a77826110b7565b90508073ffffffffffffffffffffffffffffffffffffffff16610a986118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610afb57610ac481610abf6118f3565b611776565b610afa576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000600c600081548110610bc757610bc66130c3565b5b9060005260206000200154610bda610cb9565b1015610c0757600b600081548110610bf557610bf46130c3565b5b90600052602060002001549050610cb6565b600c600181548110610c1c57610c1b6130c3565b5b9060005260206000200154610c2f610cb9565b1015610c5c57600b600181548110610c4a57610c496130c3565b5b90600052602060002001549050610cb6565b600c600281548110610c7157610c706130c3565b5b9060005260206000200154610c84610cb9565b1015610cb157600b600281548110610c9f57610c9e6130c3565b5b90600052602060002001549050610cb6565b600090505b90565b6000610cc36118fb565b6001546000540303905090565b60116020528060005260406000206000915090505481565b6000610cf382611904565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d66846119d2565b91509150610d7c8187610d776118f3565b6119f9565b610dc857610d9186610d8c6118f3565b611776565b610dc7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e2f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e3c8686866001611a3d565b8015610e4757600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f1585610ef1888887611a43565b7c020000000000000000000000000000000000000000000000000000000017611a6b565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610f9d576000600185019050600060046000838152602001908152602001600020541415610f9b576000548114610f9a578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46110058686866001611a96565b505050505050565b611015611a9c565b3373ffffffffffffffffffffffffffffffffffffffff166108fc3073ffffffffffffffffffffffffffffffffffffffff16319081150290604051600060405180830381858888f19350505050158015611072573d6000803e3d6000fd5b50565b6110908383836040518060200160405280600081525061162a565b505050565b61109d611a9c565b80600e90805190602001906110b39291906122ef565b5050565b60006110c282611904565b9050919050565b6110d1611a9c565b60005b825181101561112e5761111b8382815181106110f3576110f26130c3565b5b602002602001015183838151811061110e5761110d6130c3565b5b6020026020010151611b1a565b80806111269061301c565b9150506110d4565b505050565b600e805461114090612fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461116c90612fb9565b80156111b95780601f1061118e576101008083540402835291602001916111b9565b820191906000526020600020905b81548152906001019060200180831161119c57829003601f168201915b505050505081565b6111c9611a9c565b8060108190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123b576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611294611a9c565b61129e6000611b38565b565b6112a8611a9c565b80600c90805190602001906112be929190612375565b5050565b6112ca611a9c565b80600f8190555050565b600a60009054906101000a900460ff1681565b6112ef611a9c565b6112f93382611b1a565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c818154811061133657600080fd5b906000526020600020016000915090505481565b611352611a9c565b80600d8190555050565b60606003805461136b90612fb9565b80601f016020809104026020016040519081016040528092919081815260200182805461139790612fb9565b80156113e45780601f106113b9576101008083540402835291602001916113e4565b820191906000526020600020905b8154815290600101906020018083116113c757829003601f168201915b5050505050905090565b600d5481565b600a60009054906101000a900460ff16611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90612c62565b60405180910390fd5b600f54811115611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90612ca2565b60405180910390fd5b60105481611494610cb9565b61149e9190612e1f565b11156114df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d690612c42565b60405180910390fd5b6114e881611bfe565b50565b80600760006114f86118f3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a56118f3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115ea9190612be5565b60405180910390a35050565b6115fe611a9c565b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611635848484610ce8565b60008373ffffffffffffffffffffffffffffffffffffffff163b146116975761166084848484611dd2565b611696576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606116a882611894565b6116de576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006116e8611f32565b90506000815114156117095760405180602001604052806000815250611734565b8061171384611fc4565b604051602001611724929190612b5a565b6040516020818303038152906040525b915050919050565b60105481565b600061174d8261201d565b9050919050565b61175c611a9c565b80600b9080519060200190611772929190612375565b5050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611812611a9c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990612c22565b60405180910390fd5b61188b81611b38565b50565b600f5481565b60008161189f6118fb565b111580156118ae575060005482105b80156118ec575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b600080829050806119136118fb565b1161199b5760005481101561199a5760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611998575b600081141561198e576004600083600190039350838152602001908152602001600020549050611963565b80925050506119cd565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a5a868684612074565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611aa461207d565b73ffffffffffffffffffffffffffffffffffffffff16611ac26112fc565b73ffffffffffffffffffffffffffffffffffffffff1614611b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0f90612c82565b60405180910390fd5b565b611b34828260405180602001604052806000815250612085565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611c08610bb0565b905080601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611d1d5780821015611c5d578091505b600d548183611c6c9190612ecf565b611c769190612e75565b341015611cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611caf90612cc2565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d079190612e1f565b92505081905550611d183383611b1a565b611dce565b600d5482611d2b9190612e75565b341015611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490612cc2565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611dbc9190612e1f565b92505081905550611dcd3383611b1a565b5b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611df86118f3565b8786866040518563ffffffff1660e01b8152600401611e1a9493929190612b99565b602060405180830381600087803b158015611e3457600080fd5b505af1925050508015611e6557506040513d601f19601f82011682018060405250810190611e629190612915565b60015b611edf573d8060008114611e95576040519150601f19603f3d011682016040523d82523d6000602084013e611e9a565b606091505b50600081511415611ed7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054611f4190612fb9565b80601f0160208091040260200160405190810160405280929190818152602001828054611f6d90612fb9565b8015611fba5780601f10611f8f57610100808354040283529160200191611fba565b820191906000526020600020905b815481529060010190602001808311611f9d57829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561200857600184039350600a81066030018453600a810490508061200357612008565b611fdd565b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b600033905090565b61208f8383612122565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461211d57600080549050600083820390505b6120cf6000868380600101945086611dd2565b612105576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106120bc57816000541461211a57600080fd5b50505b505050565b6000805490506000821415612163576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6121706000848385611a3d565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506121e7836121d86000866000611a43565b6121e1856122df565b17611a6b565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461228857808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a460018101905061224d565b5060008214156122c4576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506122da6000848385611a96565b505050565b60006001821460e11b9050919050565b8280546122fb90612fb9565b90600052602060002090601f01602090048101928261231d5760008555612364565b82601f1061233657805160ff1916838001178555612364565b82800160010185558215612364579182015b82811115612363578251825591602001919060010190612348565b5b50905061237191906123c2565b5090565b8280548282559060005260206000209081019282156123b1579160200282015b828111156123b0578251825591602001919060010190612395565b5b5090506123be91906123c2565b5090565b5b808211156123db5760008160009055506001016123c3565b5090565b60006123f26123ed84612d22565b612cfd565b9050808382526020820190508285602086028201111561241557612414613126565b5b60005b85811015612445578161242b8882612543565b845260208401935060208301925050600181019050612418565b5050509392505050565b600061246261245d84612d4e565b612cfd565b9050808382526020820190508285602086028201111561248557612484613126565b5b60005b858110156124b5578161249b888261264f565b845260208401935060208301925050600181019050612488565b5050509392505050565b60006124d26124cd84612d7a565b612cfd565b9050828152602081018484840111156124ee576124ed61312b565b5b6124f9848285612f77565b509392505050565b600061251461250f84612dab565b612cfd565b9050828152602081018484840111156125305761252f61312b565b5b61253b848285612f77565b509392505050565b6000813590506125528161328d565b92915050565b600082601f83011261256d5761256c613121565b5b813561257d8482602086016123df565b91505092915050565b600082601f83011261259b5761259a613121565b5b81356125ab84826020860161244f565b91505092915050565b6000813590506125c3816132a4565b92915050565b6000813590506125d8816132bb565b92915050565b6000815190506125ed816132bb565b92915050565b600082601f83011261260857612607613121565b5b81356126188482602086016124bf565b91505092915050565b600082601f83011261263657612635613121565b5b8135612646848260208601612501565b91505092915050565b60008135905061265e816132d2565b92915050565b60006020828403121561267a57612679613135565b5b600061268884828501612543565b91505092915050565b600080604083850312156126a8576126a7613135565b5b60006126b685828601612543565b92505060206126c785828601612543565b9150509250929050565b6000806000606084860312156126ea576126e9613135565b5b60006126f886828701612543565b935050602061270986828701612543565b925050604061271a8682870161264f565b9150509250925092565b6000806000806080858703121561273e5761273d613135565b5b600061274c87828801612543565b945050602061275d87828801612543565b935050604061276e8782880161264f565b925050606085013567ffffffffffffffff81111561278f5761278e613130565b5b61279b878288016125f3565b91505092959194509250565b600080604083850312156127be576127bd613135565b5b60006127cc85828601612543565b92505060206127dd858286016125b4565b9150509250929050565b600080604083850312156127fe576127fd613135565b5b600061280c85828601612543565b925050602061281d8582860161264f565b9150509250929050565b6000806040838503121561283e5761283d613135565b5b600083013567ffffffffffffffff81111561285c5761285b613130565b5b61286885828601612558565b925050602083013567ffffffffffffffff81111561288957612888613130565b5b61289585828601612586565b9150509250929050565b6000602082840312156128b5576128b4613135565b5b600082013567ffffffffffffffff8111156128d3576128d2613130565b5b6128df84828501612586565b91505092915050565b6000602082840312156128fe576128fd613135565b5b600061290c848285016125c9565b91505092915050565b60006020828403121561292b5761292a613135565b5b6000612939848285016125de565b91505092915050565b60006020828403121561295857612957613135565b5b600082013567ffffffffffffffff81111561297657612975613130565b5b61298284828501612621565b91505092915050565b6000602082840312156129a1576129a0613135565b5b60006129af8482850161264f565b91505092915050565b6129c181612f03565b82525050565b6129d081612f15565b82525050565b60006129e182612ddc565b6129eb8185612df2565b93506129fb818560208601612f86565b612a048161313a565b840191505092915050565b6000612a1a82612de7565b612a248185612e03565b9350612a34818560208601612f86565b612a3d8161313a565b840191505092915050565b6000612a5382612de7565b612a5d8185612e14565b9350612a6d818560208601612f86565b80840191505092915050565b6000612a86602683612e03565b9150612a918261314b565b604082019050919050565b6000612aa9601883612e03565b9150612ab48261319a565b602082019050919050565b6000612acc601e83612e03565b9150612ad7826131c3565b602082019050919050565b6000612aef602083612e03565b9150612afa826131ec565b602082019050919050565b6000612b12601b83612e03565b9150612b1d82613215565b602082019050919050565b6000612b35602383612e03565b9150612b408261323e565b604082019050919050565b612b5481612f6d565b82525050565b6000612b668285612a48565b9150612b728284612a48565b91508190509392505050565b6000602082019050612b9360008301846129b8565b92915050565b6000608082019050612bae60008301876129b8565b612bbb60208301866129b8565b612bc86040830185612b4b565b8181036060830152612bda81846129d6565b905095945050505050565b6000602082019050612bfa60008301846129c7565b92915050565b60006020820190508181036000830152612c1a8184612a0f565b905092915050565b60006020820190508181036000830152612c3b81612a79565b9050919050565b60006020820190508181036000830152612c5b81612a9c565b9050919050565b60006020820190508181036000830152612c7b81612abf565b9050919050565b60006020820190508181036000830152612c9b81612ae2565b9050919050565b60006020820190508181036000830152612cbb81612b05565b9050919050565b60006020820190508181036000830152612cdb81612b28565b9050919050565b6000602082019050612cf76000830184612b4b565b92915050565b6000612d07612d18565b9050612d138282612feb565b919050565b6000604051905090565b600067ffffffffffffffff821115612d3d57612d3c6130f2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612d6957612d686130f2565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612d9557612d946130f2565b5b612d9e8261313a565b9050602081019050919050565b600067ffffffffffffffff821115612dc657612dc56130f2565b5b612dcf8261313a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612e2a82612f6d565b9150612e3583612f6d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e6a57612e69613065565b5b828201905092915050565b6000612e8082612f6d565b9150612e8b83612f6d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612ec457612ec3613065565b5b828202905092915050565b6000612eda82612f6d565b9150612ee583612f6d565b925082821015612ef857612ef7613065565b5b828203905092915050565b6000612f0e82612f4d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612fa4578082015181840152602081019050612f89565b83811115612fb3576000848401525b50505050565b60006002820490506001821680612fd157607f821691505b60208210811415612fe557612fe4613094565b5b50919050565b612ff48261313a565b810181811067ffffffffffffffff82111715613013576130126130f2565b5b80604052505050565b600061302782612f6d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561305a57613059613065565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507564677920417a757262616c6120536f6c646f757420210000000000000000600082015250565b7f507564677920417a757262616c61204d696e74696e6720436c6f736520210000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f507564677920417a757262616c61204d61782050657220547820210000000000600082015250565b7f507564677920417a757262616c6120496e73756666696369656e742046756e6460008201527f7320210000000000000000000000000000000000000000000000000000000000602082015250565b61329681612f03565b81146132a157600080fd5b50565b6132ad81612f15565b81146132b857600080fd5b50565b6132c481612f21565b81146132cf57600080fd5b50565b6132db81612f6d565b81146132e657600080fd5b5056fea264697066735822122084b2a3b7fb18244035da91be4dca940c43f91b49105e613975620962846478bd64736f6c63430008070033

Deployed Bytecode Sourcemap

223:3435:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9155:630:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3356:40:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10039:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1358:458:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3612:42:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3197:116:3;;;;;;;;;;;;;:::i;:::-;;22758:187:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2501:100:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11391:150:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2061:220:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3507:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3091:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7045:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1831:101:0;;;;;;;;;;;;;:::i;:::-;;2809:135:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2703:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3321:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2289:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1201:85:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3403:51:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2609:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3461:39:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;468:289;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2403:86:3;;;;;;;;;;;;;:::i;:::-;;23526:396:4;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3574:31:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2956:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17282:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2081:198:0;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3537:28:3;;;;;;;;;;;;;:::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;3356: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;1358:458:3:-;1404:7;1443:15;1459:1;1443:18;;;;;;;;:::i;:::-;;;;;;;;;;1427:13;:11;:13::i;:::-;:34;1424:385;;;1494:13;1508:1;1494:16;;;;;;;;:::i;:::-;;;;;;;;;;1487:23;;;;1424:385;1557:15;1573:1;1557:18;;;;;;;;:::i;:::-;;;;;;;;;;1541:13;:11;:13::i;:::-;:34;1537:272;;;1608:13;1622:1;1608:16;;;;;;;;:::i;:::-;;;;;;;;;;1601:23;;;;1537:272;1671:15;1687:1;1671:18;;;;;;;;:::i;:::-;;;;;;;;;;1655:13;:11;:13::i;:::-;:34;1651:158;;;1722:13;1736:1;1722:16;;;;;;;;:::i;:::-;;;;;;;;;;1715:23;;;;1651:158;1796:1;1789:8;;1358:458;;:::o;5894:317:4:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;3612: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;3197:116:3:-;1094:13:0;:11;:13::i;:::-;3253:10:3::1;3245:28;;:60;3290:4;3274:30;;;3245:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;3197:116::o:0;22758:187:4:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;2501:100:3:-;1094:13:0;:11;:13::i;:::-;2585:8:3::1;2575:7;:18;;;;;;;;;;;;:::i;:::-;;2501:100:::0;:::o;11391:150:4:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;2061:220:3:-;1094:13:0;:11;:13::i;:::-;2167:9:3::1;2162:112;2186:13;:20;2182:1;:24;2162:112;;;2227:35;2237:13;2251:1;2237:16;;;;;;;;:::i;:::-;;;;;;;;2255:3;2259:1;2255:6;;;;;;;;:::i;:::-;;;;;;;;2227:9;:35::i;:::-;2208:3;;;;;:::i;:::-;;;;2162:112;;;;2061:220:::0;;:::o;3507:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3091:98::-;1094:13:0;:11;:13::i;:::-;3173:8:3::1;3161:9;:20;;;;3091: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;2809:135:3:-;1094:13:0;:11;:13::i;:::-;2920:16:3::1;2902:15;:34;;;;;;;;;;;;:::i;:::-;;2809:135:::0;:::o;2703:98::-;1094:13:0;:11;:13::i;:::-;2784:9:3::1;2773:8;:20;;;;2703:98:::0;:::o;3321:28::-;;;;;;;;;;;;;:::o;2289:106::-;1094:13:0;:11;:13::i;:::-;2361:26:3::1;2371:10;2383:3;2361:9;:26::i;:::-;2289:106:::0;:::o;1201:85:0:-;1247:7;1273:6;;;;;;;;;;;1266:13;;1201:85;:::o;3403:51:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;2609:86::-;1094:13:0;:11;:13::i;:::-;2681:6:3::1;2673:5;:14;;;;2609:86:::0;:::o;10208:102:4:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;3461:39:3:-;;;;:::o;468:289::-;536:7;;;;;;;;;;;528:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;605:8;;598:3;:15;;590:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;687:9;;680:3;664:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:32;;656:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;735:14;745:3;735:9;:14::i;:::-;468:289;:::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;2403:86:3:-;1094:13:0;:11;:13::i;:::-;2473:7:3::1;;;;;;;;;;;2472:8;2461:7;;:19;;;;;;;;;;;;;;;;;;2403: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;3574:31:3:-;;;;:::o;1824:113::-;1882:7;1909:20;1923:5;1909:13;:20::i;:::-;1902:27;;1824:113;;;:::o;2956:127::-;1094:13:0;:11;:13::i;:::-;3061:14:3::1;3045:13;:30;;;;;;;;;;;;:::i;:::-;;2956: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;3537:28:3:-;;;;:::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;359:101:3:-;424:7;451:1;444:8;;359: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;765:585:3:-;818:13;834:15;:13;:15::i;:::-;818:31;;884:8;863:6;:18;870:10;863:18;;;;;;;;;;;;;;;;:29;860:483;;;928:8;922:3;:14;919:33;;;944:8;938:14;;919:33;1006:5;;994:8;988:3;:14;;;;:::i;:::-;987:24;;;;:::i;:::-;974:9;:37;;966:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;1087:3;1065:6;:18;1072:10;1065:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;1104:26;1114:10;1126:3;1104:9;:26::i;:::-;860:483;;;1207:5;;1201:3;:11;;;;:::i;:::-;1188:9;:24;;1180:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;1288:3;1266:6;:18;1273:10;1266:18;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;1305:26;1315:10;1327:3;1305:9;:26::i;:::-;860:483;807:543;765:585;:::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;1945:108:3:-;2005:13;2038:7;2031:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1945: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:174::-;26003:26;25999:1;25991:6;25987:14;25980:50;25863:174;:::o;26043:180::-;26183:32;26179:1;26171:6;26167:14;26160:56;26043:180;:::o;26229:182::-;26369:34;26365:1;26357:6;26353:14;26346:58;26229:182;:::o;26417:177::-;26557:29;26553:1;26545:6;26541:14;26534:53;26417:177;:::o;26600:222::-;26740:34;26736:1;26728:6;26724:14;26717:58;26809:5;26804:2;26796:6;26792:15;26785:30;26600:222;:::o;26828:122::-;26901:24;26919:5;26901:24;:::i;:::-;26894:5;26891:35;26881:63;;26940:1;26937;26930:12;26881:63;26828:122;:::o;26956:116::-;27026:21;27041:5;27026:21;:::i;:::-;27019:5;27016:32;27006:60;;27062:1;27059;27052:12;27006:60;26956:116;:::o;27078:120::-;27150:23;27167:5;27150:23;:::i;:::-;27143:5;27140:34;27130:62;;27188:1;27185;27178:12;27130:62;27078:120;:::o;27204:122::-;27277:24;27295:5;27277:24;:::i;:::-;27270:5;27267:35;27257:63;;27316:1;27313;27306:12;27257:63;27204:122;:::o

Swarm Source

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